svcMailListAdmin
This web service handles all functions dealing with mailing lists.
The following operations are supported. For a formal definition, please review the Service Description.
-
AddDefaultSubscriberField
Adds a default subscriber field to the specified domain. -
AddDigestSubscriber
Adds a digest subscriber to the specified list. -
AddList
Adds a mailing list to the specified domain. -
AddSubscriber
Adds a subscriber to the specified list. -
AddSubscriber2
Adds subscribers for the given list. -
DeleteAllLists
Deletes all mailing lists that belong to the specified domain. -
DeleteDefaultSubscriberField
Deletes a subscriber field from the specified domain. -
DeleteList
Deletes a specific mailing list that belongs to a domain. -
GetDefaultSubscriberFields
Gets the default subscriber fields for the specified domain. -
GetDigestSubscriberList
Returns the digest subscribers for the given list. -
GetListCommandAddress
Gets the command list address for the specified domain. -
GetMailingListsByDomain
Returns all mailing lists for the specified domain. -
GetPosterKillList
Returns the kill list (blocked posters) the given list. -
GetPosterWhiteList
Returns the poster whitelist for the given list. -
GetRequestedListSettings
Gets specific settings for the specified list. -
GetSubscriberFields
Gets the subscriber fields for the specified user. -
GetSubscriberList
Returns the subscribers for the given list. -
RemoveDigestSubscriber
Removes a digest subscriber to the specified list. -
RemoveSubscriber
Removes a subscriber to the specified list. -
SetDigestSubscriberList
Sets the digest subscribers for the given list. * NOTE: This method has been deprecated. Please use SetDigestSubscriberList2 instead. -
SetDigestSubscriberList2
Sets the digest subscribers for the given list. -
SetListCommandAddress
Sets the command list address for the specified domain. -
SetPosterKillList
Sets the kill list (blocked posters) for the given list. -
SetPosterWhiteList
Sets the poster whitelist for the given list. -
SetRequestedListSettings
Sets specific settings for the specified list. -
SetSubscriberList
Sets the subscribers for the given list. *NOTE: This method has been deprecated. Please use SetSubscriberList2 instead. -
SetSubscriberList2
Sets the subscribers for the given list. -
UpdateDefaultSubscriberField
Updates a default subscriber field for the specified domain. -
UpdateSubscriberField
Updates the subscriber field for the specified subscriber.
This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.
Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services should use a more permanent namespace.
Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as part of the namespace. Although many XML Web service namespaces look like URLs, they need not point to actual resources on the Web. (XML Web service namespaces are URIs.)
For XML Web services creating using ASP.NET, the default namespace can be changed using the WebService attribute's Namespace property. The WebService attribute is an attribute applied to the class that contains the XML Web service methods. Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic
<WebService(Namespace:="http://microsoft.com/webservices/")> Public Class MyWebService
' implementation
End Class
C++
[WebService(Namespace="http://microsoft.com/webservices/")]
public ref class MyWebService {
// implementation
};
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
For more details on WSDL, see the WSDL Specification.
For more details on URIs, see RFC 2396.