Problem generating SOAP request -
08-20-2007
, 11:40 AM
I need to generate the following SOAP request in a VB Windows app and then
read the response XML data into an Access database:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<getOrdersForDateRange xmlns="http://obom/service/FormatB">
<FilterId xsi:type="xsd:long" xmlns="">94</FilterId>
<FromDate xsi:type="xsd:dateTime"
xmlns="">2007-07-09T23:00:00.042Z</FromDate>
<ToDate xsi:type="xsd:dateTime" xmlns="">2007-07-10T23:00:00.042Z</ToDate>
</getOrdersForDateRange>
</soapenv:Body>
</soapenv:Envelope>
I have from my customer .wsdl and .xsd files.
Any help to point me in the right direction greatly appreciated.
Jonathan Attree |