Re: Hql error throws when the application specific jar name with starting a capital letter

2007-12-17 Thread Kanchana Welagedara
I'm on Windows.Absolutely.That why I was wondering..Any other suggestion in this Richard ?Really appreciate if you can share anything you know On Dec 17, 2007 12:54 AM, Richard G. Reyes [EMAIL PROTECTED] wrote: Hi Kanchana, If you are deploying in a unix environment, I guess it might be

Re: Hql error throws when the application specific jar name with starting a capital letter

2007-12-17 Thread Konstantin Kolinko
I am not sure, but it MAY be that a jar is being loaded twice: a) directly, as any other jar located in WEB-INF/lib b) indirectly, if it is mentioned in Class-Path directive of the manifest file of some other jar. If the name mentioned in manifest file differs from the actual name of the jar, I

Hql error throws when the application specific jar name with starting a capital letter

2007-12-16 Thread Kanchana Welagedara
Hi All I have used appfuse to write an web application and deployed that in the Tomcat server.There is another dependency application specif jar (let's say xa.jar)file which refers in Application folder/WEB_INF/lib/xa.jar when this names with capital letters (Xa.jar ) it throws a hql Query error

Re: Hql error throws when the application specific jar name with starting a capital letter

2007-12-16 Thread Richard G. Reyes
Hi Kanchana, If you are deploying in a unix environment, I guess it might be because that under Unix filenames are case sensitive, xa.jar and Xa.jar are 2 different files. You might want to try renaming the files.. just my .02cents Richard Kanchana Welagedara wrote: Hi All I have used