You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Fabrizio Spataro (JIRA)" <ji...@apache.org> on 2016/11/18 10:01:58 UTC

[jira] [Updated] (CAMEL-10492) Camel Servlet, attachment object is empty

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

Fabrizio Spataro updated CAMEL-10492:
-------------------------------------
    Affects Version/s: 2.18.0
             Priority: Major  (was: Minor)
          Description: 
I send a multipart form data to my camel servlet, before camel 2.18 attachment object is empty.

Now i have an *header* every form field but every field is java.lang.String

So, I can not post any binary file.

This is my web.xml filter

{code:xml}
	<filter>
		<filter-name>MultipartFilter</filter-name>
		<filter-class>org.eclipse.jetty.servlets.MultiPartFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>MultipartFilter</filter-name>
		<servlet-name>CamelServlet</servlet-name>
	</filter-mapping>
{code}

Into zip file, you can found an example.

  was:
Since 2.18 i have a new bug!

I send a multipart form data to my camel servlet, before camel 2.18 i have an *attachment object* every form field.
Now i have an *header* every form field.
It is ok but ALL header (form field) are instance of java.lang.String

So, I can not post any binary file.

Is it a camel bug? 

This is my filter into web.xml

{code:xml}
	<filter>
		<filter-name>MultipartFilter</filter-name>
		<filter-class>org.eclipse.jetty.servlets.MultiPartFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>MultipartFilter</filter-name>
		<servlet-name>CamelServlet</servlet-name>
	</filter-mapping>
{code}

Into zip file, you can found an example.

          Component/s: camel-http-common
              Summary: Camel Servlet, attachment object is empty  (was: Camel Servlet, headers instance of String)

> Camel Servlet, attachment object is empty
> -----------------------------------------
>
>                 Key: CAMEL-10492
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10492
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-http-common, camel-servlet
>    Affects Versions: 2.18.0
>            Reporter: Fabrizio Spataro
>         Attachments: camel-example-servlet-attachment.zip
>
>
> I send a multipart form data to my camel servlet, before camel 2.18 attachment object is empty.
> Now i have an *header* every form field but every field is java.lang.String
> So, I can not post any binary file.
> This is my web.xml filter
> {code:xml}
> 	<filter>
> 		<filter-name>MultipartFilter</filter-name>
> 		<filter-class>org.eclipse.jetty.servlets.MultiPartFilter</filter-class>
> 	</filter>
> 	<filter-mapping>
> 		<filter-name>MultipartFilter</filter-name>
> 		<servlet-name>CamelServlet</servlet-name>
> 	</filter-mapping>
> {code}
> Into zip file, you can found an example.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)