【问题标题】:SoapFault exception: [HTTP] Bad Request In ewaySoapFault 异常:[HTTP] Bad Request In eway
【发布时间】:2012-07-09 22:35:52
【问题描述】:

我将集成 eway 代币支付集成,我正面临这个问题。

SoapFault exception: [HTTP] Bad Request

wsdl 文件在这里

https://www.eway.com.au/gateway/ManagedPaymentService/managedCreditCardPayment.asmx?wsdl

这里是xml格式

https://www.eway.com.au/gateway/ManagedPaymentService/test/managedcreditcardpayment.asmx?op=CreateCustomer

我用 $client->__getLastRequest(); 得到了 xml 文件脚本是

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="https://www.eway.com.au/gateway/managedpayment" xmlns:ns2="eWAYHeader">
<env:Header>
<ns2:http://www.eway.com.au/gateway/managedPayment>
<item>
<key>eWAYCustomerID</key><value>87654321</value>
</item>
<item><key>Username</key><value>test@eway.com.au</value>
</item>
<item><key>Password</key><value>test123</value>
</item>
</ns2:http://www.eway.com.au/gateway/managedPayment>
</env:Header><env:Body>
<ns1:CreateCustomer>
<ns1:Title>Mr.</ns1:Title>
<ns1:FirstName>Joe</ns1:FirstName>
<ns1:LastName>Bloggs</ns1:LastName>
<ns1:Address>Bloggs Enterprise</ns1:Address>
<ns1:Suburb>Capital City</ns1:Suburb>
<ns1:State>ACT</ns1:State>
<ns1:Company>Bloggs</ns1:Company>
<ns1:PostCode>2111</ns1:PostCode>
<ns1:Country>au</ns1:Country>
<ns1:Email>test@eway.com.au</ns1:Email>
<ns1:Fax>0298989898</ns1:Fax>
<ns1:Phone>0297979797</ns1:Phone>
<ns1:Mobile>9841381980</ns1:Mobile>
<ns1:CustomerRef>Ref123</ns1:CustomerRef>
<ns1:JobDesc>Web developer</ns1:JobDesc>
<ns1:Comments>Please Ship ASASP</ns1:Comments>
<ns1:URL>http://www.test.com.au</ns1:URL>
<ns1:CCNumber>4444333322221111</ns1:CCNumber>
<ns1:CCNameOnCard>Test Account </ns1:CCNameOnCard>
<ns1:CCExpiryMonth>1</ns1:CCExpiryMonth>
<ns1:CCExpiryYear>13</ns1:CCExpiryYear>
</ns1:CreateCustomer>
</env:Body>
</env:Envelope>

soap有两种xml结构效果吗:

或者这类似于肥皂标题的问题?

我已经设置了这样的标题

$data = array('eWAYCustomerID'=>'87654321',
                'Username' => "test@eway.com.au", 
                'Password' => "test123"

                );

$header = new SoapHeader('eWAYHeader',$url,$data);

$client->__setSoapHeaders($header);

我得到:

SoapFault exception: [HTTP] Bad Request in D:\wamp\www\eway\newfile.php:196
Stack trace:
#0 [internal function]: SoapClient->__doRequest('__call('CreateCustomer', Array)
#2 D:\wamp\www\eway\newfile.php(196): SoapClient->CreateCustomer(Array)
#3 {main}

当我调用这个函数时总是出现这个错误

$customerinfo = 
        array(
        'Title'=>'Mr.',
        'FirstName' => 'Joe',
        'LastName'=>'Bloggs',
        'Address'=>'Bloggs Enterprise',
        'Suburb'=>'Capital City',
        'State'=>'ACT',
        'Company'=>'Bloggs',
        'PostCode'=>'2111',
        'Country'=>'au',
        'Email'=>'test@eway.com.au',
        'Fax'=>'0298989898',
        'Phone'=>'0297979797',
        'Mobile'=>'9841381980',
        'CustomerRef'=>'Ref123',
        'JobDesc'=>'Web developer',
        'Comments'=>'Please Ship ASASP',
        'URL'=>'http://www.test.com.au',
        'CCNumber'=>'4444333322221111',
        'CCNameOnCard'=>'Test Account ',
        'CCExpiryMonth'=>'01',
        'CCExpiryYear'=>'13'

);

$client->CreateCustomer($customerinfo);

任何帮助都会更有价值。

提前致谢。

【问题讨论】:

    标签: soap


    【解决方案1】:

    尝试使用以下代码:

    <?php
    $apiUrl         = 'https://www.eway.com.au/gateway/ManagedPaymentService/test/managedcreditcardpayment.asmx?WSDL';
    $options        = array( 'trace' => 1, 'exceptions' => 1);
    try{
        $client     = new SoapClient($apiUrl, $options);
        $data       = array(
            'eWAYCustomerID'    => '87654321',
            'Username'          => "test@eway.com.au",
            'Password'          => "test123"
        );
    
        $header = new SoapHeader('https://www.eway.com.au/gateway/managedpayment', 'eWAYHeader', $data, false);
        $client->__setSoapHeaders($header);
    
        $customerinfo =  array(
                'Title'=>'Mr.',
                'FirstName' => 'Joe',
                'LastName'=>'Bloggs',
                'Address'=>'Bloggs Enterprise',
                'Suburb'=>'Capital City',
                'State'=>'ACT',
                'Company'=>'Bloggs',
                'PostCode'=>'2111',
                'Country'=>'au',
                'Email'=>'test@eway.com.au',
                'Fax'=>'0298989898',
                'Phone'=>'0297979797',
                'Mobile'=>'9841381980',
                'CustomerRef'=>'Ref123',
                'JobDesc'=>'Web developer',
                'Comments'=>'Please Ship ASASP',
                'URL'=>'http://www.test.com.au',
                'CCNumber'=>'4444333322221111',
                'CCNameOnCard'=>'Test Account ',
                'CCExpiryMonth'=>'01',
                'CCExpiryYear'=>'13'
    
        );
    
        $result = $client->CreateCustomer($customerinfo);
        var_dump($result);
    
    }catch(Exception $e){
        echo $e->getMessage();
    }
    

    这对我有用。

    注意:
    1. 始终尝试将代码包装在 try{} catch{} 块中
    2.确保检查php_openssl扩展是否启用
    3. 禁用 wsdl 缓存并启用异常
    4.注意SoapHeader构造函数。

    希望这对您有所帮助。
    问候

    【讨论】:

      猜你喜欢
      • 2018-07-07
      • 1970-01-01
      • 2016-01-05
      • 2021-09-26
      • 2011-06-17
      • 2020-06-26
      • 1970-01-01
      • 1970-01-01
      • 2020-07-07
      相关资源
      最近更新 更多