Link to home
Start Free TrialLog in
Avatar of movieprodw
movieprodw

asked on

Soap Question

Hello,

I was given this:

POST /cart_advanced.asmx HTTP/1.1
Host: api.3dcart.com
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>
    <runQuery xmlns="http://3dcart.com/">
      <storeUrl>string</storeUrl>
      <userKey>string</userKey>
      <sqlStatement>string</sqlStatement>
      <callBackURL>string</callBackURL>
    </runQuery>
  </soap12:Body>
</soap12:Envelope>

Open in new window


And I am not sure what to do with it, I have used something similar in the past but I would call it with a url string...

The tutorial does not tell how to use it, simply shows the call and the response, the call is what I posted above.

Any tips would be appreciated.

Matt
SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of movieprodw
movieprodw

ASKER

Great info!

Thank you both, this helps a lot.