Hello
I'm trying to create a web service which retruns a value,I'm using this code and need some help with the php code.
1-I uploaded 'lib/nusoap' from http://sourceforge.net/projects/nusoap/
2-Then i created Request.php contains
<?php
require_once('lib/nusoap.php');
$c = new soapclient('http://www.o-survey.com/ragy/Response.php'); //creation of object for soap
$name = $c->call('getfirstname',array('id' => '1'));
echo "The firstname for id '1' is --- ". $name;
?>
3-Then i created Response.php contains:
<?php
function getfirstname($id) {
return "ragy";
}
require('lib/nusoap.php');
$server = new soap_server();
$server->configureWSDL('details', 'urn:firstname');
$server->register("getfirstname",
array('userid' => 'xsd:firstname'),
array('name' => 'xsd:lastname'),
'urn:lasstname',
'urn:lastname#getfirstname');
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA)
? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
?>
4- When executing the "http://www.o-survey.com/ragy/Request.php"
the error appear :
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@o-survey.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.