soap - Testing a web-service from an Inetrnet browser -


i have c# program connects web service on remote server. has been working fine until server changed , when program sends request timeout error.

the customer says when tests similar call soap ui gets reply.

my question is: there way test calls web-service using internet explorer?

the soap envelope server looks this:

post /somews/authorization/login.asmx http/1.1 host: somehostname content-type: text/xml; charset=utf-8 content-length: length soapaction: "http://www.company.com/hqlwebservices/userlogin"  <?xml version="1.0" encoding="utf-8"?> <soap:envelope xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">   <soap:body>     <userlogin xmlns="http://www.company.com/hqlwebservices">       <in_username>string</in_username>       <in_password>string</in_password>     </userlogin>   </soap:body> </soap:envelope> 

how can use post request through ie? can done?


Comments