Created
December 4, 2009 12:18
-
-
Save oc/248998 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.bring.no/logistics/shippingguide/1.0"> | |
<soapenv:Header/> | |
<soapenv:Body> | |
<ns:ShippingGuideRequest> | |
<!--You may enter the following 4 items in any order--> | |
<ns:UserInformation> | |
<ns:Usercode>PUT-YOUR-USERCODE-HERE</ns:Usercode> | |
</ns:UserInformation> | |
<ns:RequestProperties> | |
<!--You may enter the following 8 items in any order--> | |
<!--Optional:--> | |
<ns:Language>no</ns:Language> | |
<!--Optional:--> | |
<ns:WithPrice>true</ns:WithPrice> | |
<!--Optional:--> | |
<ns:WithExpectedDelivery>true</ns:WithExpectedDelivery> | |
<!--Optional:--> | |
<ns:WithGuiInformation>true</ns:WithGuiInformation> | |
<!--Optional:--> | |
<ns:NumberOfAlternativeDeliveryDates>0</ns:NumberOfAlternativeDeliveryDates> | |
<!--Optional:--> | |
<ns:EDI>true</ns:EDI> | |
<!--Optional:--> | |
<ns:PostingAtPostoffice>false</ns:PostingAtPostoffice> | |
<!--Optional:--> | |
<ns:Trace>true</ns:Trace> | |
</ns:RequestProperties> | |
<ns:ProductIds> | |
<!--Zero or more repetitions:--> | |
<ns:ProductId>EKSPRESS09</ns:ProductId> | |
</ns:ProductIds> | |
<ns:Packages> | |
<!--Zero or more repetitions:--> | |
<ns:Package packageId=""> | |
<!--You may enter the following 13 items in any order--> | |
<!--Optional:--> | |
<ns:Height unitCode="CMT"></ns:Height> | |
<!--Optional:--> | |
<ns:Width unitCode="CMT"></ns:Width> | |
<!--Optional:--> | |
<ns:Length unitCode="CMT"></ns:Length> | |
<!--Optional:--> | |
<ns:GrossWeight unitCode="GRM">450000</ns:GrossWeight> | |
<!--Optional:--> | |
<ns:Volume unitCode="DMQ"></ns:Volume> | |
<!--Optional:--> | |
<ns:VolumeSpecial>false</ns:VolumeSpecial> | |
<ns:FromCountryCode>NO</ns:FromCountryCode> | |
<ns:FromPostalCode>0001</ns:FromPostalCode> | |
<ns:ToCountryCode>NO</ns:ToCountryCode> | |
<ns:ToPostalCode>4560</ns:ToPostalCode> | |
<!--Optional:--> | |
<ns:ShippingDate> | |
<!--You may enter the following 3 items in any order--> | |
<ns:Year>2009</ns:Year> | |
<ns:Month>12</ns:Month> | |
<ns:Day>24</ns:Day> | |
</ns:ShippingDate> | |
<!--Optional:--> | |
<ns:AdditionalServices> | |
<!--Zero or more repetitions:--> | |
<ns:AdditionalService> | |
<ns:AdditionalServiceId></ns:AdditionalServiceId> | |
<ns:AdditionalServiceParameters> | |
<!--Zero or more repetitions:--> | |
<ns:AdditonalServiceParameter name=""></ns:AdditonalServiceParameter> | |
</ns:AdditionalServiceParameters> | |
</ns:AdditionalService> | |
</ns:AdditionalServices> | |
<!--Optional:--> | |
<ns:EarlyCollectionAtTerminal></ns:EarlyCollectionAtTerminal> | |
</ns:Package> | |
</ns:Packages> | |
</ns:ShippingGuideRequest> | |
</soapenv:Body> | |
</soapenv:Envelope> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> | |
<SOAP-ENV:Header/> | |
<SOAP-ENV:Body> | |
<ns:ShippingGuideResponse xmlns:ns="http://www.bring.no/logistics/shippingguide/1.0"> | |
<ns:Packages> | |
<ns:Package packageId=""/> | |
</ns:Packages> | |
<ns:TraceMessages> | |
<ns:Message>Package exceed maximum measurements for product EKSPRESS09 (package ID ).</ns:Message> | |
</ns:TraceMessages> | |
</ns:ShippingGuideResponse> | |
</SOAP-ENV:Body> | |
</SOAP-ENV:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment