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

Samsung TV remote control over UPnP

I searched for Samsung Smart TVs on the network by sending an M-Search Message. Got the response of all the services advertised by the TV on the network. Description Xml of one of the service is obtained at "http://192.168.0.1:7678/nservice/"
Malik Ahsan
  • 931
  • 7
  • 10
5
votes
1 answer

Handling SOAP Fault in Spring Boot WebServiceTemplate

I am new to SOAP, trying to run a sample SOAP client using Spring Boot How the SOAP fault, Exceptions or Errors are handled while using WebServiceTemplate public class CountryClient extends WebServiceGatewaySupport { private static final Logger…
Cork Kochi
  • 1,783
  • 6
  • 29
  • 45
5
votes
0 answers

How can I get the raw XML response from a .NET generated SOAP client rather than serialized objects?

I need to access the raw response XML from a .NET generated SOAP client (using svcutil). I believe that I can do this by intercepting it with a custom behaviour, but I don't really need the deserialized objects at all (and would rather not take the…
Brad Allan
  • 51
  • 1
5
votes
2 answers

org.xml.sax.SAXParseException; The prefix for element ; is not bound

I am trying to access my soap service method from postman... with following Body in the XML.
Jawad-Dev
  • 274
  • 10
  • 31
5
votes
4 answers

Has anyone used the new WCF REST Starter Kit successfully and would you use it again?

As the title suggests, I would like to see if this is something people are happy with. I have several projects, where I will dedicate some time in experimenting with different kinds of technologies web service related, preferably alternatives to…
Ric Tokyo
  • 6,577
  • 3
  • 30
  • 48
5
votes
1 answer

SOAP Webservice with Java - Framework?

which is the best framework for implementing and defining a SOAP web service with Java? Is it JAX WS? Basically, I want to send a business report (based on XML) from the client to the server. The server validates this report and sends back a status…
user212926
5
votes
2 answers

Is it possible to find the role of a netsuite employee using TBA as authentication method?

To generate the needed tokens - consumer key, consumer secret, token ID, token secret - we are creating an integration, and access tokens, and assigning them to an employee with a specific role that has access to TBA. (Refer to…
SpiritBob
  • 2,355
  • 3
  • 24
  • 62
5
votes
1 answer

Use the BusinessObjects repository as a datasource for a Crystal Report

I would like to use the information contained in BusinessObjects repository as a datasource for a Crystal Reports. Unfortunately, this information isn't persisted in a simple table structure--most of the properties are stored in encrypted, binary…
craig
  • 25,664
  • 27
  • 119
  • 205
5
votes
1 answer

.Net Core Connected Service with SSL Certificate

I am trying to make a request to a web service endpoint that utilizes an SSL certificate for communication. I have spent hours googling for an example but have come up with very little so far. I did manage to get the connected service to scaffold…
jamesamuir
  • 1,397
  • 3
  • 19
  • 41
5
votes
1 answer

How to generate UsernameToken for WS-Security?

I have some web service (wrote in Java) and I need create client for it in .NET. The WebService has WS-Security and need PasswordDigest. First of all, I've tested it in SoapUI and it's works for: POST…
1_bug
  • 5,505
  • 4
  • 50
  • 58
5
votes
0 answers

SAAJ0511: Unable to create envelope from given source error because of an unexpected character

I'm getting the following error while trying to parse a soap request which contains the "\u0001" character in data part of the xml body: com.sun.xml.internal.messaging.saaj.soap]: createEnvelope - SAAJ0511: Unable to create envelope from given…
blt
  • 61
  • 1
  • 3
5
votes
2 answers

Migration to Jakarta: ClassNotFoundException: com.sun.xml.internal.ws.spi.ProviderImpl

While migrating from Java 8 to Java 11 and switching from EE to the newest Jakarta libraries according to https://wiki.eclipse.org/New_Maven_Coordinates and Maven central, we get the following runtime exception in our (still SOAP-based) client…
user27772
  • 522
  • 1
  • 4
  • 18
5
votes
3 answers

How to send a SOAP request in javascript, like in SoapUI

I am currently working on a NodeJS project where I need to use some soap/xml/wsdl. The problem is that can't figure out how any of these works, so forgive my ignorance. Here is what I need: I have this WSDL site that I need to get some answers from.…
Chris
  • 85
  • 1
  • 4
  • 16
5
votes
1 answer

What is the correct way to build a SOAP request for complexType sequence any using php:SoapClient?

I'm struggling to understand how SoapClient works. wdsl
Halcyon
  • 57,230
  • 10
  • 89
  • 128
5
votes
1 answer

Difference between Suds py3 and Suds Jurko

I new in python 3. First, I build soap client in python with suds py3. And it's not working. But after Install suds jurko, it's working now. What is the difference between suds py3 and suds jurko? In this article…