WSDL / SOAP üzerinden bir Fedex webcoder kullanarak Sorunlar

5 Cevap php

Ben doğru yerde WSDL dosyası yerleştirilir ... fedex sitesinden bir oran istemek için örnek kod indirilen, benim acct numarası, parola, sayaç numarası ve anahtar var. Ben komut dosyasını çalıştırdığınızda bu hatayı alıyorum:

Error in processing transaction.
ERROR
prof
1000
Authentication Failed

Aşağıdaki gibi vermek script, ve evet ben aslında diyor XXX ve her yerde YYY değiştiririm.:

<?php

// Copyright 2009, FedEx Corporation. All rights reserved.
// Version 7.0.0

require_once('fedex-common.php5');

$newline = "<br />";
//The WSDL is not included with the sample code.
//Please include and reference in $path_to_wsdl variable.
$path_to_wsdl = "RateService_v7.wsdl";

ini_set("soap.wsdl_cache_enabled", "0");

$client = new SoapClient($path_to_wsdl, array('trace' => 1)); // Refer to http://us3.php.net/manual/en/ref.soap.php for more information

$request['WebAuthenticationDetail'] = array('UserCredential' =>
                                      array('Key' => 'XXX', 'Password' => 'YYY')); // Replace 'XXX' and 'YYY' with FedEx provided credentials 
$request['ClientDetail'] = array('AccountNumber' => 'XXX', 'MeterNumber' => 'YYY');// Replace 'XXX' with your account and meter number
$request['TransactionDetail'] = array('CustomerTransactionId' => ' *** Rate Request v7 using PHP ***');
$request['Version'] = array('ServiceId' => 'crs', 'Major' => '7', 'Intermediate' => '0', 'Minor' => '0');
$request['ReturnTransitAndCommit'] = true;
$request['RequestedShipment']['DropoffType'] = 'REGULAR_PICKUP'; // valid values REGULAR_PICKUP, REQUEST_COURIER, ...
$request['RequestedShipment']['ShipTimestamp'] = date('c');
$request['RequestedShipment']['ServiceType'] = 'FEDEX_GROUND'; // valid values STANDARD_OVERNIGHT, PRIORITY_OVERNIGHT, FEDEX_GROUND, ...
$request['RequestedShipment']['PackagingType'] = 'YOUR_PACKAGING'; // valid values FEDEX_BOX, FEDEX_PAK, FEDEX_TUBE, YOUR_PACKAGING, ...
$request['RequestedShipment']['Shipper'] = array('Address' => array(
                                          'StreetLines' => array('10 Fed Ex Pkwy'), // Origin details
                                          'City' => 'Memphis',
                                          'StateOrProvinceCode' => 'TN',
                                          'PostalCode' => '38115',
                                          'CountryCode' => 'US'));
$request['RequestedShipment']['Recipient'] = array('Address' => array (
                                               'StreetLines' => array('13450 Farmcrest Ct'), // Destination details
                                               'City' => 'Herndon',
                                               'StateOrProvinceCode' => 'VA',
                                               'PostalCode' => '20171',
                                               'CountryCode' => 'US'));
$request['RequestedShipment']['ShippingChargesPayment'] = array('PaymentType' => 'SENDER',
                                                        'Payor' => array('AccountNumber' => 'XXX', // Replace 'XXX' with payor's account number
                                                                     'CountryCode' => 'US'));
$request['RequestedShipment']['RateRequestTypes'] = 'ACCOUNT'; 
$request['RequestedShipment']['RateRequestTypes'] = 'LIST'; 
$request['RequestedShipment']['PackageCount'] = '2';
$request['RequestedShipment']['PackageDetailSpecified'] = true;
$request['RequestedShipment']['PackageDetail'] = 'INDIVIDUAL_PACKAGES';  //  Or PACKAGE_SUMMARY
$request['RequestedShipment']['RequestedPackageLineItems'] = array('0' => array('Weight' => array('Value' => 2.0,
                                                                                    'Units' => 'LB'),
                                                                                    'Dimensions' => array('Length' => 10,
                                                                                        'Width' => 10,
                                                                                        'Height' => 3,
                                                                                        'Units' => 'IN')),
                                                                   '1' => array('Weight' => array('Value' => 5.0,
                                                                                    'Units' => 'LB'),
                                                                                    'Dimensions' => array('Length' => 20,
                                                                                        'Width' => 20,
                                                                                        'Height' => 10,
                                                                                        'Units' => 'IN')));
try 
{
    $response = $client ->getRates($request);

    if ($response -> HighestSeverity != 'FAILURE' && $response -> HighestSeverity != 'ERROR')
    {
        printRequestResponse($client);
    }
    else
    {
        echo 'Error in processing transaction.'. $newline. $newline; 
        foreach ($response -> Notifications as $notification)
        {           
            if(is_array($response -> Notifications))
            {              
               echo $notification -> Severity;
               echo ': ';           
               echo $notification -> Message . $newline;
            }
            else
            {
                echo $notification . $newline;
            }
        } 
    } 

    writeToLog($client);    // Write to log file   

} catch (SoapFault $exception) {
   printFault($exception, $client);        
}

?>

Ben neden çalışmadığını, bir proxy kullanarak okudum pek emin değilim, ama ben bu durumda bunu kullanmak nasıl oldukça emin değilim? CURL, Direct Connect türü şeyler kullanmaktan kaçınmak için SOAP ve WSDL kullanarak noktası değil midir?

5 Cevap

Eğer (http://www.soapui.org/) WSDL irtibata SoapUI kullanırsanız, olsun tepkisi nedir?

(Çağrıları doğru olup olmadığını kontrol edebilirsiniz böylece SoapUI onlar eğer, o zaman sorun kodu olduğunu, programlama olmadan SOAP / WSDL 's test etmenize olanak tanır.)

Ben de ben giriş için kullandığı şifreyi girerek edilmiş, aynı sorunu olan oldu, ama biz FedEx ile test hesabı bilgi için kaydolduktan sonra e-posta adresinizi gönderilecek şifreyi girmeniz gerekir:

Emin olun aşağıda girdiğiniz değerler doğru:

if($var == 'shipaccount') Return 'Your Account Number';
if($var == 'meter')       Return 'Your meter number';
if($var == 'key')         Return 'Your key'; //These values wiil be shown in the page after registering for the test account

if($var == 'password')    Return 'Your Password'; // This will be sent to you by Fedex to your mail this is not your account password using to login

Agree with Aditya Kumar, or check in your wsdl file at bottom. there is a code

<s1:address location="https://wsbeta.fedex.com:443/web-services/ship"/>

bunu değiştirin

<s1:address location="https://ws.fedex.com:443/web-services/ship"/>

Edit fedex-common.php5 dosyası aşağıdaki params içinde bilgi ile 'XXX' yerine

if($var == 'shipaccount') Return 'YOUR TEST ACCOUNT NUMBER HERE'; 
if($var == 'billaccount') Return 'YOUR TEST ACCOUNT NUMBER HERE';
if($var == 'meter') Return 'YOUR TEST METER NUMBER HERE';
if($var == 'key') Return 'YOUR TEST KEY HERE';
if($var == 'password') Return 'YOUR TEST PASSWORD HERE';

Bu kimse yardımcı olur umarım.

Sağlanan kimlik bilgileri alanlara aşağıdaki in library file fedex-common.php5 değişiklik:

if($var == 'shipaccount') Return '123456';
if($var == 'billaccount') Return '123456';
if($var == 'dutyaccount') Return '123456';
if($var == 'accounttovalidate') Return '123456';
if($var == 'meter') Return '654321';
if($var == 'key') Return 'ASDE324dfe';
if($var == 'password') Return 'K2wedrf4ASDE324dfe';

in wsdlfile ShipService_v*.wsdl değişiklik aşağıdaki şey:

<s1:address location="https://ws.fedex.com:443/web-services/ship"/>

Sizin için çalışmak umuyoruz.