What JBossWS version is it?
I just noticed there is bug in that piece of code, but it only affects setting 
the chunksize value, not removing it:


  | // chunksize settings
  |             String chunkSizeValue = 
epmdProps.getProperty(EndpointProperty.CHUNKED_ENCODING_SIZE);
  |             int chunkSize = chunkSizeValue != null ? 
Integer.valueOf(chunkSizeValue) : -1;
  |             if (chunkSize > 0)
  |             {
  |                clientConfig.put(EndpointProperty.CHUNKED_ENCODING_SIZE, 
chunkSizeValue);
  |             }
  |             else
  |             {
  |                clientConfig.remove("chunkedLength");
  |             }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126117#4126117

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126117
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to