Hi
On Wed, Apr 27, 2011 at 12:20 AM, samslara wrote:
> I've figured it out and for anyone who's interested:
>
> from the Exchange you can get the HttpServletRequest via:
>
> exchange.getIn().getBody(HttpServletRequest.class)
>
> and from there get the X509Certificate via:
>
> request.getAttribute
Hi Donald
On Wed, Apr 27, 2011 at 12:37 AM, Donald Whytock wrote:
> Trying with a different mail server, it consistently deletes with IMAP
> and consistently fails to delete with POP3. Long as it's consistent,
> I'm good. Thanks.
>
Thanks for reporting back.
Yeah that's in line what people h
Hi
You are using the producer template to send the message to a queue, in
this case the transaction error handler will not be triggered.
BTW, when the interruptedException is thrown, the template will not
send the message to the queue:b. I don't get you description of the
message that is se
Trying with a different mail server, it consistently deletes with IMAP
and consistently fails to delete with POP3. Long as it's consistent,
I'm good. Thanks.
A couple issues that came up...
- I got a FolderNotOpen error when the component was trying to set the
DELETED flag. So to the beginning
I've figured it out and for anyone who's interested:
from the Exchange you can get the HttpServletRequest via:
exchange.getIn().getBody(HttpServletRequest.class)
and from there get the X509Certificate via:
request.getAttribute("javax.servlet.request.X509Certificate")
--
View this message in co
I am relatively new to camel/spring and active mq and this forum. I hope I
have posted in the right location. Please let me know is this is not the
case acttivemq 5.50, camel 2.70, spring 3.4, linux centos
I have defined the following xml ( below the error ) in a camel.xml file
which is importe
hmmm, you aren't using xpath in the Java DSL, so the spring DSL should be
something like this...
{{cmisURL}}/p/${in.header.folderPath}children
antoine.julienne wrote:
>
> Here is my code :
>
>
.setHeader(Exchange.HTTP_URI, simple(cmisURL +
"/p/${headers.folderPath}children"))
>
>
Hi
Using Apache camel 2.7
I've taken a simple example from the Camel in Action book.
chapter9\multiple-routes
An modified it slighly.
from("activemq:queue:a")
.transacted()
.to("bean:process?method=process");
public class Process {
protected ProducerTemplate template;
public v
Great, I will add the routeId. Thanks for the quick help.
On Tue, Apr 26, 2011 at 10:28 AM, Joshua Watkins <
joshua.watk...@gamesys.co.uk> wrote:
> You are missing using the routeId. When you create your route you need to:
>
> from(uri + "?splitEntries=false&consumer.initialDelay=0").
>
You are missing using the routeId. When you create your route you need to:
from(uri + "?splitEntries=false&consumer.initialDelay=0").
marshal().rss().
to("mock:result").routeId("routeId");
Then when you remove the route you use the same routeId string.
I hope this
Hi all,
I have written a service bean which can add and remove Routes dynamically
and I'd like to know if my approach was "kosher" in terms of best practices.
It's not exactly pretty, but it does work. Here are the two classes:
@Component
public class RssRouter implements CamelContextAware {
Hi Willem,
Thanks for help. I understood that I was incorrect and was using not an
appropriate tool for soap over jms. I succeeded in configuring cxf to use jms
transport using the following configuration
http://www.springframework.org/schema/beans";
xmlns:xsi="http://www.w3.org/2001/XMLS
Hello Christian,
Thanks for help.
Finally I understood that I was slightly incorrect trying to bind a cxf service
to an activemq endpoint so I have used cxf-jms transport.
Moreover it seems that it's hardly possible to bind http://camel.apache.org/schema/cxf"; ... /> to a direct endpoint or
a
A while ago there was a discussion topic that the
SimpleMessageListenerContainer/ConsumerType.Simple was removed from
camel-jms as it was deprecated. However from looking at the latest Spring
docs (
http://static.springsource.org/spring/docs/3.1.0.M1/javadoc-api/org/springf
ramework/jms/listener/S
Hi Christian,
The configuration looks good for me.
So I doubt it may be a JAXP issue, please let me know if it still there
after you upgrade the version of Service.
Willem
On 4/26/11 3:09 AM, Christian Mueller wrote:
Hello Willem!
Sorry for not answering so long, but last week I worked toget
Hi,
If you want to use the SOAP over JMS, you don't need to use the camel
transport for CXF.
Did you have a chance to try to create pure CXF with SOAP over JMS?
Willem
On 4/26/11 2:51 PM, Zhemzhitsky Sergey wrote:
Hi there,
I'm trying to configure SOAP over JMS by means of camel, cfx, acti
On Tue, Apr 26, 2011 at 1:14 PM, Sorin Silaghi wrote:
> Hi,
>
>
> I have the folowing onException configuration in my camel-context.xml:
>
>
> java.lang.Exception
>
>
>
> The route uses the file component for pooling. I expect this to try a
> file 3
Hi,
I have the folowing onException configuration in my camel-context.xml:
java.lang.Exception
The route uses the file component for pooling. I expect this to try a
file 3 times and then stop but it actually tries over and over again. I
tri
I have some routes defined along with onException route like below
com.mycompany.MyException
I have a context wide interceptor defined which intercepts each endpoint and
based on
endpoint uri it performs some action. It works perfectly
Hi Sergey,
I think you are mixing the camel transport for cxf and the camel cxf
endpoint in your config. I have some experience how to use the camel
transport for cxf which I think is the cleaner alternative anyway.
You already have configured the CamelTransporFactory. Next you should
define
20 matches
Mail list logo