2008/6/20 skg <[EMAIL PROTECTED]>: > > Hi, > > I worked with the example which uses jms to receive and send message to web > services. The consumer receives the message on servicemix console but what > if I want the message in some file or some simple java objects such as > hashmap. Can we store our message in that also.
So send to a file use the file endpoint... http://activemq.apache.org/camel/file.html e.g. from("activemq:SomeQueue").to("file://someDir"); To work with beans and hashmaps, just send the message to a bean... http://activemq.apache.org/camel/bean-integration.html -- James ------- http://macstrac.blogspot.com/ Open Source Integration http://open.iona.com
