Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Objective Retrieve shipping rates from Canada Post using their developer API: Canada Post API

Problem No values are returned from Canada Post. I'm an XML newbie and not sure if my coding is correct. I'm using sample code from Canada Post's developer program shown below.

Code

<!DOCTYPE html>
<html>
<header>

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:rate="http://www.canadapost.ca/ws/soap/ship/rate">
<soapenv:Header/>
<soapenv:Body>
  <rate:get-rates-request>
     <!--You may enter the following 2 items in any order-->
     <mailing-scenario>
        <customer-number> <!-- my number is here --></customer-number> 
        <contract-id><!-- my ID is here --></contract-id>
        <!--You may enter the following 9 items in any order-->
        <parcel-characteristics>
           <!--You may enter the following 5 items in any order-->
           <weight>1</weight>
        </parcel-characteristics>
        <origin-postal-code>V6B4A2</origin-postal-code>
        <destination>
           <!--You have a CHOICE of the next 3 items at this level-->
           <domestic>
              <postal-code>J0E1X0</postal-code>
           </domestic>
           <!--<united-states>
              <zip-code>?</zip-code>
           </united-states>
           <international>
              <country-code>?</country-code>
           </international>-->
        </destination>
     </mailing-scenario>
  </rate:get-rates-request>
  </soapenv:Body>
</soapenv:Envelope>

</header>
<body>
</body>
</html>
share|improve this question
From the comments it looks like there are a lot of missing elements... (i.e. "the following 5 items", "the following 9 items", ...) – lc. Jan 28 at 6:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.