Click to See Complete Forum and Search --> : SOAP question


sweet_babylhyn
April 19th, 2009, 07:28 PM
Im only a newbie in ASP.Net. My boss assigned me dealing of Soap. I read many article about Soap and WSDL but seem I'm lost. Maybe Im not good in English so can't understand it clearly. Is there anyone who can help me on how to send and manipulate Soap in basic way. How can I use this in Web Service.? I download already the MS Soap Toolkit. Can you give me basic sample program so that I can understand.

Please help guys. Thanks

sweet_babylhyn
April 20th, 2009, 07:52 PM
I already output a Soap using the VB 2008 that generate automatically a xml in wsdl.
But how can i tranport this soap method over http...



POST /MyWebService/Service.asmx HTTP/1.1
Host: localhost
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<Converter xmlns="http://localhost:1563/MyWebService">
<BritishPounds>double</BritishPounds>
<peso>double</peso>
</Converter>
</soap12:Body>
</soap12:Envelope>