我有一个用Java编写的Soap Web服务。
我从php调用此Web服务并将参数传递给Web方法,但在Web方法中获取null。
我的网络服务如下:
@SOAPBinding(style = Style.RPC)
@WebService(serviceName = "Test")
public class Test {
@WebMethod(operationName = "hello")
public String hello(@WebParam(name = "name1") String txt1, @WebParam(name = "name2") String txt2) {
System.out.println("Request : Hello " + txt1+" , "+txt2);
return "Response : Hello " + txt1 + " ! " + txt2;
}
}
WSDL的消息部分如下:
<message name="hello">
<part name="name1" type="xsd:string"/>
<part name="name2" type="xsd:string"/>
</message>
<message name="helloResponse">
<part name="return" type="xsd:string"/>
</message>
从php调用webservice如下:
$client = new SoapClient("http://localhost:8081/androidWebServiceTest/Test?wsdl"); // soap webservice call
$functions = $client->__getFunctions(); // getting list of web methods
$types = $client->__getTypes(); // getting types
$response = $client->hello(array("parameters" => array("name1" => "test1", "name2" => "test2"))); // calling web method hello
// dumping $functions, $types and $response
var_dump($functions);
var_dump($types);
var_dump($response);
此调用的输出如下:
D:\wamp64\www\WebService\netbeans\Monitor2Test\test.php:49:
array (size=1)
0 => string 'helloResponse hello(hello $parameters)' (length=38)
D:\wamp64\www\WebService\netbeans\Monitor2Test\test.php:51:
array (size=2)
0 => string 'struct hello {
string name;
}' (length=30)
1 => string 'struct helloResponse {
string return;
}' (length=40)
D:\wamp64\www\WebService\netbeans\Monitor2Test\test.php:53:
object(stdClass)[3]
public 'return' => string 'Response : Hello null ! null' (length=19)
服务器日志中的输出如下:
Request : Hello null , null
我尝试了不同的解决方案,但没有对我有用,仍然无法向web方法发送参数,总是在Web方法中获取null。
答案 0 :(得分:1)
试试这个:
<?php
// ...
$soapClient->hello([
'name1' => 'test1',
'name2' => 'test2'
]);
// or
$soapClient->__soapCall('hello', [
'parameters' => [
'name1' => 'test1',
'name2' => 'test2'
]
]);
答案 1 :(得分:1)
找到解决方案在我的头部撞了2天之后。问题是我的PHP脚本正在使用缓存的肥皂WSDL。在PHP脚本的开头添加以下行后,问题就解决了。
解决方案:[在PHP代码的开头添加此行]
ini_set("soap.wsdl_cache_enabled", "0");