Questions tagged [soap]

Simple Object Access Protocol (SOAP) is a protocol specification for exchanging structured information in the implementation of Web Services.

The SOAP specification defines the messaging framework which consists of:

  • The SOAP processing model defining the rules for processing a SOAP message
  • The SOAP extensibility model defining the concepts of SOAP features and SOAP modules
  • The SOAP underlying protocol binding framework describing the rules for defining a binding to an underlying protocol that can be used for exchanging SOAP messages between SOAP nodes
  • The SOAP message construct defining the structure of a SOAP message

XML was chosen as the standard message format because of its widespread use by major corporations and open source development efforts.

Frequently Asked Questions

People often ask these questions related to SOAP:

27664 questions
5
votes
1 answer

using addMapping without the "i:type=" attribute in ksoap2 for android

I am using the envelope.addMapping function in ksoap2 and I need to make it generate items with no i:type attribute. This is the soap request my code generates
John Neville
  • 424
  • 1
  • 5
  • 17
5
votes
1 answer

How to return custom SOAP Error from Spring Boot Endpoint Service?

I have set up an Webservice application which receives and just logs SOAP requests from a third party. After logging a defined response has to be returned. This works without problems if there are no errors and the received SOAP requests match the…
Kosi2801
  • 22,222
  • 13
  • 38
  • 45
5
votes
1 answer

SOAP request leaves threads hanging

when I make a SOAP request I can see(in task manager) that my application's number of threads increases from 1(the main thread) to 8, this means 7 additional threads, this part is OK, however after the response is received from the service, the…
user497849
5
votes
1 answer

Serialize object c# to soap request

I want to serialize object to soap request. I create a Login request. I use a xml serialization. And I do not have ideas what I should to do to change this line: to this: I did this : using…
jpok
  • 143
  • 2
  • 2
  • 11
5
votes
2 answers

How to sign XML with xmlsec (or other more appropriate package)

I start with an XML like this one: myXML="""
Dean MacGregor
  • 11,847
  • 9
  • 34
  • 72
5
votes
2 answers

Zeep not recognizing all operations

When I do python -mzeep https://testingapi.ercot.com/2007-08/Nodal/eEDS/EWS/?WSDL the operations are blank. When I pull that up in a browser I can find many things under an tag. What am I missing? I'm not sure if this is relevant but…
Dean MacGregor
  • 11,847
  • 9
  • 34
  • 72
5
votes
0 answers

How to call SOAP web service in react native

I am new to react native development. In my application I need to call soap web service. In android I am using ksoap library for soap web service. But in react native is there any library or any sample code available?. I googled a lot for this but…
rams
  • 1,558
  • 7
  • 25
  • 48
5
votes
1 answer

Difference between SOAP binding and HTTP Binding in WSDL

I am using a WSDL which has two ports - one having soap binding and the other one having HTTP binding. From what I know, SOAP is a protocol for messaging but still uses HTTP as transport protocol. Then what is the difference between using these two…
mangesh
  • 511
  • 8
  • 24
5
votes
0 answers

Consume SOAP WS-Security with Node or PHP

I'm trying to consume a SOAP WS-Security service using Node and the request must to have a summary structure like:
5
votes
2 answers

SOAP Authentication via web service using jQuery

I have a Webservice that expects a soap header and return an authentication token. I have managed to post the soap header to the webservice using jquery. The problem is how do i make the browser to send the authenticated token on each request for…
Atif
  • 51
  • 1
  • 2
5
votes
3 answers

NetSuite SuiteTalk Token Authentication : Invalid login attempt

I am using the Netsuite web services (SuiteTalk) api but keep getting a Invalid login attempt error when using a tokenPassport. As the token authentication seems quite complex I will include all the steps i have taken. I have retreived the account…
user346443
  • 4,672
  • 15
  • 57
  • 80
5
votes
3 answers

SOAP error when connecting to NetSuite web services: "Namespace prefix ' soapenv' not defined"

I am getting the following error when connecting to a NetSuite production account, through the Suitetalk API: I don't have problems connecting to the Sandbox account for this client. I am connecting through a C# WCF project. I don't believe the…
Charl
  • 812
  • 1
  • 8
  • 22
5
votes
2 answers

How to convert SOAP response to XML or JSON format?

status
Chinmay235
  • 3,236
  • 8
  • 62
  • 93
5
votes
4 answers

Spring-ws SOAP 404 error

i did a tutorial after this -> http://java.dzone.com/articles/spring-ws-how when i go to url http://localhost:8080/myService/services/MemberDetailsRequest.wsdl , i get the static wsdl file.. but when i use SoapUI to import in the wsdl file and then…
user365314
  • 337
  • 4
  • 15
5
votes
0 answers

The http request is unauthorized with client authentication scheme 'Anonymous' when using credential identity

I'm trying to connect to a SOAP service using the WCF Client generator tool in Visual Studio 2017. However, when I make a request, I get this error: "The http request is unauthorized with client authentication scheme 'Anonymous'". I'm trying to…
andre_ss6
  • 1,195
  • 1
  • 13
  • 34