This content has been marked as final.
Show 4 replies
-
1. Re: Class Path entry does not point to a valid jar for Class-Path reference
jaikiran Apr 15, 2012 1:19 AM (in response to raylite3)So where are those xercesImpl.jar, xml-apis.jar and serializer.jar located?
-
2. Re: Class Path entry does not point to a valid jar for Class-Path reference
raylite3 Apr 15, 2012 1:55 AM (in response to jaikiran)They are present in WEB-INF/lib but they are named with the version numbers. So xml-apis.jar is xml-apis-2.7.1.jar, etc.
I suppose I can change the packaging to rename it to xml-apis.jar but I was wondering if there is some way to "alias" it for the jboss deployer?
-
3. Re: Class Path entry does not point to a valid jar for Class-Path reference
jaikiran Apr 15, 2012 2:50 AM (in response to raylite3)Fixing the Class-Path entries or ignoring the WARN is the only option you have. Since all the jars in the WEB-INF/lib are anyway available in the classpath of the application, I would just ignore the WARN.
Edited by Jaikiran - Fixed a typo.
-
4. Re: Class Path entry does not point to a valid jar for Class-Path reference
raylite3 Apr 15, 2012 2:48 AM (in response to jaikiran)OK, thanks...