我创建了一个JaxWs服务。用户试图用PHP客户端调用它,唯一的parm是一个字符串。当我使用Eclipse Web服务浏览器(测试人员)时,它很好。当用户尝试使用PHP时,我会在方法中收到一个null parm。我没有对wsdl或代码进行任何自定义。提前感谢任何指示...
方法
@WebService(endpointInterface = "my.endpoint.class")
public class ExternalReportsImpl implements ExternalReports {
private org.w3c.dom.Document doc;
@Resource
private WebServiceContext context;
private enum Types {
tfbData, tfbRate, tfbSupport, tfbMakes, tfbVin, tfbSave, tfbRetrieve;
}
@Override
public String getReports(String xmlSource){
XmlHelper xh;
SupportTables support = new SupportTables();
Connection con = null;
Policy policy = null;
String schema = "";
String ret = "";
ServletContext servletContext = (ServletContext) context.getMessageContext().get(MessageContext.SERVLET_CONTEXT);
try {
xh = new XmlHelper();
doc = xh.loadDoc(xmlSource);
}
WSDL Snippet
<message name="getReports"><part name="parameters" element="tns:getReports"/></message><message name="getReportsResponse"><part name="parameters" element="tns:getReportsResponse"/></message><portType name="ExternalReports"><operation name="getReports"><input wsam:Action="http://my.class/ExternalReports/getReportsRequest" message="tns:getReports"/><output wsam:Action="http://my.class/ExternalReports/getReportsResponse" message="tns:getReportsResponse"/></operation></portType>
PHP客户端
error_reporting(E_ALL);
$url = 'http://my.endpoint/ExternalReportsWebService?wsdl';
$client = new SoapClient($url);
class getReports {
function __construct($arg0) {
$this->getReports = $arg0;
}
}
class getReportsResponse {
function __construct($arg0='') {
$this->getReportsResponse = $arg0;
}
}
//$GR = new getReports(file_get_contents("test/test.xml") );
$GR = new getReports("test") );
$GRR = new getReportsResponse();
$report = new SoapVar( $GR , SOAP_ENC_OBJECT, 'getReports', $url);
$response = new SoapVar( $GRR , SOAP_ENC_OBJECT, 'getReportsResponse', $url);
echo nl2br(htmlspecialchars(print_r($client->getReports($report, $response), true)));
将此代码添加到PHP CLIENT
echo "<br> LAST REQUEST <br>" ;
echo $client->__getLastRequest();
echo " <br> Functions <br>" ;
echo $client->__getFunctions();
echo " <br> Types <br>" ;
echo $client->__getTypes();
echo "<br> Request headers <br>" ;
echo $client->__getLastRequestHeaders();
客户跟踪结果
LAST REQUEST
TEST
Functions
Array
Types
Array
Request headers
POST /myApp/ExternalReportsWebService HTTP/1.1 Host: localhost:8080 Connection: Keep-Alive User-Agent: PHP-SOAP/5.3.14 Content-Type: text/xml; charset=utf-8 SOAPAction: "" Content-Length: 531
答案 0 :(得分:1)
找到此链接
http://www.lampjunkie.com/2010/03/get-phps-soapclient-to-speak-with-javas-jax-ws/
我的架构已命名为params
<xs:schema version="1.0" targetNamespace="http://my.namespace/"><xs:element name="getReports" type="tns:getReports"/><xs:element name="getReportsResponse" type="tns:getReportsResponse"/><xs:complexType name="getReports"><xs:sequence><xs:element name="arg0" type="xs:string" minOccurs="0"/></xs:sequence></xs:complexType><xs:complexType name="getReportsResponse"><xs:sequence><xs:element name="return" type="xs:string" minOccurs="0"/></xs:sequence></xs:complexType></xs:schema>
必须添加
$addRequest = new stdClass();
$addRequest->argO = "String I was sending";
$response = $client->add($addRequest);