I need to send a SOAP request to a certain webservice and already struggle in creating the request.
Here is how the request should look like:
POST /gateway/rebill/test/manageRebill_test.asmx HTTP/1.1 Host: www.eway.com.au 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:Header> <eWAYHeader xmlns="http://www.eway.com.au/gateway/rebill/manageRebill"> <eWAYCustomerID>string</eWAYCustomerID> <Username>string</Username> <Password>string</Password> </eWAYHeader> </soap12:Header> <soap12:Body> <CreateRebillEvent xmlns="http://www.eway.com.au/gateway/rebill/manageRebill"> <RebillCustomerID>string</RebillCustomerID> <RebillInvRef>string</RebillInvRef> <RebillInvDes>string</RebillInvDes> <RebillCCName>string</RebillCCName> <RebillCCNumber>string</RebillCCNumber> <RebillCCExpMonth>string</RebillCCExpMonth> <RebillCCExpYear>string</RebillCCExpYear> <RebillInitAmt>string</RebillInitAmt> <RebillInitDate>string</RebillInitDate> <RebillRecurAmt>string</RebillRecurAmt> <RebillStartDate>string</RebillStartDate> <RebillInterval>string</RebillInterval> <RebillIntervalType>string</RebillIntervalType> <RebillEndDate>string</RebillEndDate> </CreateRebillEvent> </soap12:Body> </soap12:Envelope>
SOAP is new to me and I don't know where to start... maybe someone can give me a push in the right direction.
Cheers,
Bjorn
Edited by bmett, 22 June 2010 - 03:57 PM.


Sign In
Create Account


Back to top









