For easy and safe debugging of connection problems, we recommend the implementation of a "repeat" method in your web services end point. Ours lives at https://ws.valex.com.au/tests/soap/soapserver.php?wsdl
Effectively, the entire implementation of the method would simply be:
/**
* Repeat a string back
*
* @param string $input
* @return string $input
*/
public function repeat($input) {
return $input;
}
This allows people to connect easily to each other, and ensure what they send is correctly received.
It also could be used as a stub in your unit testing.
Recent comments
10 years 12 weeks ago
11 years 4 weeks ago
11 years 6 weeks ago
11 years 6 weeks ago
11 years 11 weeks ago
11 years 35 weeks ago
11 years 40 weeks ago
11 years 45 weeks ago
11 years 45 weeks ago
11 years 45 weeks ago