Z K

Z K

  • NA
  • 16
  • 1.2k

Soap code in Asp.net c#

Jul 25 2019 12:52 PM
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 or .asmx
 
how we can use that code from our c# asp.net application.
 
<?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="COMnum"> 111 </eps:constraint> <eps:constraint xmlns:eps="http://www.test.com/A/eps" name="EMPnum"> 1211 </eps:constraint>
</soap:Body> </soap:Envelope>

Answers (1)