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>
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>