我正在用PHP编写Web服务客户端。 Web服务是使用axis开发的ij java。使用wsdl2php工具生成客户端代理。代理代码包括以下代码
class ValidateDetails {
public $elements; // ArrayOf_apachesoap_Element
public $pipeName; // string
}
并设置参数并使用以下代码调用服务
$xml = '<elements> <some xml here /> </elements>';
$xmlElement = new DOMElement('elements', $xml, '');
$details = new ValidateDetails();
$details->elements[0] = $xmlElement;
$details->pipeName = 'mypipe';
$response = new ValidationResult();
$response = $client->validate($details);
但是,SoapRequest对象不包含元素节点内的嵌套xml。看起来像这样
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://build.nomos.com" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns3="urn:CompilationService" xmlns:xsd="http://www.w3.org/2001/XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:validate>
<details xsi:type="ns3:ValidateDetails">
<elements SOAP-ENC:arrayType="ns2:Element[1]" xsi:type="ns3:ArrayOf_apachesoap_Element">
<item xsi:type="SOAP-ENC:Struct"/>
</elements>
<pipeName xsi:type="xsd:string">mypipe</pipeName>
</details></ns1:validate></SOAP-ENV:Body></SOAP-ENV:Envelope>
我无法理解如何使用正确的xml填充元素字段。请建议这个 ArrayOf_apachesoap_Element 数据类型是什么,以及如何填充此参数。
答案 0 :(得分:2)
显然没有这种数据类型转换的解决方案,或者至少我不知道这种数据类型。如果您有权访问主机Web服务,请尝试使用标准数据类型(如字符串)