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

WCF server and WS-Security to Java client (SoapUI)

I'm trying to add WS-Security to an existing service I have, where said service is accessed over TLS, and I've mostly succeeded in testing it with SoapUI. However I'm having a problem with the response coming back; even though the response looks…
Chris J
  • 30,688
  • 6
  • 69
  • 111
5
votes
1 answer

Which is current / legacy: or

I have to tool to generate soap requests and it can do so in two ways. Either generating the request beginning with: or with:
Martin
  • 11,577
  • 16
  • 80
  • 110
5
votes
1 answer

IEndpointBehavior ApplyClientBehavior method not executed after behavior added to Endpoint Behaviors

Given these two classes: public class InspectorBehavior : IEndpointBehavior { public MessageInspector MessageInspector; public void AddBindingParameters(ServiceEndpoint endpoint, System.ServiceModel.Channels.BindingParameterCollection…
Dean Kuga
  • 11,878
  • 8
  • 54
  • 108
5
votes
1 answer

java.lang.UnsupportedOperationException when set connection timeout to HttpComponentsMessageSender

I have a code to send messages to a server using SOAP. My code look like this: private WebServiceTemplate makeTemplate() throws Exception { WebServiceTemplate localTemplate = new WebServiceTemplate(); Jaxb2Marshaller marshaller =…
Conde
  • 785
  • 15
  • 31
5
votes
0 answers

Reference a local WSDL in a .NET Core SOAP service

I have a SOAP service defined by a local .wsdl file that I want to use to generate a .NET Core Connected Service in Visual Studio 2017. My ConnectedService.json looks something like this: { "ProviderId":…
Keith
  • 150,284
  • 78
  • 298
  • 434
5
votes
2 answers

Use SOAP 1.2 with WebServiceGatewaySupport in Spring

I am very new to Spring framework and i had some problem to create a simple SOAP client with Spring. Like a good newbie, i have used the Spring tutorial to make my SOAP client. You can find it here ->…
Siick
  • 491
  • 1
  • 7
  • 23
5
votes
1 answer

using javascript fetch API with a SOAP web service

I'm having a really rough time POST'ing to a SOAP web service using the fetch API. I worked out my CORS issues using a chrome plugin, but now it seems to be having an issue with the format of what I'm sending. I've tried implementing fixes I see in…
runelynx
  • 403
  • 2
  • 4
  • 17
5
votes
1 answer

Who is using XML Schema 1.1 version? Which parser versions support it? etc

The XML Schema 1.1 version of very good interesting features that are invaluable for my use cases. However, it seems to be relatively new. So I would like to get your feed back on the below questions before I finalize my decision. Which version of…
Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
5
votes
2 answers

Calling multiple methods with same name using SoapClient

I have a SOAP webservice and in SOAP UI I see that there are methods with the same name. So, for example, there are 2 CreateNewContact methods, one of which takes 3 parameters and the other 4. Below are the stubs generated by SOAP UI Method 1…
Krt_Malta
  • 9,265
  • 18
  • 53
  • 91
5
votes
2 answers

set valid CXF path in WebServices plugin settings

While trying to generate Java Code from WSDL file using CXF I am getting following error on UI set valid CXF path in WebServices plugin settings Attached is a screenshot of same:-
Vinay Prajapati
  • 7,199
  • 9
  • 45
  • 86
5
votes
2 answers

"E: Package 'php-soap' has no installation candidate" on php:7.0-fpm Docker image. Exit with code: 100

I suppose the title says it all... I have a container set from php:7.0-fpm image. In the Dockerfile, I run, apt-get update && apt-get install -y php-soap. However, it fails and returned 100 as exit code. Additionally, there is E: Package 'php-soap'…
notalentgeek
  • 4,939
  • 11
  • 34
  • 53
5
votes
1 answer

Consume Amadeus Soap4.0 in C#

C# Code: public static void CallWebService(string XmlText) { try { var _url = "https://nodeD1.test.webservices.amadeus.com/1ASIWMLFPNP";// "https://noded1.test.webservices.amadeus.com/1asiwmlfpnp"; …
Amarnath Balasubramanian
  • 9,300
  • 8
  • 34
  • 62
5
votes
4 answers

Convert Soap XML response to Object

i'm new to working with SOAP API's I have a soap response from an API
Ayo K
  • 1,719
  • 2
  • 22
  • 34
5
votes
2 answers

Serve SOAP from ASP.NET Core web method

In classic ASP.NET, we would simply mark a method with the WebMethod attribute to create a SOAP service method that could be called from an external app. How do we achieve the same with ASP.NET Core? It must be XML SOAP based. It must be compatible…
Christian Findlay
  • 6,770
  • 5
  • 51
  • 103
5
votes
4 answers

good book for wsdl, web services and php soap?

I'd like to learn web services (SOAP, WSDL) and I primarily code in PHP. Can you suggest any book, that uses PHP to teach these concepts?
user187809