我是SOAP的新手,我遇到了问题(是的,我已经搜索过了 - 但是我似乎无法满足我非常简单的要求 - 发送单个XML字符串)并将一些输出发送到。 NET服务器匹配这个:
POST /someurl.asmx HTTP/1.1
Host: www.somehost.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://somehost.com/SubmitCalls"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SubmitCalls xmlns="http://somehost/">
<request>string</request>
</SubmitCalls>
</soap:Body>
</soap:Envelope>
我的nusoap代码如下所示:
<?php
require_once('../lib/nusoap.php');
$bodyxml = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SubmitCalls xmlns="http://somehost/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<request>
<?xml version="1.0" encoding="UTF-8"?>
<bXML xmlns="http://somehost/Schemas" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<From>
<UserName>some username</UserName>
<Password>some password</Password>
</From>
<Calls>
<Call>
<Reference>11111</Reference>
<Name>Joe Bloggs</Name>
<Tel1>02075574200</Tel1>
<Tel2>02075574201</Tel2>
<Tel3>02075574202</Tel3>
<Tel4>02075574203</Tel4>
<Tel5>02075574204</Tel5>
<CLI>08448220640</CLI>
<CallTime>09:00</CallTime>
<FileName>02075574200_1</FileName>
</Call>
<Call>
<Reference>11111</Reference>
<Name>Joe Bloggs</Name>
<Tel1>02075574200</Tel1>
<Tel2>02075574206</Tel2>
<Tel3>02075574207</Tel3>
<Tel4>02075574208</Tel4>
<Tel5>02075574209</Tel5>
<CLI>08448220640</CLI>
<CallTime>09:00</CallTime>
<FileName>02075574200_2</FileName>
</Call>
</Calls>
</bXML>
</request>
</SubmitCalls>
</soap:Body>
</soap:Envelope>
';
$client = new nusoap_client("somehost?WSDL",true);
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
exit();
}
$client->soap_defencoding = 'utf-8';
$client->useHTTPPersistentConnection();
$client->setUseCurl($useCURL);
$bsoapaction = "http://somehost/SubmitCalls";
$result = $client->send($bodyxml, $bsoapaction);
// Check for a fault
if ($client->fault) {
echo '<h2>Fault</h2><pre>';
print_r($result);
echo '</pre>';
} else {
// Check for errors
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Error</h2><pre>' . $err . '</pre>';
} else {
// Display the result
echo '<h2>Result</h2><pre>';
print_r($result);
echo '</pre>';
}
}
echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
echo '<h2>Client Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
echo '<h2>Proxy Debug</h2><pre>' . htmlspecialchars($proxy->debug_str, ENT_QUOTES) . '</pre>';
?>
(很明显,最终脚本中的所有somehost和用户名都是正确的)。我可以连接到WSDL,读取它,只有一个我感兴趣的方法(SubmitCalls),它只有一个部分,在WSDL模式中命名为'parameters'。上面抛出400 Bad请求错误 - 我出错的任何想法?
我尝试过使用PHP SOAP,但我似乎无法发送XML字符串作为SOAP请求的主体。在三天的最佳时间里,我一直在努力摆弄这个并阅读了大量的网页,但我仍然无法做到这一点。请帮助....如果你能告诉我如何使用这两个库来做这件事我会非常感激....
答案 0 :(得分:5)
您可以使用$ client-&gt; send()方法发送纯XML。
$raw_xml = "<Your_XML>...</Your_XML>";
$msg = $client->serializeEnvelope("$raw_xml");
$result=$client->send($msg, $endpoint);
您可以在此处看到示例:
http://itworkarounds.blogspot.com/2011/07/send-raw-xml-with-php-nusoap.html
如果这不起作用,您可以尝试使用CURL发布XML。
答案 1 :(得分:3)
- 这个 -
$xml = simplexml_load_string('<data>x</data>')
然后(nusoap)
$result = $client->call('host', array('parameter' =>$xml)
答案 2 :(得分:1)
不完全是问题的答案 - 但它现在已经解决了。服务提供者创建了一个新方法,除了允许XML文档而不是字符串之外,它在所有方面都是相同的。通过对$ bodyxml变量的内容进行一些小的改动,并发送到这个新方法,它似乎工作正常。
顺便说一下 - 任何想要调试SOAP应用程序的人都应该真正关注从Sourceforge获取SOAP UI。这真的帮助我理智地检查了我的问题,并为修复提供了一些有用的指示。
答案 3 :(得分:0)
您始终可以将xml作为字符串发送并拧紧库。不推荐,但在某些情况下更容易。
不要忘记Header("SoapAction: ...")