Re: OutOfMemoryError: Java heap space when sending large file to jetty endpoint

2016-10-19 Thread Tomohisa Igarashi
Hi, It seems like the OOM occurs when it's mapping request parameters, but not request body which is passed as an InputStream by default. Do you have any large parameter other than body? Note that if you enable allowJavaSerializedObject, then body is deseriallized as a Java Object, may cause

Re: https4 protocal is giving org.apache.http.client.ClientProtocolException caused by: null

2016-10-19 Thread Tomohisa Igarashi
Can you provide more info so we can replay? A link to the minimal reproducer project would be the best, you would place it on your github or like that. Whole route and full stacktrace would be still helpful. On 10/19/2016 03:07 PM, Manjanshavali wrote: I am setting process: --

ApacheCon is now less than a month away!

2016-10-19 Thread Rich Bowen
Dear Apache Enthusiast, ApacheCon Sevilla is now less than a month out, and we need your help getting the word out. Please tell your colleagues, your friends, and members of related technical communities, about this event. Rates go up November 3rd, so register today! ApacheCon, and Apache Big

CXF Bean and RedeliveryPolicy

2016-10-19 Thread jwhite78
I'm using CXF to call a SOAP based web service. Within my blueprint file I have "onException" handling. java.net.ConnectException The problem I am seeing is that one of our server nodes within our farm will catch this ConnectException and try forever, which was the plan,

Re: Clarify why lazy-loaded component mapping files are properties files that aren't labeled as such

2016-10-19 Thread Claus Ibsen
Sorry if you don't think it answered. Let me try with other words Its not a mapping file. Its not for configuring components. Its not for end users to use these files. Its an implementation detail for Camel components that allow Camel to discover components on the classpath. The name of the

RE: Clarify why lazy-loaded component mapping files are properties files that aren't labeled as such

2016-10-19 Thread KARR, DAVID
> -Original Message- > From: Claus Ibsen [mailto:claus.ib...@gmail.com] > Sent: Tuesday, October 18, 2016 1:52 PM > To: users@camel.apache.org > Subject: Re: Clarify why lazy-loaded component mapping files are > properties files that aren't labeled as such > > Hi > > Welcome to the Camel

Re: send same message to multiple, not all, websocket clients

2016-10-19 Thread Mark
Thanks for your help. I am maintaining a Map of client information. I set the value of the map to the exchange header and then send the message to a Splitter. The splitter will split on the exchange header and then I can send out the messages for each connection key. Its working

Re: TransformerException camel xslt error-Jboss fuse service works

2016-10-19 Thread Andrea Cosentino
You need to ask to the Red Hat support, since you're using JBoss Fuse. -- Andrea Cosentino -- Apache Camel PMC Member Apache Karaf Committer Apache Servicemix Committer Email: ancosen1...@yahoo.com Twitter: @oscerd2 Github: oscerd On Wednesday, October 19, 2016

TransformerException camel xslt error-Jboss fuse service works

2016-10-19 Thread ravi21588
Hi All, iam getting below error when deploying switchyard component in Jboss EAP. 14:14:25,683 ERROR [org.apache.camel.builder.xml.XsltErrorListener] (MSC service thread 1-14) "xml:lang" attribute is not allowed on the soap:Text element!; Line#: 16; Column#: 32:

Re: OutOfMemoryError: Java heap space when sending large file to jetty endpoint

2016-10-19 Thread Vova Shelgunov
Hi Andrea, Yes, I run application using jar file. Java has 1G heap. Actually I assumed that camel will not read file in single string, but will use InputStream to read the data. 2016-10-19 15:28 GMT+03:00 Andrea Cosentino : > Is the camel-context deployed as a

Re: OutOfMemoryError: Java heap space when sending large file to jetty endpoint

2016-10-19 Thread Andrea Cosentino
Is the camel-context deployed as a simple JAR? What are you using inside the Debian container? How much memory has your container? Did you set JVM_OPTS witch specific values for max Heap size and min Heap size? -- Andrea Cosentino -- Apache Camel PMC Member

OutOfMemoryError: Java heap space when sending large file to jetty endpoint

2016-10-19 Thread Vova Shelgunov
Hi, I catched this OutOfMemoryError when I sent a 250 MB file to jetty endpoint: java.lang.OutOfMemoryError: Java heap space at java.lang.StringCoding.decode(StringCoding.java:215) at java.lang.String.(String.java:463) at java.lang.String.(String.java:515) at

Re: creating spring beans in routes

2016-10-19 Thread Claus Ibsen
Hi No you can only define in a spring xml file that uses . A camel xml file with only cannot define spring s On Wed, Oct 19, 2016 at 12:22 PM, Kasim Sert (Ibtech-Software Infrastructure) wrote: > Hi, > > Can I define new spring beans in xml route. If yes, how can I

creating spring beans in routes

2016-10-19 Thread Kasim Sert (Ibtech-Software Infrastructure)
Hi, Can I define new spring beans in xml route. If yes, how can I do that ? Thank you. http://camel.apache.org/schema/spring;> [Facebook] [Twitter]

Camel Spring-WS Endpoint with URL Query Parameters

2016-10-19 Thread Arthanarisamy Annamalai
I am consuming a SOAP based Webservice with Apache Camel Spring-ws component,the service requires url parameters, which i tried setting in the Endpoint URL and below is the exception Unknown parameters=[{Cmd=Execute, Source=WebService, WSSOAP=1}] And the Endpoint URL i have built is as below.

Re: Need help in processing comma seperated text file

2016-10-19 Thread raghavender.anth...@gmail.com
Thanks a lot for the response. Initially I thought of using BeanIO itself but my data format is not exactly delimited format. As per my understanding, to use BeanIO we should specify the format in the mapping xml. Since I've the below elements in my text file, am not sure which one to go with.

https4 protocal is giving org.apache.http.client.ClientProtocolException caused by: null

2016-10-19 Thread Manjanshavali
I am setting process: -- 1)setting property in process method. exchange.setProperty("redeem_uri",value); rote: - 2) using the same property in the below route PATCH ${property[redeem_uri]} -- -- result: --

Re: Apace Camel : Custom Redelivery Policy

2016-10-19 Thread Shabin5785
Thanks. Using when to check condition for re-delivery policy works :) -- View this message in context: http://camel.465427.n5.nabble.com/Apace-Camel-Custom-Redelivery-Policy-tp5788891p5788944.html Sent from the Camel - Users mailing list archive at Nabble.com.