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
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4237611#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...