我正在尝试在 php 中设置 SOAP 服务。我声明了一个服务器 php 函数,我可以使用 SOAP 类型的 http 请求调用该函数,其中内容是我的 SOAP 信封。
SOAP 主体的 XML 内容是我假设的函数的参数,但我不知道如何在我的 php 代码中访问其中的信息。
我注意到函数参数是stdClass
默认情况下的一个实例,我实际上想知道为什么它没有被 php 强制转换为XML
orDOM
对象 - 它是一个 SOAP 调用,不是吗?但是好的,现在由我来从对象中获取信息,这并不容易,因为没有分配给 的方法stdClass
,所以它必须是标准的 php 函数。所以我尝试serialize
了,但这给了我一些垃圾,而不是我期望的 XML 字符串。
该怎么办?
编辑
请注意,下面没有我想做的示例代码 - 从 SOAP 请求的 XML 内容中获取一些详细数据 - 因为我不知道如何编写代码从 stdClass 对象中获取它
应大卫的要求,这里有一些细节。
php代码:
<?php
function mi102($arg) {
$txt = serialize ($arg);
$result = new SoapVar ($txt, XSD_ANYXML);
return($result);
}
ini_set( "soap.wsdl_cache_enabled", "0");
$server = new SoapServer ("test.wsdl");
$server -> addFunction ("mi102");
try {
$server -> handle();
}
catch (Exception $e) {
$server -> fault ('Client', $e -> getMessage());
}
?php>
http请求是由我使用的应用程序构造的;http标头和soap信封+正文是围绕我提供的XML生成的:
SOAP 请求正文内容:
<mi102 xmlns="http://pse">
<cdhead cisprik="21"/>
<instr>
<insid>
<bcdt>20120930</bcdt>
</insid>
</instr>
</mi102>
使用的 WSDL 如下:
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://pse/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="PSE" targetNamespace="http://pse/">
<types>
<xs:schema>
<xs:import namespace="http://pse/" schemaLocation="PSE.xsd"/>
</xs:schema>
</types>
<message name="MI102Req">
<part name="cdhead" type="tns:cdhead_T"/>
<part name="instr" type="tns:instr_T"/>
</message>
<message name="Res">
<part name="cdhead" type="tns:cdhead_T"/>
</message>
<portType name="MIPortType">
<operation name="mi102">
<input message="tns:MI102Req"/>
<output message="tns:Res"/>
</operation>
</portType>
<binding name="MIBinding" type="tns:MIPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="mi102">
<soap:operation soapAction="http://testServerURL/test_soap.php#mi102"/>
<input>
<soap:body use="literal" namespace="http://pse/"/>
</input>
<output>
<soap:body use="literal" namespace="http://pse/"/>
</output>
</operation>
</binding>
<service name="PSE">
<port name="MIPortType" binding="tns:MIBinding">
<soap:address location="http://testServerURL/test_soap.php"/>
</port>
</service>
</definitions>
生成的 XML(同样,由我使用的应用程序从 SOAP 主体中提取)是
SOAP 响应:
<?xml version="1.0" encoding="UTF-8"?>
<ns1:mi102Response xmlns:ns1="http://pse/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">O:8:"stdClass":2:{s:7:"cisprik";i:21;s:7:"version";s:2:"13";}</ns1:mi102Response>
不太好。