Re: What jar is ca.uhn.hl7v2.parser.Parser in?

2009-02-11 Thread yesnid
Not that I am aware of. :) cmoulliard wrote: Hi, Are you using the camel - component HL7 ? Regards, Charles yesnid wrote: Hello All, I am getting a Class Not found Exception for: ca.uhn.hl7v2.parser.Parser what jar is this in? Thank you, Nick -- View

Re: What jar is ca.uhn.hl7v2.parser.Parser in?

2009-02-11 Thread Hadrian Zbarcea
Hi, I believe it's from hapi [1], and it's used by camel-hl7 which seems to be on your classpath. If you don't need it, make sure camel-hl7 is not on your classpath, otherwise add hapi to your classpath. Cheers Hadrian [1] http://hl7api.sourceforge.net/ On Feb 11, 2009, at 11:50 AM,

Re: What jar is ca.uhn.hl7v2.parser.Parser in?

2009-02-11 Thread Willem Jiang
How about just loading the converter when the component is load? Since the component is loaded when the camel context need it, it will help us to avoid the annoying class load error. Willem Willem Jiang wrote: Hi, I doubt it is caused by using the bundle jar. I just checked the camel-hl7

Re: What jar is ca.uhn.hl7v2.parser.Parser in?

2009-02-05 Thread Claus Ibsen
Hi Its a dependency in the camel-hl7 component http://camel.apache.org/hl7.html The .jar is from the HAPI library http://hl7api.sourceforge.net/ If you are using maven it should really be able to auto download those .jars. On Thu, Feb 5, 2009 at 5:22 PM, yesnid ns...@pelco.com wrote: Hello