ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

interpreting wsdl request/response (and even URL)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • interpreting wsdl request/response (and even URL)

    i have this wsdl...

    https://testapiprocessone.oneincsyst...svc?singleWsdl

    I'm trying to determine the xml request string and response string for the GetCreditCardConvenienceFee method.

    Using Chromes WZDLR I click on the method and it shows the below (but I'm still not sure exactly what the xml request/response will look like.


    <Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <Body>
    <GetCreditCardConvenienceFee xmlns="http://tempuri.org/">
    <authenticationKey>[string?]</authenticationKey>
    </GetCreditCardConvenienceFee>
    </Body>
    </Envelope>

    can someone help me out with this? my plan is to use systools and httppostclob to invoke the webservice after I determine these two components (xml request/response - and even the URL to call)

  • #2
    I would suggest using SoapUI to interpret the WSDL and see what the request will look like. You can also use it to test the web service, which lets you see what a response looks like.

    Comment

    Working...
    X