olingo2 - How to resolve No enum constant found

2019-05-06 Thread Ghosh1, Sandeep
try It seems olingo2 is trying to find a enum of type AllocationOrderSessions, which it couldn't find. Is there any configuration in olingo2 component, that will stop searching for any application specific enum. Regards, Sandeep

olingo2 - How to resolve No enum constant found

2019-05-04 Thread Sandeep Ghosh
Hi, I am using camel-olingo2 to read row count of my resource. My route is simple .to("olingo2://read/questionAnswers/$count")It is failing with the exception.  Caused by: java.lang.IllegalArgumentException: No enum constant org.apache.olingo.odata2.api.edm.EdmSimpleTypeKind.AllocationOrderSess

Re: Bindy

2013-04-24 Thread sandeep
Hi, I tried something like camelContext.setPackageScanClassResolver(classResolver); and no Bindy get JBossPackageScanClassResolver. but still issue is same it is not able to fine my annotated classes. :( -- View this message in context: http://camel.465427.n5.nabble.com/Bindy-tp5731324p57314

Re: Bindy

2013-04-23 Thread sandeep
Hi Claus Ibsen, classloder is decided by BindyCsvDataFormat class public Object unmarshal(Exchange exchange, InputStream inputStream) throws Exception { BindyCsvFactory factory = (BindyCsvFactory)getFactory(*exchange.getContext().getPackageScanClassResolver()*); can you let me know how c

Re: Bindy

2013-04-23 Thread sandeep
sorry for reposting but previous post not getting accepted by mailing list Hi Claus Ibsen, classloder is decided by BindyCsvDataFormat class public Object unmarshal(Exchange exchange, InputStream inputStream) throws Exception { BindyCsvFactory factory = (BindyCsvFactory)getFactory(e

Re: Bindy

2013-04-23 Thread sandeep
I got some sample but all in xml spring context. But I am working in DSL no xml. Please let me know how to do that. -- View this message in context: http://camel.465427.n5.nabble.com/Bindy-tp5731324p5731364.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Bindy

2013-04-23 Thread sandeep
I did tried that also. problem is the path is create to look up package get wrong. it is supose to be like "C:\Tool\JBoss\jboss-eap-6.0\standalone\tmp\vfs\deploymente15f1c1683b39c76\." but path the classLoader.getResources returns is something like "C:\Tool\JBoss\jboss-eap-6.0\bin\content

Bindy

2013-04-23 Thread sandeep
I am trying to convert an CSV file to XML route look like BindyCsvDataFormat bindy = new BindyCsvDataFormat(UspsTrackRecord.class.getPackage().getName()); from(fromLocation) .unmarshal(bindy) .marshal() .xstream() .to(localDir); but i get error: 12:48:08,965 ERROR [org.a