We have a server that supports a socket-based protocol. However, it's
not a synchronous situation. I send a message over the output stream
of the socket and a it goes over to the server to processed. The
reply message will be received at some later time on the socket's
input stream, not necessar
What type is the column declared as? AFAIK it should be text.
Den 4. aug. 2011 20:38 skrev "garyssidhu" følgende:
> Hi , I am newbie to Camel's JDBC Component. I need to insert data into
clob
> column of Oracle 11g Table using Camel's JDBC Component.
>
> My route looks like this
>
> from("direct:r
Hi James,
I hope I understand your scenario correctly. Here are a few thoughts. I assume
want to use camel-netty [1] to send messages to your sever (if you have your
own code that does that, you can use it too, but you'd have to write your own
Processor or Component). Iiuic, your scenario is co
On Sat, Aug 6, 2011 at 10:33 AM, Zbarcea Hadrian wrote:
> Hi James,
>
> I hope I understand your scenario correctly. Here are a few thoughts. I
> assume want to use camel-netty [1] to send messages to your sever (if you
> have your own code that does that, you can use it too, but you'd have to
David, I am inserting string size greater than 4000, so column is CLOB
Cheers
--
View this message in context:
http://camel.465427.n5.nabble.com/Insert-into-CLOB-Column-in-Oracle-using-JDBC-Component-tp4667458p4673824.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi all,
I wrote my own component based on
http://camel.apache.org/creating-a-new-camel-component.html
And created a file in \META-INF\services\org\apache\camel\component that links
my Class
After the maven compile I get a jar that I deploy in karaf's deploy folder and
that is listed in karaf
Hello Micheal,
1: Did your karaf support camel-core (Is it installed in your container).
2: Where is defined your component class ?
3: To install your bundle you can use bundle:install command
I hope this can help ..
--Filippo
2011/8/6 Michael Mertins :
>
> Hi all,
>
> I wrote my own comp