You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Wayne Gilbert (JIRA)" <ji...@apache.org> on 2017/05/01 12:29:04 UTC

[jira] [Updated] (CAMEL-11221) camel-netty4-http cannot have a URL larger than 409 bytes by default, rather than the assumed 4096 byte limit

     [ https://issues.apache.org/jira/browse/CAMEL-11221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wayne Gilbert updated CAMEL-11221:
----------------------------------
    Description: 
https://github.com/apache/camel/blob/camel-2.19.x/components/camel-netty4-http/src/main/java/org/apache/camel/component/netty4/http/HttpServerSharedInitializerFactory.java

In function "initChannel" the call to new request decoder

pipeline.addLast("decoder", new HttpRequestDecoder(409, configuration.getMaxHeaderSize(), 8192));

409, should probably be 4096,

This is set when using the init-method start on the bean below:

	<spring:bean id="httpServer" class="org.apache.camel.component.netty4.http.DefaultNettySharedHttpServer"
          init-method="start" destroy-method="stop">
		<spring:property name="nettyServerBootstrapConfiguration" ref="configuration"/>
	</spring:bean>

  was:
https://github.com/apache/camel/blob/camel-2.19.x/components/camel-netty4-http/src/main/java/org/apache/camel/component/netty4/http/HttpServerSharedInitializerFactory.java

In function "initChannel" the call to new request decoder

pipeline.addLast("decoder", new HttpRequestDecoder(409, configuration.getMaxHeaderSize(), 8192));

409, should probably be 4096,

This only seems to occur when using matchOnUriPrefix=true in a netty4 endpoint.


> camel-netty4-http cannot have a URL larger than 409 bytes by default, rather than the assumed 4096 byte limit
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-11221
>                 URL: https://issues.apache.org/jira/browse/CAMEL-11221
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-netty4-http
>    Affects Versions: 2.18.3
>            Reporter: Wayne Gilbert
>
> https://github.com/apache/camel/blob/camel-2.19.x/components/camel-netty4-http/src/main/java/org/apache/camel/component/netty4/http/HttpServerSharedInitializerFactory.java
> In function "initChannel" the call to new request decoder
> pipeline.addLast("decoder", new HttpRequestDecoder(409, configuration.getMaxHeaderSize(), 8192));
> 409, should probably be 4096,
> This is set when using the init-method start on the bean below:
> 	<spring:bean id="httpServer" class="org.apache.camel.component.netty4.http.DefaultNettySharedHttpServer"
>           init-method="start" destroy-method="stop">
> 		<spring:property name="nettyServerBootstrapConfiguration" ref="configuration"/>
> 	</spring:bean>



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)