JaxWs サービスを作成しました。ユーザーは PHP クライアントでそれを呼び出そうとしていますが、パラメーターは文字列のみです。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 スニペット
<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