Re: Schematron component: Not supported: http://saxon.sf.net/feature/linenumbering

2015-05-19 Thread Ayache Khettar
Hi Dan Apologies for the late reply. Only yesterday I had a bit of time to look into this in more details. I am able to reproduce it on the latest serviceMix distribution. Looks like, when Camel schematron component is deployed into SMX. it uses Xalan by default as opposed to Saxon. There is a

Re: camel-ftp sendNoOp takes 15 minutes

2015-05-19 Thread Claus Ibsen
Hi Wonder if there is some firewalls or something that block / terminate connections or whatnot - causing it to delay the check for 15 min. As 15 min sounds like some kind of configured timeout somewhere. As you are using Fuse 6.1, then I suggest to use Red Hat customer portal to get help with

Re: Web Srevice exposed over https not working

2015-05-19 Thread Willem Jiang
Yeah, the stack trace just tells us the connection is closed. Do you use cxf client to connect the WebService? Can you check if there is any error on the client side? We need more information about the camel route and the client. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog:

Apache Camel make a route to a public Active MQ server

2015-05-19 Thread Jonasty
I have following routes @Override public void configure() throws Exception { from(activemq:queue:aap).wireTap(activemq:queue:aapTap); from(activemq:queue:aapTap).process(processor).id(QueueIncoming); } But when I run this, active MQ looks for my local host, I notice this

Re: Apache Camel make a route to a public Active MQ server

2015-05-19 Thread Claus Ibsen
Hi You configure this in the connection factory. Some information here: http://camel.apache.org/activemq So you should change it from tcp://localhost:61616 to the server name and port to use. On Tue, May 19, 2015 at 11:42 AM, Jonasty jonas.audena...@gmail.com wrote: I have following routes

Re: ERROR: Cannot find any registered HttpDestinationFactory from the Bus.

2015-05-19 Thread Willem Jiang
CXF http transport looks up the HttpDestinationFactory for (Jetty or Netty) if the address is start with “http://; or https://“. If you don’t put those jar into the class patch, you will get the error. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog:

Re: HttpProducer to ignore response body avoiding stream caching

2015-05-19 Thread Willem Jiang
So you just need to check the statuses code and don’t need to read the message body. Yeah, we can add an option for it to avoid recopying the input stream from the HttpClient. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English)

Using CamelContextAware bean in RouteBuilder question

2015-05-19 Thread Mike Chao
Hi all, I am having a bit of problem trying to using a bean that implements CamelContextAware in a route. The setCamelContext method on the bean is never called. I have attached a test program. camelContextAwareTest.zip http://camel.465427.n5.nabble.com/file/n5767281/camelContextAwareTest.zip

Re: How to make Soap Service Provider work over web

2015-05-19 Thread Willem Jiang
I think you just need to change the address to outside IP or 0.0.0.0 (which let the jetty engine to listen to all the network interface”. such as  from(“cxf://http://192.168.1.123:9090/services?serviceClass=AdataFormat=POJO”) or 

Re: How to wiretap without consuming the original queue

2015-05-19 Thread Henryk Konsek
Hi, You should add some destination after the wireTap. For example: from(activemq:queue:aap).wireTap(activemq:queue:aapTap).to(...); Then you will see that the original flow is processed regardless of the wireTap flow. Cheers! wt., 19.05.2015 o 14:57 użytkownik Jonasty

Re: How to wiretap without consuming the original queue

2015-05-19 Thread Jonasty
How can I send it to nowhere or do nothing? -- View this message in context: http://camel.465427.n5.nabble.com/How-to-wiretap-without-consuming-the-original-queue-tp5767253p5767255.html Sent from the Camel - Users mailing list archive at Nabble.com.

How to wiretap without consuming the original queue

2015-05-19 Thread Jonasty
Hello I am monitoring activemq, I use following routebuilder for this: @Override public void configure() throws Exception { from(activemq:queue:aap).wireTap(activemq:queue:aapTap); from(activemq:queue:aapTap).process(myProcessor).id(QueueIncoming); } But when I send

camel HttpProducer caching stream

2015-05-19 Thread Marco Crivellaro
Hi, I just found out HttpProducer (camel-http) is always caching the response stream, having a look a the Camel Stream Caching documentation (http://camel.apache.org/stream-caching.html) I would expected this to not occur since on camel 2.x Stream Caching is off by default. I would think it worth

Camel SMPP SMS port

2015-05-19 Thread jonathan.cregut
Hi, I'm currently trying to send an SMS via Camel to a specific destination port. The SMS is sent to the port 5000. However I'm not getting anything related to a port change on my SMPP server and my SMS is sent to the device like a normal one. My current Processor code is :

HttpProducer to ignore response body avoiding stream caching

2015-05-19 Thread Marco Crivellaro
I am using camel-http to send HTTP Post notifications to a wide range of endpoints which I don't control directly, sometimes the endpoints response is quite big and due to the fact HttpProducer is caching the response stream temporary files are being written to disk. I can set the caching

Re: How to wiretap without consuming the original queue

2015-05-19 Thread Henryk Konsek
Sorry for answering with the question, but what is purpose of sending the message to the wireTap and then to nowhere? :) I'm trying to understand what you try to achieve here. Cheers! wt., 19.05.2015 o 15:48 użytkownik Jonasty jonas.audena...@gmail.com napisał: How can I send it to nowhere or

How to make Soap Service Provider work over web

2015-05-19 Thread gargankur007
HI I have came route for Soap service Provider like from(cxf://http://localhost:9090/services?serviceClass=AdataFormat=POJO;) My question is do I need to package the application as WAR to enable it accessing from web? I am able to use it by URL http://localhost:9090/services but not by

Re: ERROR: Cannot find any registered HttpDestinationFactory from the Bus.

2015-05-19 Thread Aki Yoshida
If you do not want to use the embedded jetty server but your servlet container, you have to use a relative path in the address field. so something like cxf:cxfEndpoint id=canonicalService address=/canonicalcxfserviceproxy/webservices/canonical and this endpoint will be available under the

Re: Unable to make a SOAP/HTTP request through webservice proxy

2015-05-19 Thread Aki Yoshida
i suppose the problem is that you are mixing up the payload and message modes without doing any adjustment between. the payload mode expects the body-child document, so this is something like your InquiryRequest. in contrast, the message mode expects the entire soap message, so this starts with