
jncraig
New User
Jan 26, 2011, 8:34 AM
Post #1 of 1
(341 views)
|
|
Help with SOAP
|
Can't Post
|
|
I have a webservice that I need to use with this description: POST /Services/bbbbservice.asmx HTTP/1.1 Host: test.myservice.org Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempuri.org/PostInterpretation" <?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> <PostInterpretation xmlns="http://tempuri.org/"> <SubCode>string</SubCode> <Chapter>string</Chapter> <Section>string</Section> <Topic>string</Topic> <CodeVersion>string</CodeVersion> <Description>string</Description> <EffectiveDate>dateTime</EffectiveDate> <filename>string</filename> </PostInterpretation> </soap:Body> </soap:Envelope> Can someone give me a quick example of how I could do this using SOAP::Lite? Thanks!
|