Re: NoTypeConversionAvailableException exception while running junit test case

2017-05-09 Thread Tomohisa Igarashi
Ravi, answer for you is always same, use latest camel 2.19.0 without SwitchYard or ask Red Hat support. Stop abuse camel user community. On 05/10/2017 01:48 AM, ravi21588 wrote: Hi iam getting NoTypeConversionAvailableException while using xpath in camel,iam using camel 2.10.Iam getting this

RE: NoTypeConversionAvailableException

2015-05-11 Thread Hans Orbaan
yourself and then marshal it: FACTORY.createAcknowledgeOrders((OrderResults) object); -Oorspronkelijk bericht- Van: jainmcs03 [mailto:tojayendran.in...@gmail.com] Verzonden: Monday 11 May 2015 13:31 Aan: users@camel.apache.org Onderwerp: Re: NoTypeConversionAvailableException Hi Claus

Re: NoTypeConversionAvailableException

2015-05-11 Thread jainmcs03
Hi Claus, I just added @XmlRootElement() in class InquiryRequestType and now no error happens conversion done. But the generated PAYLOAD looks like below, is this right? http://services.equifax.com/eport/ws/schemas/1.0";> 3 Actually inquiryRequestType is a type of root element . Re

Re: NoTypeConversionAvailableException

2015-05-11 Thread jainmcs03
Hi Claus, Yes, @XmlRootElement() missing. No class with root element annotation in my code generated by cxf-codegen-plugin. Actually my payload should be like this, http://services.equifax.com/eport/ws/schemas/1.0";> Part of XSD is below, The WS I

Re: NoTypeConversionAvailableException

2015-05-11 Thread Claus Ibsen
Hi Just to be sure, is this class .InquiryRequestType annotated with JAXB and do you have a jaxb.index file or what else JAXB requires? Usually if you CXF you can auto generate them using its maven plugin On Mon, May 11, 2015 at 9:58 AM, jainmcs03 wrote: > Hi Claus, > > Its already added below

Re: NoTypeConversionAvailableException

2015-05-11 Thread jainmcs03
Hi Claus, Its already added below dependency. Any special handling needed in processor? org.apache.camel camel-jaxb 2.15.1 Regards, Jayendran -- View this message in context: http://camel.465427.n5.nabble.com/NoTypeConversionAvailableException-tp5766952p57

Re: NoTypeConversionAvailableException

2015-05-11 Thread Claus Ibsen
Hi Do you have camel-jaxb on the classpath? It can help with coverting JAXB POJOs to streams On Mon, May 11, 2015 at 8:57 AM, jainmcs03 wrote: > > Team, > > Below my route and im getting below exception while unmarshal then marshal. > Pls help resolve. > > Caused by: org.apache.camel.NoTypeConve

Re: NoTypeConversionAvailableException : When using interface as Apache Camel Proxy

2012-12-10 Thread Willem jiang
I just did a simple test[1] based on the description, you need to make sure you setup the message body rightly as a response. Please check out the test case[1] as an example. [1]http://svn.apache.org/viewvc?rev=1420015&view=rev -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat

Re: NoTypeConversionAvailableException : When using interface as Apache Camel Proxy

2012-12-10 Thread Willem jiang
What's the appUtil.extractResponse looks like? Did you try to converter the message body into ServiceProviderRequest? -- 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

Re: NoTypeConversionAvailableException

2012-07-07 Thread Christian Müller
The Camel team already provides many examples [1] and tutorials [2] for free. The simple unit test [3] shows how to write a route which sends to an ActiveMQ queue and also consumes from this queue. And in this package, you can find many more camel-jms tests... Any by the way, it's transparent for

Re: NoTypeConversionAvailableException

2012-07-05 Thread bharathi_camel_learn
Hi , Thanks for your help. I can able to see the size of the queue. This is my requirement, i am sending a message to external ActiveMQ broker. I wand to receive the same message from my camel code. Please send the sample code for this. Thanks in advance. Regards, Bharathi S. -- View this m

Re: NoTypeConversionAvailableException

2012-07-05 Thread Christian Müller
Looks like the message was empty: size = 0 bytesOut =null/ What should the content be? Best, Christian On Thu, Jul 5, 2012 at 3:01 PM, bharathi_camel_learn < bharathi...@cognizant.com> wrote: > Hi all, > > i am getting below exception when i receive a message from external > ActiveMQ > broker.

Re: NoTypeConversionAvailableException - Camel 2.1-SNASPHOT & Camel QuickFix

2009-11-12 Thread Claus Ibsen
Hi I guess the problem is that you use bean parameter binding and that you use a List type in your bean. And that the quickfix message cannot be coverted to a java.util.List. Otherwise create an small unit test in camel-quickfix that demonstrates this and mark it with @Ignore. Then I can take a l