Skip Menu |

This queue is for tickets about the Net-UPS CPAN distribution.

Report information
The Basics
Id: 87852
Status: resolved
Priority: 0/
Queue: Net-UPS

People
Owner: DAKKAR [...] cpan.org
Requestors: arthas [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.04
Fixed in: 0.07



Subject: Live service URLs are outdated
URLs for live UPS service are outdated. Even though the previous ones seem to still work, the new base is: https://onlinetools.ups.com/ups.app/xml Attached is a patch, against 0.04, which fixes UPS.pm
Subject: UPS.pm.fixurls.diff
--- UPS.pm 2013-08-08 18:00:54.521207385 +0200 +++ UPS_fixurls.pm 2013-08-14 16:32:11.640410374 +0200 @@ -18,10 +18,10 @@ $Net::UPS::VERSION = '0.04'; $Net::UPS::LIVE = 0; -sub RATE_TEST_PROXY () { 'https://wwwcie.ups.com/ups.app/xml/Rate' } -sub RATE_LIVE_PROXY () { 'https://www.ups.com/ups.app/xml/Rate' } -sub AV_TEST_PROXY () { 'https://wwwcie.ups.com/ups.app/xml/AV' } -sub AV_LIVE_PROXY () { 'https://www.ups.com/ups.app/xml/AV' } +sub RATE_TEST_PROXY () { 'https://wwwcie.ups.com/ups.app/xml/Rate' } +sub RATE_LIVE_PROXY () { 'https://onlinetools.ups.com/ups.app/xml/Rate' } +sub AV_TEST_PROXY () { 'https://wwwcie.ups.com/ups.app/xml/AV' } +sub AV_LIVE_PROXY () { 'https://onlinetools.ups.com/ups.app/xml/AV' } sub PICKUP_TYPES () { return {
Patch applied