-1

连接到 UPS Freight 测试服务器的正确 URL 是什么?Developers Kit pdf 中提供的 url 不起作用。有谁知道哪些网址用于测试目的?

这是插件的示例代码:

/**
     * Shipping method class
     * */
    class WC_Shipping_UPS extends WC_Shipping_Method {

        var $test_url = "https://wwwcie.ups.com/webservices/FreightRate";
        /* var $url = "https://onlinetools.ups.com/webservices/FreightShip"; */
        var $codes = array(
            "01" => "UPS Next Day Air",
            "02" => "UPS Second Day Air",
4

2 回答 2

0
protected static $endpointUrls = array(
    'sandbox' => 'https://wwwcie.ups.com/webservices/FreightRate',
    'production' => 'https://onlinetools.ups.com/webservices/FreightRate'
);

这些是正确的 url,从 UPS 的 Freight Shipping API 的 wsdl 文件中复制而来。

于 2013-07-08T16:41:10.950 回答
0

不幸的是,您正在尝试将 XML 服务用于 FreightRate,这是您无法做到的。您只能使用他们的网络服务(根据此论坛帖子( https://developerkitcommunity.ups.com/index.php/Special:AWCforum/st/id192/ ),您只能通过网络服务提供 FreightRate ,因此您将必须走 SOAP 路线并编写自己的插件。

祝你好运。

于 2013-12-04T02:47:42.980 回答