php使用NuSoap产生webservice结合WSDL让asp.net调用(26)
来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:53 点击:次
// Create the client instance
$client = new soapclient('http://localhost/phphack/hellowsdl.php?wsdl', true);
// Check for an error
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
// At this point, you know the call that follows will fail
}
// Call the SOAP method
$result = $client->call('hello', array('name' => 'Scott'));
// Check for a fault
if ($client->fault) {
echo '<h2>Fault</h2><pre>';
print_r($result);
相关新闻>>
- 发表评论
-
- 最新评论 进入详细评论页>>