PDA

View Full Version : Domain Name 'megadittos.com' is not currently on Mail.v2.


zackis
03-15-2008, 06:32 AM
Does anyone know the source/solution to the following exception? I've included the calling c# code below the error:

EXCEPTION:
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> Domain Name 'megadittos.com' is not currently on Mail.v2.
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String methodName, Object[] parameters)
at Q1Technology.MegaDittos.mailApp.net.discountasp.ap i.CustomerApi.EmailForwardAdd(String key, String domainName, String userName, String[] forwardList) in C:\Documents and Settings\zjones\My Documents\Q1Technology\MegaDittos\Q1Technology.Meg aDittos.mailApp\Web References\net.discountasp.api\Reference.cs:line 994
at Q1Technology.MegaDittos.mailApp._Default.Page_Load (Object sender, EventArgs e) in C:\Documents and Settings\zjones\My Documents\Q1Technology\MegaDittos\Q1Technology.Meg aDittos.mailApp\Default.aspx.cs:line 26

CODE:


[quote]


protected void Page_Load(object sender, EventArgs e)
{
try
{
string[] astrTo = {"zack@q1technology.com"};
net.discountasp.api.CustomerApi x = new Q1Technology.MegaDittos.mailApp.net.discountasp.ap i.CustomerApi();
x.EmailForwardAdd("REMOVED FOR SECURITY", "megadittos.com", "Bill", astrTo);
}
catch (Exception ex)
{
Trace.Write(ex.ToString());
}
}</CODE>

bruce
03-16-2008, 01:52 AM
There are other set of methods for SmarterMail mail service. Please download the documentation, you should see all the methods.

Bruce

DiscountASP.NET
www.DiscountASP.NET (http://www.DiscountASP.NET)

ina
05-28-2008, 12:44 AM
Which documentation are you referring to? https://api.discountasp.net/1.0/customerapi.asmx ? /emoticons/confused.gif

Aristotle
05-28-2008, 04:05 AM
This one: http://community.discountasp.net/attach.aspx/74/cp_api_documentation.zip

Aristotle

DiscountASP.NET
www.DiscountASP.NET (http://www.DiscountASP.NET)