MQ Series SSL parameters using camel for JMS

2010-04-30 Thread Srini97
Hello, I am using IBM MQseries for the JMS delivery. I have configured all the parameters in the spring xml. With the my client has provided some SSL parameters as well but I don't know where to mention it. When I try to send any messages it is thowing some Ciberspec error. The error details ar

FTP creating connection based on domain, username, password

2010-05-14 Thread Srini97
Hello All, I have got a problem with FTP connections, as it is creating a connection for every URI even it is for the same domain. so it is ending up using all the connections at some point of time even though it is for same doman! In our case , we may need to send the no of files to the same d

FTP creating connection based on domain, username, password

2010-05-14 Thread Srini97
Hello All, I have got a problem with FTP connections, as it is creating a connection for every URI even it is for the same domain. so it is ending up using all the connections at some point of time even though it is for same doman! In our case , we may need to send the no of files to the same d

FTP creating connection based on domain, username, password

2010-05-14 Thread Srini97
Hello All, I have got a problem with FTP connections, as it is creating a connection for every URI even it is for the same domain. so it is ending up using all the connections at some point of time even though it is for same doman! In our case , we may need to send the no of files to the same d

Re: FTP creating connection based on domain, username, password

2010-05-14 Thread Srini97
My requirement is to share the connection for the same domain , username and password. For other username for the same domain we can have different connection , thats not an issue Claus Ibsen-2 wrote: > > On Fri, May 14, 2010 at 12:09 PM, Srini97 > wrote: >> >> Hello

FTP creating connections for every file name in the uri

2010-05-18 Thread Srini97
Hi, We observed that when we are using the FTP Endpoint for delivery, it is creating a connection for filename (even it is for the same user ) and it is utilising maximum pool and connection left there and finally getting error saying maximum connecttions reached. is there any way to handle thi

Camel FTP is not responding and returning code 0 as connectiontime out

2010-05-27 Thread Srini97
Hello, I am using the following URI for the delivery to FTp end point. ftp://castrolfootb...@94.236.51.10/?fileName=srml-4-2009-squads.xml&password=C3te4aVNY8fWNnGr&ftpClie t.dataTimeout=15000&ftpClient.defaultTimeout=15000&ftpClient.connectTimeout=12&tempFileName=%24%7Bfile%3Aname.noext%7D

Handling map in the concurrentConsumers

2010-05-28 Thread Srini97
Hello all, I am using the concurrencyconsumers option in the routing. But I have create a Map which should be shared for thread in the consumer. can any body guide the sysntax for this . below is the code.. I wanted to use the following deliveryEndpoints map and myRetryBean as one per thread.

Re: Camel FTP is not responding and returning code 0 as connectiontime out

2010-05-28 Thread Srini97
n Thu, May 27, 2010 at 2:06 PM, Srini97 > wrote: >> >> Hello, >> >> >> I am using the following URI for the delivery to FTp end point. >> >> ftp://castrolfootb...@94.236.51.10/?fileName=srml-4-2009-squads.xml&password=C3te4aVNY8fWNnGr&ftpClie >&

Re: Camel FTP is not responding and returning code 0 as connectiontime out

2010-05-28 Thread Srini97
l.ProducerCache.acquireProducer(ProducerCache.java:90) at org.apache.camel.processor.RecipientList.sendToRecipientList(RecipientList.java:115) at org.apache.camel.processor.RecipientList.process(RecipientList.java:97) at org.apache.camel.management.InstrumentationProcessor.process(InstrumentationProcessor.java:67)

Re: Camel FTP is not responding and returning code 0 as connectiontime out

2010-06-02 Thread Srini97
nt.soTimeout also? > > And what version of Camel are you using? > > > On Thu, May 27, 2010 at 2:06 PM, Srini97 > wrote: >> >> Hello, >> >> >> I am using the following URI for the delivery to FTp end point. >> >> ftp://castrolfootb...

Getting exception when using retryUntil with concurrentConsumers

2010-06-02 Thread Srini97
Hello All, I am using the concurrentConsumers option and try to retry the delivery when it fails. with out concurrentConsumers retryUntil is it is working well but when I tried to use concurrent consumers it is failing .Below is the code that i am using for the concurrentCosumers following the e

Re: Getting exception when using retryUntil with concurrentConsumers

2010-06-02 Thread Srini97
nsumers="+concurrentConsumersSize). threads(concurrentConsumersSize). Regards Sri Claus Ibsen-2 wrote: > > The JMS endpoint ALREADY have set concurrent consumers. > So avoid using threads in the route also. > > > On Wed, Jun 2, 2010 at 5:

Re: Getting exception when using retryUntil with concurrentConsumers

2010-06-03 Thread Srini97
If I use it below by removing threads() it is taking the messsages one by one even though there are concurrent consumers. from("jms-cif:queue:" + _notificationQueue+"?concurrentConsumers="+concurrentConsumersSize). process(processor) .onException(Exception.class).retryUntil(bean("myRetryBean")

FTP error 150 while writing the file

2010-06-11 Thread Srini97
Hello , I am getting error with code 150 while writing the file on the FTP. Here is the full log for that and the URI I used is below . [2010-06-11 16:53:25,163][pool-1-thread-3][WARN ][org.apache.camel.component.file.remote.RemoteFileProducer][] Writing file failed with: File operation fa iled:

extended Camel Mail Component not working

2010-04-12 Thread Srini97
Hello, I have a requirement for adding new options for the message , so I have created new options like x_body , x_createAttachement , Based on these two options I have to over ride the default nature of camel component. So I have extended MailBinding and over ridden some methods. and written tes

Re: extended Camel Mail Component not working

2010-04-12 Thread Srini97
gt; Hi > > What kind of default nature of camel component is changed in your > component? > > Can you step into producer.process(exchange) to see what is happened ? > > > Willem > > Srini97 wrote: >> Hello, >> >> I have a requirement for adding

Re: extended Camel Mail Component not working

2010-04-12 Thread Srini97
o the receipient. Sri willem.jiang wrote: > > Did you extend the camel mail component? if so, please add some break > point in the MailProducer, and debug to see if the sender is called send > the mail. > > Willem > > Srini97 wrote: >> >> I have added t

Re: extended Camel Mail Component not working

2010-04-13 Thread Srini97
Hi, I Identified the problem. the culprit is mock-javamail which I am using it for testing purpose. so I have removed it and it works fine. Thanks Sri Srini97 wrote: > > no luck :( , I went and saw the sender code on the producer > > sender.send(new MimeMessa

Mail component support direct connection to send email as opposed to smtp

2010-04-19 Thread Srini97
Hello , is there any way that we can send the mail over direct connection rather using the SMTP connecton. Thanks in advance for the valuable suggestion. Regards Sri -- View this message in context: http://old.nabble.com/Mail-component-support-direct-connection-to-send-email-as-opposed-to-sm