Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: jibxsoap-alpha0.2
-
Fix Version/s: jibxsoap-alpha0.2a
-
Component/s: JiBX/WS
-
Labels:None
-
Environment:winxp,java5
-
Number of attachments :
Description
in SoapClient::call
I found that changing the content-type to "text/xml" made it work with my weblogic server.
I figured this out when I compared the http headers between jibx-soap and sun's-soap
it appears weblogic 8.1 sp3 is strict with the soap spec.
it's okay with
conn.setRequestProperty("Content-type","text/xml");
or
conn.setRequestProperty("Content-type","application/soap+xml");
but it doesn't like application/xml