WSDL in .NET 2.0 and VS2005
-
Having problems connecting to a service which is supposed to by available. Can someone give some advice. Here is what I did: 1. Took existing "working" WSDL file from client and created .NET class using WSDL.exe 2. Within this new class [this.Url = "http://204.131.177.150:80/soap/authRpc" ]. CTRL-Click on this link brings up XML exception below - should I expect this? ================= Exception ============================= - - - SOAP-ENV:Server [ISS.0088.9112] An Exception was thrown in the server http://schemas.xmlsoap.org/soap/actor/next/ - - java.lang.NullPointerException ======================== END ================================== 3. Tried to use a function within this class but got a "The request failed with HTTP status 403: Service Error." message back from the request. Questions: A. Did I go through the process correctly? B. Could this be a simple permissions thing at the server? C. Is it an issue how the function was called? Format issues... D. How do you resolve HTTP error? Thanks
-
Having problems connecting to a service which is supposed to by available. Can someone give some advice. Here is what I did: 1. Took existing "working" WSDL file from client and created .NET class using WSDL.exe 2. Within this new class [this.Url = "http://204.131.177.150:80/soap/authRpc" ]. CTRL-Click on this link brings up XML exception below - should I expect this? ================= Exception ============================= - - - SOAP-ENV:Server [ISS.0088.9112] An Exception was thrown in the server http://schemas.xmlsoap.org/soap/actor/next/ - - java.lang.NullPointerException ======================== END ================================== 3. Tried to use a function within this class but got a "The request failed with HTTP status 403: Service Error." message back from the request. Questions: A. Did I go through the process correctly? B. Could this be a simple permissions thing at the server? C. Is it an issue how the function was called? Format issues... D. How do you resolve HTTP error? Thanks
If this is a .net web service there should be a asmx file. So if you know what the url is it should have a file with asmx. If you put that url in the add web service it should fine it. If it does not then I would guess it is either not a .net web service or it is not running. Hope that helps. Ben