Re: Help on deploying Camel on Weblogic 12c. Name Collision

2012-10-10 Thread Willem jiang
It looks like a JPA (EclipseLink) related error. What kind of camel components are you using? -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English)

Re: Camel JMS client_acknowledge mode

2012-10-10 Thread wantastic
Hello Raul, Thank you for your feedback. I tried putting the into the exception handler, but it still sent the ack to the queue and the message was removed from the queue. com.my.exception.Exception false false If Camel finis

Re: Help on deploying Camel on Weblogic 12c. Name Collision

2012-10-10 Thread rinotan
Hi Claus Ibsen, I have tried removing the namespace but the error is still there. -- View this message in context: http://camel.465427.n5.nabble.com/Help-on-deploying-Camel-on-Weblogic-12c-Name-Collision-tp5720837p5720880.html Sent from the Camel - Users mailing list archive at Nabble.com.

from bean list to converter to DAO

2012-10-10 Thread maheshadepu
Hi, I am looking for a example & your thoughts about this problem. I have to parse a CSV file and save it to database. We already implemented data access logic using Hibernate. my code snippet is like this DataFormat bindy = new BindyCsvDataFormat("com.test.beans"); from(

Re: Camel JMS client_acknowledge mode

2012-10-10 Thread Raul Kripalani
If I recall correctly, when you don't set a predicate, Camel handles the exception by default. In Camel lingo, "handling" an exception means that the Exception is removed from the Exchange, so the consumer no longer "sees" it. What you want is for the JMS consumer to "see" the exception, so you n

Camel JMS client_acknowledge mode

2012-10-10 Thread wantastic
Hello all, I am trying to use the client_acknowledge mode instead of using transacted mode. My route looks like this: com.my.exception.Exception I know that if the message gets processed completely by the route, the ack will be sent to the queue.

Re: Removing an Endpoint from a route

2012-10-10 Thread alerios
Hi Guru, thanks for your reply. I think using the failover load balancer is not an option for me, since my Bean will not throw an exception when it fails. I want to disable the Endpoint when I want, based on health checks, for example. Also, I would like to use the weigthed loadbalancer instead,

Re: The problem with the client to an external WebService CXF

2012-10-10 Thread Christian Müller
You have to use to("cxf:bean:externalService") and configure the bean like this ("borrowed" from our code): http://localhost:7001/integration/ExternalService"; serviceClass="com.awl.wlsi.interfaces.ssp.sspCore.service.SSPCoreWebService" endpointName="ns:ExternalServicePort" serviceName=

Camel, websockets and Javascript

2012-10-10 Thread gonzalo diethelm
I'm back on this list after some time; apologies if this is obvious or previously discussed. I am thinking of the following architecture for a monitoring system: 1. A set of Camel routes that gather the information required from many different sources / formats. 2. A Camel route t

RE: Camel and JBoss

2012-10-10 Thread Flavio Magacho - M4U
I am talking about how to use Camel with JBoss and have some management functions like reloading the rules, have some statustics and stuff like that in a HTTP/JMX interface. Did you got what I mean? Thanks, Magacho -Original Message- From: Gnanaguru S [mailto:gnanaguru.sattanat...@wipro

The problem with the client to an external WebService CXF

2012-10-10 Thread tatar
Hello I use Apache Camel and CXF 2.6.2 2.10.0 Sharing their services with Camel CXF works excellent, but ... I think that CXF component can be used both to make your own WebService and to connect to the existing WS. I need to connect to an existing external service. Communication using POJO. Provi

Re: Camel-CXF web services are not available

2012-10-10 Thread Willem jiang
We need to clean up the namespace of SoapTransportFactory, as the "http://schemas.xmlsoap.org/soap/http/"; is not a validate namespace. I just filled a JIRA[1] for it. [1]https://issues.apache.org/jira/browse/CXF-4554 -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http:/

Single instance of running route in the cluster

2012-10-10 Thread Zhemzhitsky Sergey
Hello guys, What is the best way to have a single instance of running route in the cluster (multiple instances of the same route deployed on the different containers)? The example of such a requirement is a ftp/smpp access with a limited number of connections. So only one instance of route is al

Re: Camel-CXF web services are not available

2012-10-10 Thread Sachin
Yes Willem, it works with "http://schemas.xmlsoap.org/soap/http"; and not the "http://schemas.xmlsoap.org/soap/http/";. Should we raise JIRA in CXF? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-CXF-web-services-are-not-available-tp5720790p5720845.html Sent from

Re: Asynchronous socket read-write via camel

2012-10-10 Thread Chad Beaulac
Somebody asked me about this so I'm sharing my response with the list. The question was, how do I do this now if the functionality doesn't exist in camel-mina2 yet. Response: I've been working, off and on, to get this functionality into camel-mina2. Unfortunately, my schedule with customers ke

Re: Camel-CXF web services are not available

2012-10-10 Thread Willem jiang
I just checked the CXF code, there is an entry of "http://schemas.xmlsoap.org/soap/http"; You should use "http://schemas.xmlsoap.org/soap/http"; instead of "http://schemas.xmlsoap.org/soap/http/"; -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com |

Re: Camel-CXF web services are not available

2012-10-10 Thread Sachin
Yes Willem, i tried that and it works perfectly fine. But as you said it's workaround not a solution, since i have to change all my client's wsdl files. I have posted same concern in cxf site, let's see. Many thanks to confirm my workaround. -- View this message in context: http://camel.46542

Re: Help on deploying Camel on Weblogic 12c. Name Collision

2012-10-10 Thread Claus Ibsen
On Wed, Oct 10, 2012 at 11:39 AM, rinotan wrote: > Hi Guys, > > I encounter the following error when I try to deploy my .ear file that > contains camelContext into weblogic 12c. > *The exact .ear file can be deployed on weblogic 10.3 without any issues. > Would appreciate for any help provide: > >

Help on deploying Camel on Weblogic 12c. Name Collision

2012-10-10 Thread rinotan
Hi Guys, I encounter the following error when I try to deploy my .ear file that contains camelContext into weblogic 12c. *The exact .ear file can be deployed on weblogic 10.3 without any issues. Would appreciate for any help provide: The error is as follows: java.lang.exception:javax.faces.Face

Re: Camel-CXF web services are not available

2012-10-10 Thread Willem jiang
Hi Can you change the transportID in you WSDL from "http://schemas.xmlsoap.org/soap/http"; to "http://schemas.xmlsoap.org/wsdl/soap/http"; to workaround this issue? It looks current CXF SoapBindingFactory doesn't make a right mapping for it. -- Willem Jiang Red Hat, Inc. FuseSource is now

Re: Camel - Move specific exchanges ONLY to a different location

2012-10-10 Thread Claus Ibsen
On Wed, Oct 10, 2012 at 8:39 AM, raviwithyou wrote: > Hi, > > We had a scenario where we wanted to move only specific files to a different > location (say done using move=done) and keep the remaining exchanges in the > same location. > > This is the strategy we used to remove stale files for our a

Re: Removing an Endpoint from a route

2012-10-10 Thread Claus Ibsen
On Wed, Oct 10, 2012 at 6:25 AM, Gnanaguru S wrote: > > Hi Alejandro, > > I dont have knowledge on the option which you are trying. > > But why not you add a ' Failover ' attribute to your load balancing > endpoint. It will skip the failed endpoint and Jump to the next available > endpoint. http:

Re: Camel-CXF web services are not available

2012-10-10 Thread Sachin
I have tried Camel 2.9.1 with cxf 2.5.4, still the StackOverflow persists. I checked the SoapTransportFactory class) of cxf-rt-bindings-soap-2.5.4-.jar, it also supports only below namespaces. "http://schemas.xmlsoap.org/wsdl/soap/"; "http://schemas.xmlsoap.org/wsdl/http"; "http://schem