0

是在 PHP 中创建 SOAP 请求/响应的任何工具。

我传递 WSDL 文档并接收基于此文档网络的示例 SOAP 消息(如在 soapUI 中),例如:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ns1="urn:flickr" 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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
....
4

1 回答 1

0

在 SoapUI 中导入 WSDL 后,您将自动获取 SOAP Web 服务的请求 xml。对于 REST Web 服务,我们使用 XSD 来生成请求 XML。要从 XSD 生成 xml,您可以使用 Eclipse。

于 2013-09-12T13:22:41.353 回答