|
empty SOAPAction
|
 |
This question is not answered.
|
|
Replies:
0
-
Pages:
1
|
Threads:
[
Previous
|
Next
]
|
|
Posts:
9
Registered:
Apr 01, 2009 12:13:58 PM
|
|
|
|
empty SOAPAction
Posted:
May 03, 2009 06:43:39 PM
|
|
|
|
websphere 7.0.3.
I developed .NET remoting (SOAP) client part, deployed in websphere.
code:
SOAPConnection soapConnection = connectionFactory.createConnection();
SOAPMessage soapMessage = soapMessageBuilder.getReportSOAPMessage(based64bytes, charset);
soapMessage.getMimeHeaders().addHeader(HEADER_SOAPACTION, GET_REPORT_URL);
SOAPMessage response = soapConnection.call(soapMessage, remotingUrl);
soapConnection.close();
problem (empty soap header):
POST /bap.rem HTTP/1.1
Host: plasma:8000
++Accept: application/soap+xml,multipart/related,text/*++
User-Agent: IBM WebServices/1.0
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Connection: Keep-Alive
SAVECONNECTION: 17237541741241097210892
IBM-WAS-CLIENT: TRUE
Content-Type: text/xml; charset=UTF-8
Content-Length: 1506
Date: Thu, 30 Apr 2009 13:13:30 GMT
This code works good in JBoss, but there is empty SOAPAction on Websphere :(
How can i resolve this problem?
|
|
|
|
|