[PHP] UPS TradeAbility / SOAP / PHP5

2007-09-28 Thread jason php
Does anyone have any experience with UPS's TradeAbility platform and implementing it in PHP? The test WSDL file is located at https://wwwcie.ups.com/webservices/LandedCost.wsdl Can anyone take a look at this and give me some example code to perform a query / receive a response? Thanks!

[PHP] UPS Online Tools and PHP?

2004-10-04 Thread Ed Lazor
Has anyone integrated the UPS Online Tools with their site using PHP? http://www.ups.com/content/us/en/bussol/offering/technology/automated_shippi ng/online_tools.html -Ed

Re: [PHP] UPS / USPS shipping algorithm

2003-08-20 Thread Bryan Koschmann - GKT
Just out of curiosity, how are you doing this? I've wanted something like this as well as tracking information. I've only looked around their sites for something but didn't find it. Fedex would be even better if anyone has any ideas on that :) Thanks, Bryan On Wed, 20 Aug 2003, Jason St

[PHP] UPS / USPS shipping algorithm

2003-08-20 Thread Jason Stechschulte
I have to be able to calculate shipping charges based on the product(s) ordered. I'm able to communicate with UPS and USPS, parse the XML and all of that. The problem I'm running into is trying to calculate a box size. Has anyone here come up with a good solution? It is no problem at all to get

[PHP] UPS Address Validation PHP Class

2003-08-14 Thread Richard Baskett
Do any of you know of a PHP Class that will interact with the UPS address validation routine? I am completely confused when it comes to UPS and how they integrate things.. and have been saved by someone's UPS Rate Class, but now I need an Address Validator. Please please please help! Thanks! Ri

[PHP] UPS

2003-06-30 Thread Daryl Meese
If anybody has implemented UPS's shipping registration software using PHP & Curl and found away around the error "the xml document is poorly formed" when it was not please let me know how. Sorry for the lack of detail but UPS is FULL OF Lawyers and I don't want to violate the license agreement. A

Re: [PHP] UPS Ship Rates avail? XML?

2002-08-21 Thread Peter J. Schoenster
On 21 Aug 2002 at 17:55, Shane wrote: > Anyone know if there is a place I can query US shipping rates from say > UPS or FedEx? Possibly through Amazon's API? I'm surprised on one has sold access to these. Back in the days when I did ecommerce:) I had carts that would use something like curl I g

[PHP] UPS Ship Rates avail? XML?

2002-08-21 Thread Shane
Anyone know if there is a place I can query US shipping rates from say UPS or FedEx? Possibly through Amazon's API? Thanks in Advance!!! -NorthBayShane -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] UPS and USPS shipping labels?

2001-07-08 Thread Mark Bean
o get approval from UPS before they give them to you. Regards, Mark >From: "Chris Lambert - WhiteCrown Networks" <[EMAIL PROTECTED]> >To: "Mark Bean" <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >Subject: Re: [PHP] UPS and USPS shipping labels? >Dat

Re: [PHP] UPS and USPS shipping labels?

2001-07-08 Thread Chris Lambert - WhiteCrown Networks
- www.whitecrown.net */ - Original Message - From: Mark Bean <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 08, 2001 5:44 PM Subject: [PHP] UPS and USPS shipping labels? | I know that both UPS and the USPS (US Postal Service) have servers that | requests can be

[PHP] UPS and USPS shipping labels?

2001-07-08 Thread Mark Bean
I know that both UPS and the USPS (US Postal Service) have servers that requests can be submitted to which return back formatted shipping labels. Does anyone know of any existing functions that work with either of these services? Thank you, Mark ___

RE: [PHP] UPS shipping calculation

2001-02-17 Thread Dallas Kropka
te->origin("08033", "US"); // Use ISO country codes! $rate->dest("90210", "US"); // Use ISO country codes! $rate->rate("RDP"); // See the rate() function for codes $rate->container("CP"); // See the container() f

Re: [PHP] UPS shipping calculation

2001-02-17 Thread John Monfort
There is a Perl module that is very useful for this, I'm currently in the process of implementing it. You can find a copy at http://www.seva.net/~msolomon/Business-UPS/dist/ I'm looking for something similar for FedEx, so let me know if you find one. __John Monfort

[PHP] UPS shipping calculation

2001-02-17 Thread Isaac Force
I'm looking for a better way to calculate UPS shipping costs than opening a connection to the UPS website every time a user wants to calculate their shipping (Which is what I'm finding). Anybody care to point me in the direction of where I can information on how to do this? -- PHP General Mai