B
Bob Bedford
I've a PHP running on Apache server on WinXP (developpement machine).
I've created a webservice using NuSoap (the hello example, in
http:\phpserver\webservices\V1\webservice.php) I've tried with a PHP client
on the same machine, and it works fine.
What I'm looking for, now, is to access this webservice from a IIS web
server (HTML/ASP) without using PHP.
How can I do it ???
Here is the PHP client code, maybe it may help:
<?php
// Pull in the NuSOAP code
require_once('webservices/V1/nusoap.php');
// Create the client instance
$client = new
soapclient('http://192.168.1.2/webservices/V1/webservice.php');
// Call the SOAP method
$result = $client->call('hello', array('name' => 'Master'));
// Display the result
print_r($result);
?>
Please help.
BoB
I've created a webservice using NuSoap (the hello example, in
http:\phpserver\webservices\V1\webservice.php) I've tried with a PHP client
on the same machine, and it works fine.
What I'm looking for, now, is to access this webservice from a IIS web
server (HTML/ASP) without using PHP.
How can I do it ???
Here is the PHP client code, maybe it may help:
<?php
// Pull in the NuSOAP code
require_once('webservices/V1/nusoap.php');
// Create the client instance
$client = new
soapclient('http://192.168.1.2/webservices/V1/webservice.php');
// Call the SOAP method
$result = $client->call('hello', array('name' => 'Master'));
// Display the result
print_r($result);
?>
Please help.
BoB