如果使用php nusoap

时间:2015-10-28 08:16:18

标签: linux php web-services

我目前正在开发一个使用网络服务 PHP Nusoap 的项目。我首先在本地计算机上实现它并且它已经完全正常工作,它已经可以插入到数据库中。因此,我们还在生产服务器(Linux RHEL 4)中部署我们的项目我们还需要包含Web服务。在生产服务器中实现此功能时,我们收到此错误:

  

此服务的WSDL中未定义“操作”,以下是   完整细节:

<?xml version="1.0" encoding="utf-8"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
    <faultcode xsi:type="xsd:string">SOAP-ENV:Client</faultcode>
    <faultactor xsi:type="xsd:string"></faultactor>
    <faultstring xsi:type="xsd:string">Operation &apos;&apos; is not defined in the WSDL for this service
    </faultstring>
    <detail xsi:type="xsd:string"></detail>
</SOAP-ENV:Fault>

这是代码:

client.php

<?php
    require_once('lib/nusoap.php');

    $data = json_decode(file_get_contents("php://input"), true);

    $file_name = $data['file_name'];
    $location = $data['location'];

    $client = new nusoap_client('http://servername:port/WebService/server.php?wsdl', true);

    if ($SERVER['REQUEST_METHOD'] == 'POST') {
        $err = $client->getError();

        if ($err) {
            echo "<h2> Constructor error </h2><pre>" . $err. "</pre>" ;
            echo "<h2> Debug </h2><pre>" . htmlspecialchars($client->getdebug(),        ENT_QUOTES) . "</pre>" ;
            exit();
        }

        $datas = array (
            'file_name' => $file_name,
            'location'   => $location
        );

        $result = $client->call('InsertData', $datas);

        if ($client->fault) {
            echo "<h2> Fault (Expect - The request contains an invalid SOAP Body)</h2> <pre>" ;
            print_r ($result);
            echo "</pre>";
        } else {
            $err = $client->getError ();
            if ($err) {
                echo "<h2> Error </h2><pre>" . $err.  "</pre>";
            } else {
                print_r ($result);
            }
        }
    } else if ($_SERVER['REQUEST_METHOD'] != 'POST') {
        echo "Method is not POST " ;
    }

?>

server.php

<?php 
require_once('lib.nusoap');

$server = new soap_server();
$server->configureWSDL('Database Sample Insertion', 'urn:Insert');
$server->soap_defenconding = 'UTF-8' ;

$server->register('InsertData', 
    array (
        'file_name'  => 'xsd:file_name',
        'location'    => 'xsd:location'
    ),
    array ('return' => 'xsd:string'),
    'urn:Insert',
    'urn:Insertwsdl#InsertDate',
    'rpc',
    'literal'
);

function InsertData ($file_name, $location) {
    $db_host = 'localhost';
    $db_username = 'username';
    $db_password = '' ;
    $db_name = 'sample' ;

    $conn = new mysqli ($db_host, $db_username, $db_password, $db_name);

    if ($conn->connect_error) {
        trigger_error('Database connection failed : ' .$conn->connect_error , E_USER_ERROR);
    }

    $sql = "INSERT INTO transaction (`filename`, `location`) VALUES ('$file_name', '$location')";

    $query = $conn->query($sql);

}

    $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '' ;
    $server->service($HTTP_RAW_POST_DATA);


?>

这个问题意味着什么,我们如何解决这个问题?或者如何在生产服务器中设置Web服务PHP Nusoap?任何想法/建议表示赞赏。感谢

1 个答案:

答案 0 :(得分:1)

当我的服务器上的PHP / Apache版本发生变化时,我遇到了同样的问题。在我的情况下,问题位于nusoap库函数内:parse_http_headers()

有一个函数用于获取所有HTTP标头getallheaders(),它似乎没有得到所有标头。 nusoap解析请求时没有Content-Type(例如text/xml)。

幸运的是,nusoap检查函数getallheaders()是否存在,如果不存在,则使用$_SERVER数组来解析标题。

最后,我要做的一件事是更改nusoap.php文件中的一行代码以禁用此功能:

if (function_exists('getallheaders')){ ... 

到这一个:

if (0 && function_exists('getallheaders')){ ...

希望这有助于他人!