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

PHP SoapClient and a complex header

I have been trying for a while now, but I can't figure out how to use PHP SoapCLient in combination with a WSDL to form a complex header (that is, more complex than any tutorial I could find). The envelope that I need to send looks like this: (001)…
Rijmen
  • 51
  • 1
  • 1
  • 2
5
votes
0 answers

Add namespace for SOAP elements

When testing a SOAP web service with SoapUI, the tool generates the following soap envelope:
DevNow
  • 71
  • 1
  • 1
  • 8
5
votes
1 answer

Problems sending SOAP auth Headers in php

I am very new to SOAP (i.e. no clue!) I have been asked by a client to interact with an existing SOAP service that requires authentication done through my SOAP headers ( a simple username and password ) I have 3 methods at my…
Kevin Bradshaw
  • 6,327
  • 13
  • 55
  • 78
5
votes
3 answers

F# WSDL code generation

I'm using VS.NET 2010 integrated shell with F# and I'm trying to consume a soap web service... How do I go about generating F# source? I tried wsdl l:"C:\Program Files (x86)\FSharpPowerPack-2.0.0.0\bin\FSharp.Compiler.CodeDom.dll"…
jizugu
  • 65
  • 5
5
votes
1 answer

wsimport Two declarations cause a collision

I am trying to use wsimport on https://api.sendwordnow.com/webservices/v3/users.svc?wsdl. Here is the wsimport I am using. wsimport -B-XautoNameResolution -d C:\temp -extension -J-Djavax.xml.accessExternalSchema=all…
cbohannon
  • 231
  • 8
  • 18
5
votes
7 answers

SOAP UI - ERROR:Exception in request: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure

I am trying to hit the third party webservice using SOAP UI and getting below exception: ERROR:Exception in request: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure I dont have cacert or keystore from the third party…
AntonyManoj
  • 157
  • 1
  • 2
  • 8
5
votes
3 answers

How to learn SOAP?

I've created a web application with a mapping component. I want to use another geocoding service other than google, but all the ones I've found use SOAP to communicate with the website. I've never used soap before. Does anyone know of any good…
Bill
  • 5,478
  • 17
  • 62
  • 95
5
votes
2 answers

Parsing SOAP response using SAVON response.to_hash conversion method

I am having trouble parsing a SOAP response. Here is my code: require 'rubygems' require 'savon' client = Savon::Client.new "http://1.2.3.4/xyz/abcd/fsds.wsdl" res = client.query_unpaid_assesments do |soap,wsse| soap.namespaces["xmlns:SOAP-ENV"]…
Paula S.
  • 51
  • 1
  • 4
5
votes
2 answers

How to add soap header using node-soap or strong-soap in node.js

I'm trying to use an xml web service soap client in node and I'm not sure how to add the soap header for my example. Looking at strong-soap, there is a method addSoapHeader(value, qname, options) but I'm not sure what I need to pass in as qname and…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
5
votes
2 answers

WSHttpBinding TransportWithMessageCredential SecurityMode alters request

I am struggling with WCF binding configurations.I have third party service added as reference to my project. I was provided with some specifications. I need to use SOAP v1.2 so I figured that I need WSHttpBinding it's going to be https so I need…
Kapitán Mlíko
  • 4,498
  • 3
  • 43
  • 60
5
votes
1 answer

Workday request works in SoapUI but not in Postman

I am trying to call the Put_Background_Check operation of the Workday Recruiting web service. I have opened the WSDL file in SoapUI and successfully sent the following XML...
Imran S.
  • 935
  • 3
  • 15
  • 32
5
votes
0 answers

When do you use PHP's __soapCall() vs __doRequest()?

I want to clarify what the use cases are for PHP's SoapClient::__soapCall() vs SoapClient::__doRequest() methods. As I understand it, both send SOAP requests to a SOAP endpoint with the main difference being that doRequest() sends a string of raw…
MrCrinkle
  • 621
  • 1
  • 5
  • 6
5
votes
4 answers

Soap service works locally but on another server is raising ClassCast Exception

Can someone please help me with a strange problem? I have a service: @WebMethod @WebResult(name = "sendCustomerCommunicationResponse", targetNamespace = "......something/Underwriting/Correspondance/V1", partName = "Body") public…
Aditzu
  • 696
  • 1
  • 14
  • 25
5
votes
2 answers
5
votes
2 answers

SOAP response body has plain text without any nodes

How to handle SOAP message response like below? OK here are my definitions in WSDL:
jai
  • 21,519
  • 31
  • 89
  • 120
1 2 3
99
100