svn commit: r612876 - /ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r612876 - /ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java

sichen
Author: sichen
Date: Thu Jan 17 09:16:53 2008
New Revision: 612876

URL: http://svn.apache.org/viewvc?rev=612876&view=rev
Log:
comments

Modified:
    ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java

Modified: ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java?rev=612876&r1=612875&r2=612876&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java (original)
+++ ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/usps/UspsServices.java Thu Jan 17 09:16:53 2008
@@ -175,6 +175,10 @@
             // TODO: handle other container types, package sizes, and machinable packages
             // IMPORTANT: Express or Priority Mail will fail if you supply a Container tag: you will get a message like
             // Invalid container type. Valid container types for Priority Mail are Flat Rate Envelope and Flat Rate Box.
+            /* This is an official response from the United States Postal Service:
+            The <Container> tag is used to specify the flat rate mailing options, or the type of large or oversized package being mailed.
+            If you are wanting to get regular Express Mail rates, leave the <Container> tag empty, or do not include it in the request at all.
+             */
             if ("Parcel".equalsIgnoreCase(serviceCode)) {
                 UtilXml.addChildElementValue(packageElement, "Container", "None", requestDocument);
             }