Questions tagged as 'web-service'

4
answers

Pros and Cons of a 100% HTML / JavaScript Web Application

I'm seriously thinking of developing a web application, using only HTML / JavaScript in the client-side for performance gain and whereby any and all communication needed with the server is done through requests to a WebService (yes, it will con...
asked by 09.06.2015 / 19:08
1
answer

When and where to use webservice?

I have an android app project that is similar to EasyTaxi (it does not have anything to do with taxi, but follow this logic of using map to locate "taxi drivers" in real time, with account registration and everything ...). Well, I know Android v...
asked by 16.04.2015 / 06:24
2
answers

What is the difference between SOAP 1.1 and SOAP 1.2?

When I use the SOAP UI ( link ) and refer to my asmx webServices, it always creates the operations interface for SOAP 1.1 and 1.2. And I do not realize what the practical difference is. For me the result is the same. What's different about SO...
asked by 28.07.2014 / 14:04
2
answers

Digital signature validation

I am developing software for integrating with the webservice of the legal note for the issuance of electronic invoices of the city of Porto Alegre. After some difficulties I managed to fine-tune the xml so that it conforms to the standard, bu...
asked by 15.12.2015 / 12:57
2
answers

Return reading in JSON

I can read json's return in the format [{"celular":"123456","_id":"1"}] The code that works with json above is this: public static void MakeJsonArrayReq() { JsonArrayRequest jreq = new JsonArrayRequest(url, new Response....
asked by 11.10.2015 / 16:46
1
answer

What is the correct way to declare a WebMethod asmx in C # to receive POST requests with parameters?

I'm trying to put together a file upload process for a web service done in c # .asmx but I'm not able to manipulate the sending of parameters through the POST method. This is the webMethod I created: [WebMethod] [SoapHeader("UserAu...
asked by 22.08.2014 / 21:27
3
answers

How to send an object via SOAP Web service

To send a primitive data is simple, but when it comes to complex data like the one shown below, an exception is thrown:    java.lang.RuntimeException: Can not serialize: Person {name = given, address = given etc ...} Most of the tutorials...
asked by 09.01.2015 / 20:39
1
answer

Limit WebServices access to two domains

How do I limit access to one Web Service to only two domains? I would like only the domain: http://"ServidoX".ipesp.gov" and http://"ServidoY".ipesp.gov" to consume this service. I have tried to modify in Web.Config using the...
asked by 08.01.2015 / 13:45
2
answers

Run parallel process in PHP

I have a Web service that is consumed by some applications. On the Web service server you should use the Amazon API and execute a process whenever a change of record is made via Web service . Initially, I thought about running the Amaz...
asked by 31.03.2015 / 14:52
2
answers

Send camera image to server via Retrofit

I learned to send an image of the drawable folder to my server on the network using lib Retrofit, but I am not able to send a ImageView the camera. I create a class that converts the drawable image to bytes , which it will get from...
asked by 10.11.2015 / 12:42