Questions tagged as 'webservice'

4
answers

because it is the error java.math.BigInteger can not be cast to java.lang.long?

I am trying to connect a web service application with MySQL but when I want to connect MYSQL server I get this error.              
asked by 14.04.2018 / 21:28
1
answer

problems generating a WebService

server.php require_once('DB.php'); $uri = "http://localhost/dwes18/distancia/E7/version1/web2"; $server = new SoapServer(null, array('uri' => $uri)); $server->setClass("DB"); $server->handle(); cliente.php header('C...
asked by 31.01.2018 / 15:59
2
answers

Consume SOAP Service that requires a digital certificate (AXIS2)

Good morning, I am developing an application to consume SOAP services. These services require a digital signature to authenticate. Can someone guide me? How I implement authentication using the electronic signature file. I used Axis2 to ge...
asked by 08.04.2017 / 19:26
1
answer

DELETE and PUT in AndroidStudio with HttpUrlConnection

I have a REST API from a user database made in NodeJS, the address to use the GET method is http://localhost:3000/users/ the method DELETE and PUT receive a parameter that is concatenated in the same address, http://localhost:3000/...
asked by 16.12.2017 / 22:29
2
answers

Can a json be sent via SOAP in PHP?

My question is Can you send a json for SOAP Native to PHP ? I present my case I have to do an integration with the Web Service of Correos Express. It turns out that they work with SOAP and json . When I try to send the order it shows...
asked by 14.11.2018 / 14:05
1
answer

Registration with RESTful API in java

I need to create a small application with java to allow users to register, I have to use a API RESTful and I would like to know the relationship between the registry that is stored in a database MySQL and API RESTful ....
asked by 23.06.2018 / 00:42
1
answer

How to show the route to follow in a web service?

I have been working with js and php, I have been asked to create a webservice where by means of AJAX ask for the coordinates to display them on a map with the Google API. All ready but I would like to know how to create a route to follow and...
asked by 18.07.2018 / 08:04
1
answer

Create web server at home and view it from another network different from mine (make the server public) [closed]

I would like to know how to make the web that I have installed on an Apache server locally can be seen on other computers that are not on my internet network, and I opened port 80 and configured the ip with DMZ but I can not make that only with...
asked by 26.05.2018 / 02:26
1
answer

Can PHP be programmed in a Windows web server? [closed]

I was reading that hosting companies usually offer two operating systems to choose from on the server, in the case of Linux you can use PHP and Python to mention some languages to use but in the case of Windows PHP, Python, Pearl or others can n...
asked by 16.06.2016 / 20:48
1
answer

How to send Parameter to Web Services and get results in XML

$client = new SoapClient("http://www.webservicex.net/airport.asmx?WSDL"); $result = $client->GetAirportInformationByCountry(array('Country' => $Country)); $xml = $result->GetAirportInformationByCountryResult;...
asked by 23.03.2017 / 21:12