This is a discussion on SoapException (Pocket PC Emulator) - DOTNET ; Hi all, I have the following error message occuring... An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in System.Web.Services.dll Additional information: Server was unable to process request. --> Invalid object name 'dbo.CodeTable'. I get this when I am loading the application ...
Hi all,
I have the following error message occuring...
An unhandled exception of type
'System.Web.Services.Protocols.SoapException' occurred in
System.Web.Services.dll
Additional information: Server was unable to process request. -->
Invalid object name 'dbo.CodeTable'.
I get this when I am loading the application on the Pocket PC emulator.
dbo.CodeTable is a table within my SQL database. When this occurs it
points to the following code segment in my web service file
(reference.cs)
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/getQuerySet1",
RequestNamespace="http://tempuri.org/",
ResponseNamespace="http://tempuri.org/",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public System.Data.DataSet getQuerySet1(string query, string
title) {
object[] results = this.Invoke("getQuerySet1", new object[]
{
query,
title});
return ((System.Data.DataSet)(results[0]));
}
I really don't know what this means. I have gotten rid of all the
references to the CodeTable Table. So I am at a lost to what is
happening.
I hope someone can help me.
Thanks in Advance,
Dion.