Hi,
eigentlich ist es kein Problem. Also ich habe eine server.php und ne client.php. Beides funktioniert einwandfrei.
Das wichtige is nur wegen wsdl.
Bei der server.php kann man
ja
// Initialize WSDL support
$server->configureWSDL('hellowsdl', 'urn:hellowsdl');
// Register the method to expose
$server->register('hello', // method name
array('name' => 'xsd:string'), // input parameters
array('return' => 'xsd:string'), // output parameters
'urn:hellowsdl', // namespace
'urn:hellowsdl#hello', // soapaction
'rpc', // style
'encoded', // use
'Says hello to the caller' // documentation
);
// Define the method as a PHP function
function hello($name) {
return 'Hello, ' . $name;
}
sagen und dann bekommt man automatisch wenn man server.php?wsdl im browser eingibt die wsdl Datei angezeigt.
So ich will das auch für meine client.php.
Aber da funktioniert dieser aufruf nicht
// Initialize WSDL support
$client->configureWSDL('hellowsdl', 'urn:hellowsdl');
FEHLER:
Call to undefined function: configureWSDL
was muss ich denn sagen um auch für meine client.php die wsdl datei zu bekommen????
muss ich da was in der nusoap.php ändern???
eigentlich ist es kein Problem. Also ich habe eine server.php und ne client.php. Beides funktioniert einwandfrei.
Das wichtige is nur wegen wsdl.
Bei der server.php kann man
ja
// Initialize WSDL support
$server->configureWSDL('hellowsdl', 'urn:hellowsdl');
// Register the method to expose
$server->register('hello', // method name
array('name' => 'xsd:string'), // input parameters
array('return' => 'xsd:string'), // output parameters
'urn:hellowsdl', // namespace
'urn:hellowsdl#hello', // soapaction
'rpc', // style
'encoded', // use
'Says hello to the caller' // documentation
);
// Define the method as a PHP function
function hello($name) {
return 'Hello, ' . $name;
}
sagen und dann bekommt man automatisch wenn man server.php?wsdl im browser eingibt die wsdl Datei angezeigt.
So ich will das auch für meine client.php.
Aber da funktioniert dieser aufruf nicht
// Initialize WSDL support
$client->configureWSDL('hellowsdl', 'urn:hellowsdl');
FEHLER:
Call to undefined function: configureWSDL
was muss ich denn sagen um auch für meine client.php die wsdl datei zu bekommen????
muss ich da was in der nusoap.php ändern???
Kommentar