How to Consume ASP.Net Webservice in Classic ASP?

lucievfedrrikts

New Member
I am not much familiar with Classic ASP.I am trying from long time to Consume ASP.Net Web service from Classic ASP. I referred lots of articles, and at end of story I understood this, Web Service can be consumed using below:\[code\]set sXml = Server.CreateObject("MSXML2.XMLHTTP")sXml.Open "GET", "http://ServerAddress/service.asmx/CallMethodName?param1="&sCode , falsesXml.Send\[/code\]But this one is giving me error saying that :\[quote\] Request format is unrecognized for URL unexpectedly ending in '/getMidwayStatus'<--This is my method Name.\[/quote\]How can I resolve this problem? Any Answer will be appropriate.
 
Top