Hello,
I am creating a website which calls a WebMethod in an .NET Webservice. To archieve this I use the JavaScript SOAPClient described here (with source code).
The method
SOAPClient._loadWsdl(url, method, parameters, async, callback)
tries to get the WSDL file from the webservice. But the wsdl var stays null.
I used a network sniffer to analyze the incoming and outgoing packets at the webservice pc. I saw that the request reaches the webservice and that the wsdl is being sent back to the client. But somehow it stays null in the javascript var.
the method
SOAPClient._onLoadWsdl = function(url, method, parameters, async, callback, req)
should store the wsdl in a var.
Anyone knows what the problem might be?