Posts by Brunno Sena • 113 points
4 posts
-
3
votes1
answer2276
viewsQ: What’s the difference between SOAP and Nusoap?
I’m having trouble understanding the process of creating a Webservice in PHP. I created a server who makes the following call: <?php require_once "lib/nusoap.php"; $soap = new soap_server;…
-
4
votes1
answer1090
viewsQ: Return of webservice in XML - php
I’m trying to consume a Totvs webservice. My PHP code: // SOAP client $wsdl = 'http://localhost/TOTVSBusinessConnect/wsDataServer.asmx?wsdl'; $endpoint = array ( 'location' =>…
-
0
votes1
answer163
viewsQ: START_TAG error {http://schemas.xmlsoap.org/soap/envelope/}
When accessing a webservice made in php, on android presents me the following error: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope (position:START_TAG <html>@1:7 in…
-
3
votes0
answers117
viewsQ: Error Webservice PHP + Android
I have a webservice in php: <?php// incluyendo la librería de nusopa require_once('./nusoap-0.9.5/lib/nusoap.php'); // Configurando el web service $server = new soap_server();…