[jbossws-issues] [JBoss JIRA] Updated: (JBWS-3157) Feature for controlling chunked encoding

Alessio Soldano (JIRA) jira-events at lists.jboss.org
Fri May 27 06:19:01 EDT 2011


     [ https://issues.jboss.org/browse/JBWS-3157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessio Soldano updated JBWS-3157:
----------------------------------

    Fix Version/s: community contributions
                       (was:  jbossws-cxf-4.0)


Marking this as for community contribution, it's not a really critical feature and the same result can be achieved by properly setting the HTTPConduit for the given port/stub:

{code}
Client client = ClientProxy.getClient(port);
HTTPConduit http = (HTTPConduit) client.getConduit();
HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
httpClientPolicy.setAllowChunking(false);
http.setClient(httpClientPolicy);
{code}

> Feature for controlling chunked encoding
> ----------------------------------------
>
>                 Key: JBWS-3157
>                 URL: https://issues.jboss.org/browse/JBWS-3157
>             Project: JBoss Web Services
>          Issue Type: Feature Request
>      Security Level: Public(Everyone can see) 
>          Components: jbossws-cxf
>            Reporter: Alessio Soldano
>             Fix For: community contributions
>
>
> We should basically see if it's possible to make the org.jboss.ws.feature.ChunkedEncodingFeature available for jbossws-cxf too.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbossws-issues mailing list