我有这段代码:
$soapClient = new SoapClient("https://soapserver.example.com/blahblah.asmx?wsdl");
// Prepare SoapHeader parameters
$sh_param = array(
'Username' => 'username',
'Password' => 'password');
$headers = new SoapHeader('http://soapserver.example.com/webservices', 'UserCredentials', $sh_param);
如何查看$ headers的xml代码?
好吧,如果你不理解我,请查看this question。正如您所见,请求显示“soap code”的人然后显示相应的xml。那就是我想要的,获取相应的xml代码。
此致
哈维
答案 0 :(得分:1)
为此你需要激活“跟踪”选项,如下所示:
$soapClient = new SoapClient("https://soapserver.example.com/blahblah.asmx?wsdl", array('trace' => 1));