SOAP to C#

  • Thread starter Thread starter junaidk
  • Start date Start date
J

junaidk

Guest
how we can use that soap request in c# asp.net Application code after that request how we can get response.without adding refrence or wsdl or proxy classes

<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap ="http://schemas.xmlsoap.org/soap/envelope/">

<soap:Header>

<eps:ViewName xmlns:eps="http://www.test.com/A/eps">PersonName</eps:ViewName>

<eps:UserCode xmlns:eps="http://www.test.com/A/eps">****</eps:UserCode>

<eps:Password xmlns:eps="http://www.test.com/A/eps">****</eps:Password> </soap:Header>

<soap:Body> <eps:constraint xmlns:eps="http://www.test.com/A/eps" name="COMPANY_NUMBER"> 111 </eps:constraint> <eps:constraint xmlns:eps="http://www.test.com/A/eps" name="EMPLOYEE_NUMBER"> 1211 </eps:constraint>

</soap:Body> </soap:Envelope

Continue reading...
 
Back
Top