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
2 answers

After creating a wcf service how do I tell whether its restful or soap from the wsdl?

I created a service and I'm presented with a page saying: You have created a service. To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line …
Exitos
  • 29,230
  • 38
  • 123
  • 178
5
votes
2 answers

PHP SoapClient type mapping behaves differently

I've a web-service function which is returning an array of items to a PHP-Client. Depending on the number of items, the PHP return type is differently. If the function returns one item the PHP type is stdClass if the function returns more than one…
Christian Ammer
  • 7,464
  • 6
  • 51
  • 108
5
votes
0 answers

JAX-WS dynamic webservice url

Here's my requirement for a university class: I have to develop a web service that different hotels must implement. For instance they all have to implement the method boolean checkAvailability(Room r, Date from, Date to). So I store their web…
arg20
  • 4,893
  • 1
  • 50
  • 74
5
votes
2 answers

Pass data from a SOAP handler to a webservice server Class

I have a Spring boot SOAP services with cxf, and my Consumers are passing me SSO token in http header.. I am able to retrieve the SSO token using JAX-WS handler. I am saving that SSO token into handler class level variable, and after control going…
tiktok
  • 279
  • 2
  • 23
5
votes
1 answer

How to do a SOAP request for EUR-Lex API with R?

How would you do a SOAP request for EUR-Lex's API using R? EUR-Lex is an EU database containing many legal acts. In the manual for their web services, they describe their SOAP system but not how to use R for it. I've tried for a while now to employ…
Will M
  • 692
  • 9
  • 20
5
votes
4 answers

Magento SOAP WebService -> User Login

I'm writing a web service for communication between a mobile device and magento, i'm using SOAP webservices which Magento provides, however, i'm lost at User Authentication, i need to authenticate my system user (not api user). Is there any clue…
Syed Absar
  • 2,274
  • 1
  • 26
  • 45
5
votes
1 answer

Cannot Deserialize a SOAP Message programmatically

I get the following exception when I try to deserialize a soap message. I am doing it this way cause I have the response files I want to reuse in testing. I cannot use a real service or the like as it does not fit the architecture for the testing…
aqwert
  • 10,559
  • 2
  • 41
  • 61
5
votes
1 answer

Python and SOAP

What is the best library that can be used to create a SOAP Server - Client with Python or implement client that can talk to SOAP Server ???
ifixthat
  • 6,137
  • 5
  • 25
  • 42
5
votes
3 answers

Make asynchronous SOAP call in Spring WebFlux

I have a Reactive Spring Application using WebFlux with a REST API. Whenever a user calls my API, I need to make a call to a SOAP service which exposes a WSDL, perform some operation and return the result. How do I combine this call to a SOAP…
ChrisDekker
  • 1,584
  • 18
  • 39
5
votes
2 answers

Could not handle mustUnderstand headers: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security. Returning fault

I went through links like: SOAPFaultException "MustUnderstand headers (oasis-200401-wss-wssecurity-secext-1.0.xsd) are not understood", but still struggling. I'm using Spring Boot v2.2.2..RELEASE and SOAP project. I am loading two different WSDL…
PAA
  • 1
  • 46
  • 174
  • 282
5
votes
4 answers

WCF Wait for operations to finish when closing ServiceHost

I create a WCF SOAP server with an operation that takes some time to perform: [ServiceContract] public interface IMyService { [OperationContract] string LongRunningOperation(); } [ServiceBehavior( ConcurrencyMode =…
Álvaro Iradier
  • 295
  • 2
  • 12
5
votes
1 answer

How to lock virtualbox to get a screenshot through SOAP API

I'm trying to use the SOAP interface of Virtualbox 6.1 from Python to get a screenshot of a machine. I can start the machine but get locking errors whenever I try to retrieve the screen layout. This is the code: import zeep # helper to show the…
Jacopofar
  • 3,407
  • 2
  • 19
  • 29
5
votes
0 answers

python suds - Insert raw xml node into factory-created object

In python suds, how do I insert a Raw XML node into an object created via the factory.create method, while still maintaining attributes? Is there some _child field I could use? Basically, how do I use an s:any child with Raw()? What I need to…
Dan
  • 2,157
  • 20
  • 24
5
votes
1 answer

enum value not transmitted in soap request

I have a webservice which is referenced in my project by webreference. Here is the description of an enum in the wsdl file :