Most voted "web-service" questions
Web services can be defined using Web Services Description Language and consumed via Simple Object Access Protocol, or follow the REST model.
Learn more…901 questions
Sort by count of
-
137
votes3
answers101378
viewsWhat are the main differences between SOAP, REST?
What are the main differences between these types of Web Service? In which cases apply? Is there any difference in performance?
web-serviceasked 10 years, 7 months ago Laerte 22,243 -
45
votes6
answers10103
viewsWhat is a Web Service?
Lately I’ve heard a lot about Web Service. Web service is a solution used in systems integration and communication between different applications. Allow applications to send and receive data in XML…
-
28
votes2
answers13710
viewsWhat codes does the Central Bank currency listing webservice accept?
I had to develop a routine that would take the sale price of the dollar and insert it into a table in the bank. The central bank provides a webservice where it is possible to make the queries. For…
web-serviceasked 9 years, 8 months ago Tiago Crizanto 1,192 -
22
votes2
answers30102
viewsWhat is WSDL (Web Services Description Language)?
Related to: Web Service Type Differences: SOAP, REST, XML What is WSDL? What is your relationship with REST and SOAP? Where I find the WSDL documentation?…
-
16
votes2
answers12657
viewsHow does the site take off.com perform the search for ticket prices?
I am thinking of creating some services to monitor the prices of plane tickets and would like to know how the site takes off.com performs its research. I mean, what kind of strategy does it use,…
web-serviceasked 10 years, 8 months ago Acaz 279 -
15
votes4
answers3728
viewsJava client library for REST web services
I am in a project in which it is necessary to access a web service REST and I would like to know which is the most used Java library to access this type of resource in an easy way. I know it is even…
-
14
votes2
answers3560
viewsHow to calculate the freight of various products
I am developing a virtual store and I need to implement the freight calculation for the purchase, I managed to make this implementation but the problem is that with a single product in the cart I…
-
12
votes1
answer789
viewsWhat is SOAP technology?
I’ve been following a project (a high school news site) where multiple languages (PHP to build the site where the news is posted and android, Ios, c#, where they will be accessed by the site…
-
11
votes5
answers1091
viewsPros and cons of a 100% HTML/Javascript web application
I am seriously thinking of developing a web application, using only HTML/Javascript on client-side for performance gain and by which, any and all necessary communication with the server is made…
javascript html web-service web-application single-page-applicationasked 9 years, 5 months ago Iago Correia Guimarães 799 -
11
votes1
answer1173
viewsWhat is the difference between WCF and a Web Services?
I’ve always worked with Web Services, but lately I’ve seen a lot if you talk about WCF, hence my doubt. What’s the difference between WCF and a Web Services? Is there some improvement between one…
-
9
votes2
answers2136
viewsWeb API x Webservices
Web API was created to better replace a Webservice? If not, what is the exact difference between the two and when to use one or the other?
-
9
votes2
answers2293
viewsWhat is the best (fastest) way to read a file from a web server?
I need to read a file on a web server, but when I need to store the content in an array of bytes it is taking too long. Does anyone know a faster way to do this? Follow my code. Thanks in advance.…
-
9
votes1
answer4061
viewsWebservice Delphi Soap with authentication
I’m using Delphi to read a web service from an insurance company. It happens to come in XML format in SOAP. I import the WSDL I can get the methods. But to connect to the Web Service I have to send…
-
8
votes2
answers4221
viewsWhat is the difference between SOAP 1.1 and SOAP 1.2?
When I use SOAP UI ( http://www.soapui.org/ ) and I refer to my asmx webservices, it always creates the interface of operations for SOAP 1.1 and 1.2. And I don’t understand what the practical…
-
8
votes1
answer856
viewsWhat is the correct way to declare an asmx Webmethod in C# to receive POST requests with parameters?
I’m trying to set up a file upload process for a web service done on c# .asmx, but I am not able to manipulate the sending of parameters through the method POST. This is the webMethod I created:…
-
8
votes1
answer2249
viewsWhen and where to use webservice?
I’m with an android app project that is similar to Easytaxi (has nothing to do with taxi, but follows this logic of using map to locate "taxi drivers" in real time, with account registration and…
-
8
votes1
answer417
viewsLimit Webservices access to two domains
How do I limit access to a web service to only two domains? I would like only the domain: http://"ServidoX".ipesp.gov" and the http://"ServidoY".ipesp.gov" can consume this service. I’ve tried…
-
8
votes3
answers1511
viewsHow to send an object via SOAP web service
To send a primitive data is simple, but when it comes to complex data as shown below, an exception is thrown: java.lang.Runtimeexception: Cannot serialize: Person{name=given, address=given etc...}…
-
8
votes1
answer3472
viewsUnable to connect to remote server - When consuming C#webservice
I have an application developed in C# that consumes a webservice also in C#. In some cases (not always and not everywhere/customers) when consuming the webservice i get the following error: Unable…
-
8
votes2
answers3923
viewsRun parallel process in PHP
I own a Web service that is consumed by some applications. On the Web service there must be the use of API of Amazon and perform a process whenever a record change is made via Web service. Initially…
-
8
votes5
answers19908
views.NET C# IIS Request cancelled: Failed to create secure channel for SSL/TLS
Gentlemen, I am trying to communicate with the recipe/SEFAZ server using an A1 certificate through an MVC5 C# application on an IIS 8 server, in the pool with my user identity. The certificate is…
-
8
votes2
answers3639
viewsValidation of digital signature
I am developing a software integration with the legal note webservice for issuance of electronic tax notes of the city of Porto Alegre. After some difficulties I was able to fine tune the xml so…
-
8
votes1
answer1408
viewsWebservice returns to Soapui, but does not return to PHP
I am consuming a SOAP Webservice and I am found the following problem: Webservice has two functions. In PHP, using the Soapclient class, I created the client and consumes the first function without…
-
8
votes1
answer2537
viewsConsume Webservice Nfedistribuicaodfe - VB.NET or C# - Manifestation/Download Nfe
On the Nfe Nacional website (http://www.nfe.fazenda.gov.br/portal/webServices.aspx?tipoConteudo=Wak0FwB7dKs=) i already have a software made in VB.NET that consumes the WEBSERVICES (NfeConsultaDest…
-
7
votes5
answers9265
viewsSearch judicial process data on the TJSP website
I am developing an ASP.NET application with C# that will need to consult the proceedings of online lawsuits. So far the only way I could find to get this information was to do the direct…
-
7
votes1
answer1637
viewsHow can I test authenticated webservice?
Hello, I have an authentication service already mounted in c# and wanted to do any test with it. It can be a webform page, which returns a positive or negative, or a class c# even if it runs per…
-
7
votes1
answer2836
viewsDifferences about WCF, Webservice and Webapi with Asp.net?
I will create a service to make my company’s data available to a client. But I am evaluating the creation of the services and I came across this technical doubt. I know there are differences between…
-
7
votes1
answer664
viewsSOAP communication error. Lack of XML tag ending character
It took me a while to implement communication with Webservices SOAP in legacy applications written in Delphi 6. The Webservices I needed to communicate with these systems were written in Delphi…
-
7
votes1
answer393
viewsAjax function does not pass the Success
My function calling my web service var email = document.getElementById("email").value var senha = document.getElementById("senha").value $.ajax({ url:…
-
7
votes2
answers927
viewsReturn reading in JSON
I can read the return of json in the format [{"celular":"123456","_id":"1"}] The code that works with the json above is this: public static void MakeJsonArrayReq() { JsonArrayRequest jreq = new…
-
7
votes2
answers1075
viewsSend camera image to server by Retrofit
I learned how to send a picture of the folder drawable to my network server using lib Retrofit, but I’m not getting it from a ImageView, received from camera capture. I create a class that converts…
-
7
votes1
answer3469
viewsConsume Pje web service
I need to consume the progress of a process using the web service provided by Pje. I am following the guidelines described in: http://www.pje.jus.br/wiki/index.php/Tutorial_MNI According to the…
-
6
votes1
answer1212
viewsIs it possible to create a Rigger that invokes a web service?
I am working on the integration of two databases. It is a system that needs the status of employees in HR. For performance reasons, I can not point out all queries that depend on employees for the…
sql sql-server web-service integrationasked 10 years, 10 months ago Guilherme de Jesus Santos 6,566 -
6
votes1
answer502
viewsOrchestration web service
On many websites and articles, the term orchestration of services is displayed. But what it means to orchestrate services and processes in the terminology of web services?
-
6
votes1
answer591
viewsQuery a web service every 1 minute
I have a Web Service in JSON, which I am consulting through a PHP page and saving the data in a Mysql database. This Web Service contains information from some sensors and, every 1 minute wanted to…
-
6
votes1
answer1391
viewsConnection with Webservice SOAP WSDL with XML return
I have the following code that works perfectly. The return of the webservice is a XML, but the return I’m getting is a string. What should I do to receive the XML as return and not a string? $client…
-
6
votes1
answer566
viewsConsuming Webservice with large data volume
I have a demand where I need to import a file JSON with 65k of records for my app Android,after calling my service URL REST the app starts importing the data but crashes after some time, I would…
-
6
votes1
answer3999
viewsHow to consume a SOAP Webservice with Angularjs?
Well, I have a SOAP Webservice that is consumed normally by a PHP client, working perfectly... by ajax this php consumption and populate my template.. My current application makes the following…
-
6
votes2
answers784
viewsWhat is the best way to create a mobile application that communicates with a Webserver?
I’m developing an app mobile which should contain the same content of the website, and it is necessary that the same database (Mysql) used by the site is also used by the mobile application. I…
-
6
votes1
answer933
viewsInclusion billet box
Friends, I am trying to include a billet in the Box Webservice, however, when using the layout passed in the documentation, I am not successful. The error is this: (500 Internal Server Error)…
-
6
votes1
answer67
viewsIs there a correct way to pass parameters to search?
I am making a Restfull application and it occurred to me the following doubt: "Am I passing parameters in the correct way for this method?" The method in question is this:…
-
5
votes2
answers287
viewsHow to use the Afnetworking 2.0 library synchronously?
I would like to call a Rest service using the library AFNetworking. How to make a call synchronously, ie wait for the return of the webservice? For example: Method that will return a car object:…
-
5
votes1
answer1219
viewsWhat is service granularity?
What is service granularity in SOA? What is the difference between fine and coarse granularity?
-
5
votes0
answers12120
viewsIs there a free database for product barcodes?
I’m making an app that is related to supermarket products, and a future possibility is that, instead of the user searching by product name, he can also use the mobile phone to scan the barcode. How…
-
5
votes2
answers1610
viewsAndroid with PHP Web Service
Someone has an example of what it takes to recover data from an external database without using JDBC ?
-
5
votes1
answer529
viewsHow to remove json xml encapsulation returned by Webservice
I created the following method: [WebService(Namespace = "http://myDomain.com.br/PublicacaoService")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]…
-
5
votes2
answers699
viewsHow to send a SOAP in C?
How do I send a C SOAP? I have a Web Service that consumes SOAP and have to send that SOAP in C. How can I do that? Is there an API or I have to create a library?
-
5
votes3
answers6760
viewsWhen is the use of an Enterprise Service Bus (ESB) recommended?
I am at the beginning of the development of a system that provides communication with some other systems through Web Services. Now our system will be the provider of services, or consumer of…
-
5
votes1
answer2184
viewsNfs-e Belo Horizonte XML signature error
I am developing the integration of a system to issue Nfse to Belo Horizonte are happening 2 situations that only with this city that I developed are happening, we have integrated several…
-
5
votes1
answer6498
viewsHow to Build a Webservice to Synchronize Android and Mysql Sqlite Database
I built an android app that stores basic information about a contact in Sqlite: Name, Telephone, E-mail, Address among others. I searched a little and from what I understood, what I can do is use a…