Most voted "soap" questions
SOAP (Simple Object Access Protocol) is a protocol for the exchange of information structured on a decentralized and distributed platform.
Learn more…222 questions
Sort by count of
-
27
votes5
answers1106
viewsIs SOAP safer than REST?
When implementing online billing software, I asked the responsible company if there was a REST version of the API. The answer was that they did not use REST due to security, that SOAP would be safer…
-
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?…
-
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…
-
10
votes1
answer10326
viewsConnect the webservice with SOAP in PHP
I’m trying to connect to the webservice but it’s not working. wsdl address is http://91.205.172.97/globalsight/services/AmbassadorWebService?wsdl PHP code: <?php if (!class_exists('SoapClient'))…
-
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
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…
-
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
votes2
answers930
viewsUnderstanding the documents of a SOAP web service
I am working with a system that offers integration through web service, more precisely SOAP. He provides me with some Urls, which, from what I understand, provide access, describe and document the…
-
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
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
answer720
viewsSOAP WCF request in PHP
I am trying to consume a web service from a shipping company. However, PHP is not mounting the request correctly. Request in PHP: <?php $client = new…
-
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…
-
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
votes1
answer666
viewsSend xmlns:xsi and xmlns:xsd namespace in the webservice Soap response
I have a webservice developed in java working perfectly, only that I need to send the namespace xmlns:xsi and xmlns:xsd as shown in the example below: <soap:Envelope…
-
5
votes1
answer3648
viewsHow to insert Access-Control-Allow-Origin in the header
Dear Friends, I am making an ajax request by JQuery.Ajax(), to consume a WS SOAP, the envelope is OK but when I make the call I get in the browser "No 'Access-Control-Allow-Origin' header is present…
-
4
votes2
answers943
viewsCapture SOAP request
I would like to log all Soap requests exactly as they arrived on my server. There is a way this can be done via c#?
-
4
votes1
answer121
viewsHow to create an Event on a Webservice
I have a Webservice that has a method that records a new entry record and updates the list that contains those entries. Now I need the customer to sign up for a Webservice event so that whenever a…
-
4
votes1
answer1217
viewsWhat problems can occur when using the "http://tempuri.org/" namespace on our webservices?
When creating a webservice, in my case using ASP.NET, I always change the default namespace to something related to my project, usually using the website URL for this. But lately I have had the need…
asp.net web-service soap namespace xml-namespacesasked 10 years ago Guilherme de Jesus Santos 6,566 -
4
votes1
answer476
viewsREST - Http x Json
I did some research and have some questions about REST: Http is Rest? JSON and XML are only the return format of a Rest operation? REST x Web Services: are the same things? SOAP would be the…
-
4
votes1
answer86
viewsError while Browsing Web Wervice
I am doing a query of customers in a web service, step the key to see what it returns me tells that I did not pass the key, what I may be doing wrong in the method? That’s the .xml of consultation…
-
4
votes1
answer205
viewsWCF Receive Reply in UTF-8
I’m consuming a Webservice by means of a Console application. I receive an object as a return and in this object I need to read an attribute called ReturnMessage. But the text is disfigured, the…
-
3
votes1
answer971
viewsHow to recover a soapObject from a return from the webservice
androidHttpTransport.call(SOAP_ACTION4, envelope); SoapObject result = (SoapObject) envelope.getResponse(); System.out.println(result.getProperty("nmConsultor")); return result.toString(); In case I…
-
3
votes1
answer972
viewsHow to send data through the soapUI tool and how to do manual?
I would like to send information through the soapUI tool to my webservice but I don’t know how. Many told me to do it manually and I would like to know how to do it both ways !
-
3
votes2
answers1991
viewsApache/PHP server does not respond while making a SOAP request
I am working on a PHP application that consumes a third-party Web Service through SOAP requests. But something that’s getting in the way is that while one page is making a SOAP request no other page…
-
3
votes1
answer1277
viewsError with SOAP webservice using PHP
I’m trying to learn how to make one webservice using this tutorial: http://www.sitepoint.com/web-services-with-php-and-soap-2/ But my server is returning the following: Error Response not of type…
-
3
votes1
answer111
viewsHow to overcome Same-Origin Policy and consume a SOAP webservice with Javascript
I’m building a mobile app using Phonegap for iOS, Android and Windows Phone and need to connect to a SOAP webservice for various app features. I have tried to do it using Ajax, but I always have the…
-
3
votes1
answer271
viewsWeb service security attributes
You can use the AuthorizeAttribute in asmx, Soap or Rest? webservice and custom attributes, such as the below (example only)? [System.AttributeUsage(System.AttributeTargets.Class |…
-
3
votes1
answer868
viewsError 400 when sending request to Esocial (C#)
I am receiving error 400 when executing SOAP request on eSocial servers as a response. The error occurs in this command: using (HttpWebResponse resposta = request.GetResponse() as HttpWebResponse) I…
-
3
votes1
answer1099
viewsGet Data from Webservice in C#Action
I have an application that accesses third-party Webservice. To improve the testing process, I am setting up a website to simulate Webservice. This site consists of several Actions, which return XML,…
-
3
votes0
answers349
viewsSet PHP Soapclient custom parameters
I am consuming an external webservice via PHP and the same requests authentication in a different way, the login and password has to be passed within XML. But I can’t authenticate. The call for…
-
3
votes1
answer332
viewsDelphi class with optional full-type field
The question is: how should I build my TPESSOA class so that the _id_city field can be null. Database Create Table PESSOA ( ID INTEGER NOT NULL, NOME VARCHAR(100) NOT NULL, ID_CIDADE INTEGER) No…
-
3
votes1
answer927
viewsImplement Vbscript Post Reverse Logistics Webservice
I am trying to implement the mail reverse logistics webservice in vbscript but always receive as response the error "Error Reading Xmlstreamreader." Follow the code that is being used. I am still in…
-
3
votes1
answer2276
viewsWhat’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;…
-
3
votes2
answers803
viewsSOAP request showing error
I’m trying to perform a SOAP request on http://www.ieptb.com.br/ws/serverTabelionatos.php. However I am not able to successfully complete the request. The only information you provide me is: Name:…
-
2
votes1
answer1110
viewsHow does Webservice SOAP/Rest work with JAX-WS?
I spent a whole day studying and finally managed to perform authentication with Webservice SOAP using JAX-WS, using Eclipse generated client. When adding the password and password to the SOAP…
-
2
votes0
answers86
viewsCoupon Magento API Soap
I have a problem with the Magento Coupon API when I do: $couponCode = "test"; $resultCartCoupon = $proxy->call($sessionId, "cart_coupon.add", array($shoppingCartId, $couponCode)); I always have:…
-
2
votes1
answer323
viewsWebservice SOAP uses XML only?
Working some time with webservice for mobile application realized that SOAP uses XML and REST uses JSON. Using SOAP means I have to use only XML?…
-
2
votes1
answer883
viewsCapture SOAP Header with PHP
Good Afternoon I am consuming a WSDL of a Webservice where after login and after each request as XML returned below me is presented the following tags in the head of Soap <Sequencia> 1 </…
-
2
votes1
answer47
viewsHow to manipulate the returned object by envelope.getresponse()?
I’m having difficulty to catch an object that resume my connection with the server, I log in and it returns me a getResponse. response = envelope.getResponse(); In this report comes the client code…
-
2
votes1
answer1199
viewsWhen I use an "Endpoint" class to publish a Web Service, where is the WSDL created?
For example, I have 3 classes in my Web Service: 1 - A SEI (the web service interface): package calc; import javax.jws.WebService; import javax.jws.WebMethod; import javax.jws.soap.SOAPBinding;…
-
2
votes1
answer1029
viewsPHP - Consume webservice with XML via SOAP
I’m having problems with array in php. I need to send an xml via Soap to the webservice with some product items, but a tag is bringing me questions. The wsdl manual has an xml like this:…
-
2
votes1
answer180
viewsWhat would be the format of the data transmitted by a SOAP web service?
In web services that use the REST architecture, the format of the data that is trafficked by the network is XML or JSON, in some cases may be both. However, I don’t know what is the format of the…
-
2
votes1
answer45
viewsAlternative to Nusoap Class
I’m using the Nusoap class to make a webservice. However, when we have the php version for 7.0 or higher, I have problems with codes that are deprecated for this version. I wonder if there is an…
-
2
votes1
answer427
viewsPHP - Soap error
Guys good morning, I have a problem with "SOAP" I confess that I am very lay, I already took a look on the internet and I could not identify where this the problem, I wonder if someone could give a…
-
2
votes1
answer255
viewsEFD-Reinf via Postman -> Returns MS0028 error ("The loteEvents parameter was not reported in the service call")
I am using the Postman to understand exactly what needs to be sent in http request. Authentication: In the program Postman I finished the menu Files -> Settings, flap Certificates and informed…
-
2
votes1
answer335
viewsweb service nusoap hangs with no ascii characters
I developed a web service on my php machine with NUSOAP and it worked cool, both by calling for my own application, and by testing with the SOAPUI. I transferred the web service to the server and…
-
2
votes1
answer2118
viewsHow to fill an xml (request of a WS SOAP) with Javascript
I have an Ajax function doing a POST for a SOAP webservice and I need to insert values into the request XML elements based on what the page user inserts into an input text. How can I do that? My…
-
2
votes1
answer61
viewsWhat is the correct way to legitimize a particular user through Identity with Soap web service?
Initially I tried to add snippets that are related to Identity and I used the Find method with password and login, but I was not successful. using System; using System.Collections.Generic; using…
-
2
votes1
answer81
viewsXpath does not recognize XML elements
I have an XML. But something is happening that I don’t understand. When trying to use Xpath to return the Author elements, using //Author (tested pathway…