Export-Import of a package from a jar file included in a bundle

2008-10-08 Thread ribeiant
The problem is that I become a "java.lang.ExceptionInInitializerError" caused by "Caused by: java.lang.ClassNotFoundException: org.xml.sax.ContentHandler" I don't understand the problem... Thank you for the help Antonio -- View this message in context: http://www.nabble.com/Export-I

Re: Export-Import of a package from a jar file included in a bundle

2008-10-08 Thread Richard S. Hall
If bundle A has the xml-apis.jar file inside of it, is that file mentioned on the bundle's class path? For example, if your bundle contained: a.jar lib/ xml-apis.jar Then your manifest for A should contain: Bundle-ClassPath: lib/xml-apis.jar -> richard ribeiant wrote: H

Re: Export-Import of a package from a jar file included in a bundle

2008-10-08 Thread Richard S. Hall
Richard S. Hall wrote: If bundle A has the xml-apis.jar file inside of it, is that file mentioned on the bundle's class path? For example, if your bundle contained: a.jar lib/ xml-apis.jar Then your manifest for A should contain: Bundle-ClassPath: lib/xml-apis.jar Actu

Re: Export-Import of a package from a jar file included in a bundle

2008-10-08 Thread ribeiant
sax.ContentHandler" >>> I don't understand the problem... >>> Thank you for the help >>> Antonio >>> >>> >>> >> >> ------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional command

Re: Export-Import of a package from a jar file included in a bundle

2008-10-08 Thread Richard S. Hall
Hmm. Well, the actual error is probably misleading and that the real issue is likely that there is a class missing that ContentHandler needs. Without playing with it, it is hard to say. -> richard ribeiant wrote: Hi my classpath is Bundle-Classpath: .,xml-apis.jar and the jar file is direct i