[jboss-user] [JBossWS] - Re: http://org.jboss.ws/http#chunksize

heiko.braun@jboss.com do-not-reply at jboss.com
Mon Feb 4 06:57:02 EST 2008


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



More information about the jboss-user mailing list