Optional SOAP element that represents a header that contains application-specific information (like authentication, payment, etc) about the SOAP message.
Questions tagged [soapheader]
232 questions
0
votes
0 answers
Retrieve soap header from apache camel exchange object
I am writing a camel endpoint which is as below,
…

Sunil Rk
- 999
- 6
- 12
- 35
0
votes
0 answers
C# MustUnderstand headers: [{http://www.w3.org/2005/08/addressing}Action, {http://www.w3.org/2005/08/addressing}To] are not understood
I have some trouble in trying to consume a function from this webservice https://84.199.99.213:8443/XWS/services
For example and I insert this header into the envelope, I have access to all the functions. But in my C# code, whatever method I tried I…

Vlad
- 1
- 2
0
votes
1 answer
What's the difference between receiving data by SOAP header and SOAP body?
I would like what happen when an web service receive part of data by SOAP header. What's the diference between receive data by SOAP header and SOAP body (Before the web service receive all of data by SOAP body)
I don't understand at all what are…

Cesar Miguel
- 661
- 1
- 13
- 38
0
votes
1 answer
Digitally Sign soap headers in php
I am using native php SoapClient to create a Client to consume a web service. I need to sign the soap request headers for making request to the Server. Has anyone done this before? I couldn't find a latest information. There is this php extension…
user1837224
0
votes
1 answer
Passing Authentication Credentials in SoapHeader class
I have an xml file in format below

jaahvicky
- 438
- 2
- 8
- 20
0
votes
0 answers
Parameterized constructor in SoapHeader class
Scenario I have a WebService(.asmx) in C#.Net. I included a class which inherits from SoapHeader class. I have a parameterized constructor in it but as I forgot to include a parameterless constructor, it generated following error when I updated…

Sadiq
- 786
- 1
- 10
- 35
0
votes
1 answer
Implementing Soap Webservice: Handling Complex object argument
My company has subscribed to a service offered by a travel reservation system whereby they call us back when any changes occur to a travel itinerary. My task is to stand up a SOAP endpoint to accept this callback. I am doing this with standard…

Bob D
- 1
- 2
0
votes
1 answer
How can I get Soap header in Spring integration?
I use SimpleWebServiceInboundGateway for handling SOAP requests.
Here is a piece of my code:
@Router(defaultOutputChannel = "unsupportedOperation", inputChannel = "wsRequestChannel")
public String route(Message message) {
String soapAction =…

user1552545
- 1,233
- 3
- 15
- 33
0
votes
1 answer
PHP SOAP:How to get param inside xml header and body tag
In PHP I need to create a soap-xml request like

Eric Appcomm
- 21
- 5
0
votes
1 answer
Handling custom soap header in WCF Service
I am creating WCF Service to receive a message (strings). It has soap request has header as shown below. I went thru so many example that I found on internet, but I could not understand any of those thoroughly.
I found this article is very helpful…

Shai
- 529
- 7
- 20
- 36
0
votes
1 answer
CXF: add element with namespace from message to SOAP header
How can I get the name (including namespace prefix) of root element in message (1st element in SOAP body) and add this information to SOAP header.
Is it possible to do so with outbound interceptor and in which phase is the namespace prefix…

Fenix
- 2,271
- 1
- 16
- 24
0
votes
2 answers
CXF: add SOAP header to request
I tried to add SOAP header to my request via BindingProvider.getRequestContext().put(Header.HEADER_LIST, headers) but the SOAP Header is missing. My code is like the following:
Standard WebService class generated by CXF:
@WebService(targetNamespace…

Fenix
- 2,271
- 1
- 16
- 24
0
votes
1 answer
How add BinarySecurityToken in the call to webservice with .pfx certificate? C#
I'm working with c#.net Framework 4.5, visual studio 2012...I´m trying to add a web reference in my solution. This web reference is protected with a two leveled security wall. The provider of the WS brought me two certificates: one is .p12 and the…

Mathias Zaracho
- 1
- 3
0
votes
1 answer
resource annotation in soapHandler implemantation
I have read few tutorials about soap handlers and some of them uses only handler chain but some of them use both @resource annotation and handler chain xml. I am confused if @resource is needed to use or not. If yes why exactly I need to use it?

user1474111
- 1,356
- 3
- 23
- 47
0
votes
1 answer
php and soap headers token auth
I need this xml in out:
111111111111
My php code is:
$head = new…

Alex Felliks
- 1
- 1