Soap response in C#

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

junaidk

Guest
how we can get data from soap response in c#.fist we have to add soap reference in our application ?

<?xml version="1.0" encoding="UTF-8"?>
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Header/>
<soap-env:Body>
<PersonName>
<FirstName>Test1</FirstName>
<LastName>Last</LastName>
<Affix type="formOfAddress">Ms</Affix>
</PersonName>
</soap-env:Body>
</soap-env:Envelope>


Continue reading...
 
Back
Top