0

When I am sending Transmit Shipment Request to canada Post Shipping Server then it is giving me warning message "postal-zip-code value is not a valid instance of type".

My Transmit Shipment Request XML is as follows :

<?xml version="1.0" encoding="UTF-8"?><transmit-set xmlnssi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.canadapost.ca/ws/manifest" ><group-ids><group-id>ACCOUNTGROUPID</group-id></group-ids><requested-shipping-point>MYREQUESTSHIPPINGPOINT</requested-shipping-point><detailed-manifests>true</detailed-manifests><method-of-payment>Account</method-of-payment><manifest-address><manifest-company>COMPANY</manifest-company><phone-number>123456</phone-number><address-details><address-line-1>PACIFIC COAST HWY</address-line-1><city>MALIBU</city><prov-state>CA(For California)</prov-state><postal-zip-code>90265</postal-zip-code></address-details></manifest-address></transmit-set>

Please help me out.

Thanks,

4

1 回答 1

1

您的 xml 是说您打算在发件人地址位于加利福尼亚的一组货件上传输货件。

有些东西告诉我这不是你想要的。

如果您从加利福尼亚运送到加拿大,则需要使用 USPS,他们将移交给加拿大邮政。

如果您从加拿大运送到加利福尼亚,则需要在 createShipments() 调用中指定加利福尼亚的目的地地址,并且您在 transmitShipments() xml 中提供的地址信息应该是您计划从哪里发货(即如果加拿大邮政要取货,请填写您的仓库地址,或您计划通过加拿大邮政投递货物的邮局地址)。

于 2014-03-05T19:09:25.813 回答