Hi!
I 've been able to run the soap server example. I've had to use this soap client:
<?php
require_once('nusoap.php');
$parameters = array('name'=>'Alvaro');
$soapclient = new soapclient('http://my-server/test.php');
echo $soapclient->call('hello',$parameters);
?> |
I would like to know why this code works and the next code doesnt work.
<?php
require_once('nusoap.php');
$parameters = array('name'=>'Alvaro');
$soapclient = new soapclient('http://my-server/test.php?wsdl','wsdl');
echo $soapclient->call('hello',$parameters);
?> |
I think that the problem is: " ["soapAction"]=> string(27) "http://inforalv/php/php.exe" " and " ["EndPoint"]=> string(27) "http://inforalv/php/php.exe" "
I have in my http.conf this values:
ScriptAlias /php/ "c:/php/"
Action application/x-httpd-php "/php/php.exe" |
Ddmitrie: In wich way are the values in your httpd.conf file?
Alvaro