Posts by renatomaraujo • 41 points
4 posts
-
2
votes2
answers1924
viewsA: Web Service Nusoap Return Error
I solved it this way. $rawPostData = file_get_contents("php://input"); return Response::make($server->service($rawPostData), 200, array('Content-Type' => 'text/xml; charset=ISO-8859-1'));…
-
1
votes2
answers1924
viewsQ: Web Service Nusoap Return Error
I’m developing a web service with Nusoap on Laravel 4. The class I’m wearing is the https://github.com/noiselabs/NoiselabsNuSOAPBundle Server Route::any('ws/server', function() { $server = new…
-
0
votes2
answers233
viewsA: Nusoap using Laravel 4
After some research I managed to solve. I used Laravel’s Response::make(). Route::any('x/ws/hello', function(){ $server = new \soap_server; $server->configureWSDL('server.hello',…
-
1
votes2
answers233
viewsQ: Nusoap using Laravel 4
I’m creating a Webservice in the Laravel with the library Noiselabs. Route::any('x/ws/hello', function(){ $server = new \soap_server; $server->configureWSDL('server.hello', 'urn:server.hello');…