I’ve got a site running on php and I need my form to post data to an ASP.Net web service. All I have from the ASP.Net web service is a url ending in .svc and then I open up the url I get another link that I can click on which ends in .svc?wdsl
This is all pretty new to me so I’m not sure where to begin, any pointers?
Thanks
The
.svc?wsdllink will give you the WSDL for the web service (which describes which methods are available and what their parameters are).Once you have the WSDL, you can construct a SoapClient with it and call the methods.