gpt4 book ai didi

java - Jax Ws 与 PHP 客户端始终发送 Null parm

转载 作者:行者123 更新时间:2023-12-01 14:52:40 25 4
gpt4 key购买 nike

我创建了一个 JaxWs 服务。用户尝试使用 PHP 客户端调用它,唯一的参数是一个字符串。当我使用 Eclipse Web 服务浏览器(测试器)时,一切都很好。当用户尝试使用 PHP 时,我在方法中收到一个空参数。我还没有对 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 片段

<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 客户端

     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

最佳答案

找到这个链接

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);

关于java - Jax Ws 与 PHP 客户端始终发送 Null parm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14687948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com