sqlxml webservice HTTP status 404 Object Not Found

  • Thread starter Thread starter Roman S. Golubin
  • Start date Start date
R

Roman S. Golubin

Hi,

I install sqlxml 3.0 SP2. Then I create vDir "service" (with windows auth)
and configure the SOAP virtual name "vname". Then I generate a proxy with
wsdl.exe tool from http://localhost/service/vname?wsdl. I try to invoke the
stored procedure "qq" now and I get the Exception "The request failed with
HTTP status 404: Object Not Found."

Can anyone help me configure an xslxml or wsdl.exe proxy generator then I
stay happy?

Source code:

MyProxy proxy = new MyProxy();

proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;

int ret;

try
{
object[] o = proxy.qq();
}
catch(Exception e)
{
}


Thanks advance,
 
Back
Top