This content has been marked as final.
Show 1 reply
-
1. Re: SOAP POST request not working under Jboss app server but
gart Jun 15, 2009 6:40 AM (in response to gart)I'll answer my own question.
By default the JBossWS doesn't send the Content-Length and it sends the data chunked.
After searching around I discovered that changing
jboss-4.2.3.GA\server\default\deploy\jbossws.sar\META-INF\standard-jaxws-client-config.xml
from the default 2048 to -1 means that the Content-Length is sent in the POST message<client-config> <config-name>Standard Client</config-name> <feature>http://org.jboss.ws/dispatch/validate</feature> <property> <property-name>http://org.jboss.ws/http#chunksize</property-name> <property-value>-1</property-value> </property> </client-config>
Before IIS was rejecting the message with a 404 Page not found, now it works!
I hope someone else finds this useful!
Gart