Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Virgo » Error configuring application listener: ClassNotFoundException
Error configuring application listener: ClassNotFoundException [message #816915] Fri, 09 March 2012 12:19 Go to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
Hello,
I've tried to deploy a standard war file into a virgo-tomcat-server-3.0.2.RELEASE/pickup directory with the result that the application listener classes cannot be found.
This very same war file runs in a tomcat-7.0.22 without any problems. A manual inspection of the classpath and the web.xml offers no suspicious things. No special characters all classes are located as expected.
I already set the WABHeaders=defaulted and started with -clean option as proposed in several similar threads but without success.
Thanks,
David
[2012-03-09 12:38:02.442] INFO  start-signalling-1           org.eclipse.virgo.medic.eventlog.default                         WE0000I Starting web bundle 'myApps' version '0.0.0' with context path '/myApps'. 
[2012-03-09 12:38:02.754] ERROR Thread-31                    o.a.catalina.core.ContainerBase.[Catalina].[localhost].[/myApps]    Error configuring application listener of class com.myCompany.myApps.web.ApplicationListener java.lang.ClassNotFoundException: com.myCompany.myApps.web.ApplicationListener
	at org.eclipse.gemini.web.tomcat.internal.loading.BundleWebappClassLoader.loadClass(BundleWebappClassLoader.java:306)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
	at org.apache.catalina.core.DefaultInstanceManager.loadcd Class(DefaultInstanceManager.java:415)
	at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:397)
	at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:118)
	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4660)
	at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5226)
	at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5221)
	at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
	at java.util.concurrent.FutureTask.run(FutureTask.java:166)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
	at java.lang.Thread.run(Thread.java:722)

[2012-03-09 12:38:02.754] ERROR Thread-31                    o.a.catalina.core.ContainerBase.[Catalina].[localhost].[/myApps]    Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
	at org.eclipse.gemini.web.tomcat.internal.loading.BundleWebappClassLoader.loadClass(BundleWebappClassLoader.java:306)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
	at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:415)
	at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:397)
	at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:118)
	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4660)
	at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5226)
	at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5221)
	at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
	at java.util.concurrent.FutureTask.run(FutureTask.java:166)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
	at java.lang.Thread.run(Thread.java:722)
Re: Error configuring application listener: ClassNotFoundException [message #816949 is a reply to message #816915] Fri, 09 March 2012 13:00 Go to previous messageGo to next message
Glyn Normington is currently offline Glyn NormingtonFriend
Messages: 1222
Registered: July 2009
Senior Member
Could you paste the manifest and web.xml of the WAR file here? Unless someone here can spot an obvious mistake, one technique to get to the bottom of such problems (which are usually application bugs I'm afraid) is to cut down the application to the bare minimum that still fails in readiness for attaching the WAR to a bug. Often people find the problem during this process.
Re: Error configuring application listener: ClassNotFoundException [message #816969 is a reply to message #816949] Fri, 09 March 2012 13:27 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
MANIFEST.MF:

Manifest-Version: 1.0

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

  <display-name>MYAPPS</display-name>
  <description>MYAPPS</description>

  <welcome-file-list>
    <welcome-file>myApps.html</welcome-file>
  </welcome-file-list>

  <listener>
    <listener-class>com.myCompany.myApps.web.ApplicationListener</listener-class>
  </listener>

  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <filter>
    <filter-name>gwtRequestFilter</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>

  <filter-mapping>
    <filter-name>gwtRequestFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.set</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.get</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.create</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.delete</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>

</web-app>
Re: Error configuring application listener: ClassNotFoundException [message #816971 is a reply to message #816969] Fri, 09 March 2012 13:29 Go to previous messageGo to next message
Glyn Normington is currently offline Glyn NormingtonFriend
Messages: 1222
Registered: July 2009
Senior Member
Please could you list the contents of WEB-INF/lib too for completeness.
Re: Error configuring application listener: ClassNotFoundException [message #817014 is a reply to message #816971] Fri, 09 March 2012 14:33 Go to previous messageGo to next message
Chris Frost is currently offline Chris FrostFriend
Messages: 230
Registered: January 2010
Location: Southampton, England
Senior Member

Hi,

Could you try adding the following to your web.xml just before the listener definitions.

<context-param>
<param-name>contextClass</param-name>
<param-value>org.eclipse.virgo.web.dm.ServerOsgiBundleXmlWebApplicationContext</param-value>
</context-param>

You will need to add that package to the imports in your manifest as well.

Thanks, Chris.


------------------------------------------------
Chris Frost, Twitter @cgfrost
Springsource, a divison of VMware.

[Updated on: Fri, 09 March 2012 14:33]

Report message to a moderator

Re: Error configuring application listener: ClassNotFoundException [message #817018 is a reply to message #816971] Fri, 09 March 2012 14:38 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
WEB-INF/lib:
communication-2.1-SNAPSHOT.jar
activemq-core-5.5.1.jar
activemq-protobuf-1.1.jar
aopalliance-1.0.jar
asm-3.3.1.jar
avalon-framework-4.1.5.jar
bsh-2.0b4.jar
cglib-2.2.2.jar
client-2.5.24.jar
common-2.1-SNAPSHOT-sources.jar
common-2.1-SNAPSHOT.jar
commons-logging-1.1.1.jar
commons-net-2.0.jar
communication-2.5.24.jar
configuration-2.1-SNAPSHOT.jar
gchart-2.7.jar
geronimo-j2ee-management_1.1_spec-1.0.1.jar
geronimo-jms_1.1_spec-1.1.1.jar
gui-lib-2.1-SNAPSHOT.jar
guilibrary-2.5.24.jar
gwt-dev-2.4.0.jar
gwt-user-2.4.0.jar
gxt-2.2.4.jar
infinispan-core-5.1.2.CR1.jar
jacorb-2.3.0_02.jar
jasypt-1.7.jar
jboss-logging-3.1.0.CR2.jar
jboss-marshalling-1.3.6.GA.jar
jboss-marshalling-river-1.3.6.GA.jar
jboss-transaction-api_1.1_spec-1.0.0.Final.jar
jcommander-1.12.jar
jgroups-3.0.6.Final.jar
jms-api-1.1-rev-1.jar
json-20090211.jar
jstl-1.2.jar
junit-4.7.jar
kahadb-5.5.1.jar
log4j-1.2.16.jar
logkit-1.2.jar
org.osgi.core-4.1.0.jar
out.txt
rhq-pluginAnnotations-3.0.4.jar
myApps-configuration-1.0.0-SNAPSHOT.jar
myApps-emmgr-service-1.0.0-SNAPSHOT.jar
myApps-service-1.0.0-SNAPSHOT.jar
myApps-web-1.0.0-SNAPSHOT.jar
security-remoting-1.1.44.jar
server-2.1-SNAPSHOT.jar
serveradapter-2.5.24.jar
servlet-api-2.5.jar
she-types-2.1-SNAPSHOT.jar
slf4j-api-1.5.11.jar
snakeyaml-1.6.jar
snmp-2.1-SNAPSHOT.jar
snmp4j-1.11.jar
spring-aop-3.1.0.RELEASE.jar
spring-asm-3.1.0.RELEASE.jar
spring-beans-3.1.0.RELEASE.jar
spring-context-3.1.0.RELEASE.jar
spring-context-support-3.1.0.RELEASE.jar
spring-core-3.1.0.RELEASE.jar
spring-expression-3.1.0.RELEASE.jar
spring-jms-3.0.3.RELEASE.jar
spring-tx-3.0.3.RELEASE.jar
spring-web-3.1.0.RELEASE.jar
spring-webmvc-3.1.0.RELEASE.jar
stax2-api-3.1.1.jar
test-configuration-2.1-SNAPSHOT.jar
test-util-2.1-SNAPSHOT.jar
testng-6.1.1.jar
validation-api-1.0.0.GA-sources.jar
validation-api-1.0.0.GA.jar
web-2.1-SNAPSHOT.jar
woodstox-core-asl-4.1.1.jar
xmlpull-1.1.3.1.jar
xo-2.5.24.jar
xoshe-1.1.0-DEV-4.jar
xpp3_min-1.1.4c.jar
xstream-1.4.2.jar
Re: Error configuring application listener: ClassNotFoundException [message #817046 is a reply to message #817018] Fri, 09 March 2012 15:14 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
The manifest looks like this now:
Manifest-Version: 1.0
Import-Package: org.eclipse.virgo.web.dm

The web.xml was patched. But I still get the same error.

I guess you want to make the Spring XmlWebApplicationContext class available through the osgi mechanism.
But our own com.myCompany.myApps.web.ApplicationListener class is also not resolvable.


Re: Error configuring application listener: ClassNotFoundException [message #817878 is a reply to message #817046] Sat, 10 March 2012 20:16 Go to previous messageGo to next message
Violeta Georgieva is currently offline Violeta GeorgievaFriend
Messages: 278
Registered: October 2010
Senior Member
Can you tell us what the class load commands return for the class that cannot be resolved:
http://wiki.eclipse.org/Virgo/FAQ#How_can_I_diagnose_class_loading_problems.3F
Re: Error configuring application listener: ClassNotFoundException [message #818922 is a reply to message #817878] Mon, 12 March 2012 09:31 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
My virgo console doesn't provide commands like clhas, vsh, etc.
Is there any chance to activate it somehow?
Re: Error configuring application listener: ClassNotFoundException [message #818988 is a reply to message #818922] Mon, 12 March 2012 10:53 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
Ok, got it.

The output for our class=com.myCompany.myApps.ApplicationListener is:
osgi> clhas com.myCompany.myApps.ApplicationListener
No bundle contains class [com.myCompany.myApps.ApplicationListener]

osgi> clload com.myCompany.myApps.ApplicationListener
No bundle can load class [com.myCompany.myApps.ApplicationListener]

osgi> clexport  com.myCompany.myApps.ApplicationListener
No bundle exports class [com.myCompany.myApps.ApplicationListener]


for spring org.springframework.web.context.ContextLoaderListener
Bundles containing [org.springframework.web.context.ContextLoaderListener]:
  90    org.springframework.web
osgi> clload org.springframework.web.context.ContextLoaderListener

Successfully loaded [org.springframework.web.context.ContextLoaderListener] from:
  94    org.eclipse.virgo.web.dm
                [exported by 90 org.springframework.web]
  112   org.springframework.web.servlet
                [exported by 90 org.springframework.web]
  87    org.springframework.orm
                [exported by 90 org.springframework.web]
  114   org.eclipse.virgo.apps.repository-3.0.2.RELEASE-org.eclipse.virgo.apps.repository.web
                [exported by 90 org.springframework.web]
  109   org.eclipse.virgo.apps.admin.web
                [exported by 90 org.springframework.web]
  90    org.springframework.web
osgi> clexport org.springframework.web.context.ContextLoaderListener

Bundles exporting [org.springframework.web.context.ContextLoaderListener]:
  90    org.springframework.web
Re: Error configuring application listener: ClassNotFoundException [message #820152 is a reply to message #818988] Tue, 13 March 2012 19:57 Go to previous messageGo to next message
Violeta Georgieva is currently offline Violeta GeorgievaFriend
Messages: 278
Registered: October 2010
Senior Member
Ok it appears that somehow either the class is not there really or the bundle classpath is not correct.
Can you check the both.

post here your Manifest.mf file
Re: Error configuring application listener: ClassNotFoundException [message #820548 is a reply to message #820152] Wed, 14 March 2012 09:13 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
The manifest is empty. We don't really need it.
Manifest-Version: 1.0


But we tried it also with the following
Manifest-Version: 1.0
Import-Package: org.eclipse.virgo.web.dm

Re: Error configuring application listener: ClassNotFoundException [message #820561 is a reply to message #820548] Wed, 14 March 2012 09:31 Go to previous messageGo to next message
Violeta Georgieva is currently offline Violeta GeorgievaFriend
Messages: 278
Registered: October 2010
Senior Member
No this is the original Manifest.mf file.
I meant the one that is generated. You can easily see it in the telnet console with "headers" command.
Re: Error configuring application listener: ClassNotFoundException [message #820610 is a reply to message #820561] Wed, 14 March 2012 10:38 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
Ok, nice. The Bundle-ClassPath property contains all expected jars. The WEB-INF/lib/web-2.1-SNAPSHOT.jar contains the missing class com.myCompany.myApps.ApplicationListener.
osgi> headers 117

Bundle 117
----------
Manifest-Version = 1.0
Bundle-ClassPath = WEB-INF/classes,WEB-INF/lib/aci-communication-2.1-SNAPSHOT.jar,WEB-INF/lib/activemq-core-5.4.2.jar,WE
B-INF/lib/activemq-protobuf-1.1.jar,WEB-INF/lib/aopalliance-1.0.jar,WEB-INF/lib/asm-3.3.1.jar,WEB-INF/lib/avalon-framewo
rk-4.1.5.jar,WEB-INF/lib/cglib-2.2.2.jar,WEB-INF/lib/client-2.5.31.jar,WEB-INF/lib/common-2.1-SNAPSHOT.jar,WEB-INF/lib/c
ommons-codec-1.1.jar,WEB-INF/lib/commons-lang-2.1.jar,WEB-INF/lib/commons-logging-1.1.1.jar,WEB-INF/lib/commons-logging-
api-1.1.jar,WEB-INF/lib/commons-net-2.2.jar,WEB-INF/lib/communication-2.5.31.jar,WEB-INF/lib/configuration-2.1-SNAPSHOT.
jar,WEB-INF/lib/gchart-2.7.jar,WEB-INF/lib/geronimo-j2ee-management_1.1_spec-1.0.1.jar,WEB-INF/lib/geronimo-jms_1.1_spec
-1.1.1.jar,WEB-INF/lib/gui-lib-2.1-SNAPSHOT-sources.jar,WEB-INF/lib/gui-lib-2.1-SNAPSHOT.jar,WEB-INF/lib/guilibrary-2.5.
31.jar,WEB-INF/lib/gxt-2.2.4.jar,WEB-INF/lib/icu4j-4.0.1.jar,WEB-INF/lib/jacorb-2.3.0_02.jar,WEB-INF/lib/jasypt-1.6.jar,
WEB-INF/lib/jcommon-1.0.16.jar,WEB-INF/lib/jfreechart-1.0.13.jar,WEB-INF/lib/json-20090211.jar,WEB-INF/lib/jstl-1.2.jar,
WEB-INF/lib/junit-3.8.1.jar,WEB-INF/lib/kahadb-5.4.2.jar,WEB-INF/lib/log4j-1.2.16.jar,WEB-INF/lib/logkit-1.2.jar,WEB-INF
/lib/org.osgi.core-4.1.0.jar,WEB-INF/lib/security-remoting-1.1.44.jar,WEB-INF/lib/server-2.1-SNAPSHOT.jar,WEB-INF/lib/se
rveradapter-2.5.31.jar,WEB-INF/lib/she-types-2.1-SNAPSHOT.jar,WEB-INF/lib/snmp-2.1-SNAPSHOT.jar,WEB-INF/lib/snmp4j-1.11.
jar,WEB-INF/lib/spring-aop-3.1.0.RELEASE.jar,WEB-INF/lib/spring-asm-3.1.0.RELEASE.jar,WEB-INF/lib/spring-beans-3.1.0.REL
EASE.jar,WEB-INF/lib/spring-context-3.1.0.RELEASE.jar,WEB-INF/lib/spring-context-support-3.1.0.RELEASE.jar,WEB-INF/lib/s
pring-core-3.1.0.RELEASE.jar,WEB-INF/lib/spring-expression-3.1.0.RELEASE.jar,WEB-INF/lib/spring-jms-3.0.3.RELEASE.jar,WE
B-INF/lib/spring-tx-3.0.3.RELEASE.jar,WEB-INF/lib/spring-web-3.1.0.RELEASE.jar,WEB-INF/lib/spring-webmvc-3.1.0.RELEASE.j
ar,WEB-INF/lib/test-util-2.1-SNAPSHOT.jar,WEB-INF/lib/web-2.1-SNAPSHOT.jar,WEB-INF/lib/xmlpull-1.1.3.1.jar,WEB-INF/lib/x
o-2.5.31.jar,WEB-INF/lib/xoshe-1.1.0-DEV-14.jar,WEB-INF/lib/xpp3_min-1.1.4c.jar,WEB-INF/lib/xstream-1.4.2.jar
org-eclipse-gemini-web-DefaultWABHeaders = true
Module-Type = web-bundle
Build-Jdk = 1.7.0_02
Built-By = ll008173
Bundle-ManifestVersion = 2
Created-By = Apache Maven
Bundle-SymbolicName = myApps
Web-ContextPath = myApps
Import-Package = javax.crypto.interfaces;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.provisional.verifier;version
="[0.0.0, 0.0.0]",javax.management.timer;version="[0.0.0, 0.0.0]",javax.jws;version="[0.0.0, 2.0.0]",org.eclipse.osgi.ba
seadaptor.hooks;version="[0.0.0, 0.0.0]",javax.rmi.ssl;version="[0.0.0, 0.0.0]",org.osgi.framework.wiring;version="[1.0.
0, 1.0.0]",org.w3c.dom.ranges;version="[0.0.0, 0.0.0]",javax.naming.spi;version="[0.0.0, 0.0.0]",javax.xml.stream;versio
n="[0.0.0, 1.0.1]",javax.swing.filechooser;version="[0.0.0, 0.0.0]",javax.swing.plaf;version="[0.0.0, 0.0.0]",javax.lang
.model;version="[0.0.0, 0.0.0]",javax.lang.model.util;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.eventmgr;versi
on="[1.2.0, 1.2.0]",javax.naming.ldap;version="[0.0.0, 0.0.0]",javax.security.auth.kerberos;version="[0.0.0, 0.0.0]",jav
ax.crypto;version="[0.0.0, 0.0.0]",javax.servlet.jsp;version="2.1.0",javax.naming.event;version="[0.0.0, 0.0.0]",javax.p
rint.attribute.standard;version="[0.0.0, 0.0.0]",javax.imageio.plugins.bmp;version="[0.0.0, 0.0.0]",org.eclipse.osgi.bas
eadaptor.bundlefile;version="[0.0.0, 0.0.0]",javax.annotation;version="[0.0.0, 1.0.0]",javax.xml.ws.handler.soap;version
="[0.0.0, 2.1.1]",javax.xml.transform.dom;version="[0.0.0, 0.0.0]",javax.print.attribute;version="[0.0.0, 0.0.0]",javax.
sql.rowset.serial;version="[0.0.0, 0.0.0]",org.w3c.dom.traversal;version="[0.0.0, 0.0.0]",org.eclipse.core.runtime.inter
nal.adaptor;version="[0.0.0, 0.0.0]",org.osgi.framework.hooks.resolver;version="[1.0.0, 1.0.0]",javax.sound.midi;version
="[0.0.0, 0.0.0]",org.eclipse.osgi.service.pluginconversion;version="[1.0.0, 1.0.0]",javax.swing.event;version="[0.0.0,
0.0.0]",javax.xml.ws.spi;version="[0.0.0, 2.1.1]",org.eclipse.osgi.util;version="[1.1.0, 1.1.0]",javax.xml.stream.util;v
ersion="[0.0.0, 1.0.1]",javax.net;version="[0.0.0, 0.0.0]",javax.security.auth.spi;version="[0.0.0, 0.0.0]",javax.manage
ment.loading;version="[0.0.0, 0.0.0]",javax.print;version="[0.0.0, 0.0.0]",javax.xml.crypto.dsig.keyinfo;version="[0.0.0
, 1.0.0]",javax.swing.plaf.multi;version="[0.0.0, 0.0.0]",javax.xml.namespace;version="[0.0.0, 0.0.0]",javax.servlet;ver
sion="2.5.0",org.osgi.service.log;version="[1.3.0, 1.3.0]",org.eclipse.osgi.framework.internal.protocol;version="[0.0.0,
 0.0.0]",javax.swing;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.loader;version="[0.0.0, 0.0.0]",javax.xml.transf
orm.sax;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.localization;version="[1.1.0, 1.1.0]",javax.management.relatio
n;version="[0.0.0, 0.0.0]",javax.naming;version="[0.0.0, 0.0.0]",javax.xml.transform.stax;version="[0.0.0, 0.0.0]",org.e
clipse.core.runtime.internal.stats;version="[0.0.0, 0.0.0]",org.omg.stub.java.rmi;version="[0.0.0, 0.0.0]",javax.xml.cry
pto.dsig.dom;version="[0.0.0, 1.0.0]",javax.xml.parsers;version="[0.0.0, 0.0.0]",org.ietf.jgss;version="[0.0.0, 0.0.0]",
javax.xml.xpath;version="[0.0.0, 0.0.0]",javax.xml.bind.attachment;version="[0.0.0, 2.0.0]",org.eclipse.osgi.internal.co
mposite;version="[0.0.0, 0.0.0]",javax.servlet.jsp.el;version="2.1.0",org.eclipse.osgi.framework.console;version="[1.1.0
, 1.1.0]",org.eclipse.osgi.storagemanager;version="[1.0.0, 1.0.0]",javax.xml.crypto.dsig.spec;version="[0.0.0, 1.0.0]",o
rg.eclipse.osgi.internal.permadmin;version="[0.0.0, 0.0.0]",javax.swing.undo;version="[0.0.0, 0.0.0]",javax.swing.text;v
ersion="[0.0.0, 0.0.0]",javax.print.event;version="[0.0.0, 0.0.0]",javax.imageio.spi;version="[0.0.0, 0.0.0]",org.osgi.s
ervice.framework;version="[1.0.0, 1.0.0]",org.w3c.dom.stylesheets;version="[0.0.0, 0.0.0]",javax.script;version="[0.0.0,
 1.1.0]",org.w3c.dom.ls;version="[0.0.0, 0.0.0]",org.osgi.framework.launch;version="[1.0.0, 1.0.0]",org.eclipse.osgi.fra
mework.util;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.environment;version="[1.3.0, 1.3.0]",javax.xml.bind.annota
tion.adapters;version="[0.0.0, 2.0.0]",org.eclipse.osgi.internal.serviceregistry;version="[0.0.0, 0.0.0]",javax.xml.stre
am.events;version="[0.0.0, 1.0.1]",javax.sql;version="[0.0.0, 0.0.0]",org.eclipse.equinox.log.internal;version="[0.0.0,
0.0.0]",javax.transaction;version="[0.0.0, 1.1.0]",javax.rmi;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.datalocat
ion;version="[1.3.0, 1.3.0]",org.eclipse.osgi.internal.resolver;version="[0.0.0, 0.0.0]",org.eclipse.osgi.baseadaptor;ve
rsion="[0.0.0, 0.0.0]",javax.xml.soap;version="[0.0.0, 1.3.0]",javax.management.modelmbean;version="[0.0.0, 0.0.0]",java
x.xml.bind;version="[0.0.0, 2.0.0]",javax.xml.ws;version="[0.0.0, 2.1.1]",org.w3c.dom.html;version="[0.0.0, 0.0.0]",org.
eclipse.osgi.framework.debug;version="[0.0.0, 0.0.0]",javax.swing.tree;version="[0.0.0, 0.0.0]",javax.sound.midi.spi;ver
sion="[0.0.0, 0.0.0]",org.eclipse.equinox.log;version="[1.0.0, 1.0.0]",org.w3c.dom.css;version="[0.0.0, 0.0.0]",org.ecli
pse.osgi.event;version="[1.0.0, 1.0.0]",org.eclipse.osgi.framework.internal.protocol.reference;version="[0.0.0, 0.0.0]",
org.xml.sax;version="[0.0.0, 0.0.0]",javax.xml.ws.handler;version="[0.0.0, 2.1.1]",org.eclipse.osgi.service.runnable;ver
sion="[1.1.0, 1.1.0]",org.eclipse.osgi.internal.service.security;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.ada
ptor;version="[0.0.0, 0.0.0]",javax.sql.rowset;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.reliablefile
;version="[0.0.0, 0.0.0]",org.eclipse.core.runtime.adaptor;version="[0.0.0, 0.0.0]",javax.swing.plaf.basic;version="[0.0
.0, 0.0.0]",javax.swing.border;version="[0.0.0, 0.0.0]",javax.management.openmbean;version="[0.0.0, 0.0.0]",javax.securi
ty.auth;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.security;version="[1.0.0, 1.0.0]",javax.imageio.event;version=
"[0.0.0, 0.0.0]",org.w3c.dom;version="[0.0.0, 0.0.0]",javax.xml.datatype;version="[0.0.0, 0.0.0]",javax.imageio.metadata
;version="[0.0.0, 0.0.0]",javax.management.remote;version="[0.0.0, 0.0.0]",org.omg.CORBA.DynAnyPackage;version="[0.0.0,
0.0.0]",javax.swing.table;version="[0.0.0, 0.0.0]",javax.xml.transform.stream;version="[0.0.0, 0.0.0]",javax.xml.crypto;
version="[0.0.0, 1.0.0]",org.eclipse.osgi.service.resolver;version="[1.5.0, 1.5.0]",javax.annotation.processing;version=
"[0.0.0, 0.0.0]",javax.security.auth.login;version="[0.0.0, 0.0.0]",javax.imageio.stream;version="[0.0.0, 0.0.0]",org.os
gi.framework.hooks.service;version="[1.1.0, 1.1.0]",javax.xml.ws.http;version="[0.0.0, 2.1.1]",javax.jws.soap;version="[
0.0.0, 2.0.0]",javax.xml.bind.helpers;version="[0.0.0, 2.0.0]",javax.imageio;version="[0.0.0, 0.0.0]",javax.swing.text.r
tf;version="[0.0.0, 0.0.0]",javax.security.cert;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.debug;version="[1.2.0,
 1.2.0]",javax.lang.model.element;version="[0.0.0, 0.0.0]",javax.rmi.CORBA;version="[0.0.0, 0.0.0]",javax.xml.ws.soap;ve
rsion="[0.0.0, 2.1.1]",org.w3c.dom.events;version="[0.0.0, 0.0.0]",javax.swing.text.html.parser;version="[0.0.0, 0.0.0]"
,javax.crypto.spec;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.module;version="[0.0.0, 0.0.0]",org.eclipse.osgi.s
ignedcontent;version="[1.0.0, 1.0.0]",javax.swing.plaf.metal;version="[0.0.0, 0.0.0]",javax.accessibility;version="[0.0.
0, 0.0.0]",org.eclipse.osgi.framework.internal.protocol.bundleresource;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framewo
rk.internal.core;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.log;version="[1.1.0, 1.1.0]",org.eclipse.osgi.inter
nal.baseadaptor;version="[0.0.0, 0.0.0]",org.osgi.framework.startlevel;version="[1.0.0, 1.0.0]",javax.management;version
="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.protocol.bundleentry;version="[0.0.0, 0.0.0]",javax.swing.colorcho
oser;version="[0.0.0, 0.0.0]",javax.naming.directory;version="[0.0.0, 0.0.0]",org.omg.SendingContext;version="[0.0.0, 0.
0.0]",org.w3c.dom.views;version="[0.0.0, 0.0.0]",org.xml.sax.ext;version="[0.0.0, 0.0.0]",javax.xml.bind.util;version="[
0.0.0, 2.0.0]",javax.transaction.xa;version="[0.0.0, 1.1.0]",javax.security.auth.x500;version="[0.0.0, 0.0.0]",javax.ser
vlet.jsp.tagext;version="2.1.0",javax.net.ssl;version="[0.0.0, 0.0.0]",javax.management.monitor;version="[0.0.0, 0.0.0]"
,javax.swing.text.html;version="[0.0.0, 0.0.0]",javax.imageio.plugins.jpeg;version="[0.0.0, 0.0.0]",org.eclipse.osgi.ser
vice.internal.composite;version="[0.0.0, 0.0.0]",org.w3c.dom.bootstrap;version="[0.0.0, 0.0.0]",org.eclipse.osgi.baseada
ptor.loader;version="[0.0.0, 0.0.0]",javax.xml.bind.annotation;version="[0.0.0, 2.0.0]",org.eclipse.osgi.launch;version=
"[1.0.0, 1.0.0]",javax.xml.validation;version="[0.0.0, 0.0.0]",javax.sound.sampled;version="[0.0.0, 0.0.0]",org.xml.sax.
helpers;version="[0.0.0, 0.0.0]",javax.lang.model.type;version="[0.0.0, 0.0.0]",javax.management.remote.rmi;version="[0.
0.0, 0.0.0]",org.eclipse.osgi.internal.loader.buddy;version="[0.0.0, 0.0.0]",javax.sound.sampled.spi;version="[0.0.0, 0.
0.0]",javax.activity;version="[0.0.0, 0.0.0]",javax.sql.rowset.spi;version="[0.0.0, 0.0.0]",org.osgi.util.tracker;versio
n="[1.5.0, 1.5.0]",org.eclipse.osgi.internal.signedcontent;version="[0.0.0, 0.0.0]",javax.security.sasl;version="[0.0.0,
 0.0.0]",org.eclipse.osgi.internal.profile;version="[0.0.0, 0.0.0]",javax.security.auth.callback;version="[0.0.0, 0.0.0]
",javax.el;version="1.0.0",org.eclipse.osgi.internal.provisional.service.security;version="[1.0.0, 1.0.0]",javax.tools;v
ersion="[0.0.0, 0.0.0]",javax.xml;version="[0.0.0, 1.0.1]",org.osgi.framework.hooks.bundle;version="[1.0.0, 1.0.0]",java
x.activation;version="[0.0.0, 1.1.1]",org.eclipse.osgi.service.urlconversion;version="[1.0.0, 1.0.0]",javax.xml.transfor
m;version="[0.0.0, 0.0.0]",javax.xml.crypto.dsig;version="[0.0.0, 1.0.0]",org.osgi.framework.hooks.weaving;version="[1.0
.0, 1.0.0]",javax.swing.plaf.synth;version="[0.0.0, 0.0.0]",javax.xml.crypto.dom;version="[0.0.0, 1.0.0]",javax.servlet.
http;version="2.5.0"
Archiver-Version = Plexus Archiver
osgi>
Re: Error configuring application listener: ClassNotFoundException [message #820642 is a reply to message #820610] Wed, 14 March 2012 11:34 Go to previous messageGo to next message
David Koch is currently offline David KochFriend
Messages: 10
Registered: March 2012
Junior Member
We should stop this. I cannot send you my war file which would be probably the only way how to discover the problem.

I'll try to break it down somehow.
A lot of thanks for your engagement
david
Re: Error configuring application listener: ClassNotFoundException [message #891942 is a reply to message #820642] Tue, 26 June 2012 16:04 Go to previous messageGo to next message
Marcelo Riss is currently offline Marcelo RissFriend
Messages: 4
Registered: June 2012
Junior Member
Hi,

Not sure if this is still relevant, but I am having the same issue with the form-tags sample application built from its sources. Have any of you found the solution for this?

Thanks in advance.

Marcelo
Re: Error configuring application listener: ClassNotFoundException [message #891948 is a reply to message #891942] Tue, 26 June 2012 16:18 Go to previous messageGo to next message
Marcelo Riss is currently offline Marcelo RissFriend
Messages: 4
Registered: June 2012
Junior Member
The command headers 108 (which is the number of form tags sample app bundle) returns:

Bundle 108
----------
Manifest-Version = 1.0
Ant-Version = Apache Ant 1.7.0
Implementation-Title = formtags-war
Implementation-Version = 3.0.0.BUILD-20120625211508
Module-Type = web-bundle
Bundle-ManifestVersion = 2
Created-By = 1.5.0_13-119 (Apple Inc.)
Bundle-SymbolicName = formtags-war-3.0.0.BUILD-20120625213834
Web-ContextPath = formtags-war-3.0.0.BUILD-20120625213834
Bundle-Creator = riss

and it is not showing any Import-Package directive. Any idea on what this could be happening?

Marcelo
Re: Error configuring application listener: ClassNotFoundException [message #891998 is a reply to message #891948] Tue, 26 June 2012 19:17 Go to previous messageGo to next message
Marcelo Riss is currently offline Marcelo RissFriend
Messages: 4
Registered: June 2012
Junior Member
I just got the formtags working by changing the file $SERVER_HOME/repository/ext/org.eclipse.virgo.web.properties. I changed the property WABHeaders from strict to defaulted and the application was properly loaded with no ClassNotFound exception. Now the question is: the virgo user guide says that this value of defaulted might be deprecated in the future. Additionally, all instructions in the usr guide say that you just drop a regular war file in the pickup folder and everything will be fine. Why I needed to change that property in order to get formtags sample app working? Is there any special directive in the MANIFEST to tell virgo that the war is not a wab? In my case, I think what was happening is that virgo was considering my war as wab. This was letting virgo to expect Import-Package and/or Import-Bundle and/or Import-Library to be present in the MANIFEST. Thus, it was not automatically generating Import-Package directives using WEB-INF/classes and WEB-INF/lib, as is stated in the documentation. Can anyone clarify this situation, or then say if I am wrongly reading virgo user guide?

Thanks in advance.

Marcelo
Re: Error configuring application listener: ClassNotFoundException [message #892000 is a reply to message #891998] Tue, 26 June 2012 19:22 Go to previous message
Marcelo Riss is currently offline Marcelo RissFriend
Messages: 4
Registered: June 2012
Junior Member
Just forgot it:

Now the command headers 117 (which is the number of form tags bundle) at osgi user region console is returning:

Bundle 117
----------
Manifest-Version = 1.0
Ant-Version = Apache Ant 1.7.0
Bundle-ClassPath = WEB-INF/classes,WEB-INF/lib/com.springsource.javax.servlet-2.5.0.jar,WEB-INF/lib/com.springsource.org.apache.commons.logging-1.1.1.jar,WEB-INF/lib/org.springframework.core-3.0.0.RELEASE.jar,WEB-INF/lib/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar,WEB-INF/lib/com.springsource.org.apache.taglibs.standard-1.1.2.jar,WEB-INF/lib/org.springframework.web-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.asm-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.web.servlet-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.expression-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.beans-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.context-3.0.0.RELEASE.jar,WEB-INF/lib/org.springframework.context.support-3.0.0.RELEASE.jar
org-eclipse-gemini-web-DefaultWABHeaders = true
Module-Type = web-bundle
Bundle-ManifestVersion = 2
Created-By = 1.5.0_13-119 (Apple Inc.)
Bundle-SymbolicName = formtags-war-3.0.0.BUILD-20120625213834
Web-ContextPath = formtags-war-3.0.0.BUILD-20120625213834
Import-Package = javax.crypto.interfaces;version="[0.0.0, 0.0.0]",org.omg.CosNaming.NamingContextPackage;version="[0.0.0, 0.0.0]",org.omg.DynamicAny.DynAnyFactoryPackage;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.provisional.verifier;version="[0.0.0, 0.0.0]",javax.management.timer;version="[0.0.0, 0.0.0]",javax.jws;version="[0.0.0, 2.0.0]",org.eclipse.osgi.baseadaptor.hooks;version="[0.0.0, 0.0.0]",org.osgi.framework.wiring;version="[1.0.0, 1.0.0]",javax.rmi.ssl;version="[0.0.0, 0.0.0]",org.w3c.dom.ranges;version="[0.0.0, 0.0.0]",javax.naming.spi;version="[0.0.0, 0.0.0]",javax.xml.stream;version="[0.0.0, 1.0.1]",javax.swing.filechooser;version="[0.0.0, 0.0.0]",javax.swing.plaf;version="[0.0.0, 0.0.0]",javax.lang.model;version="[0.0.0, 0.0.0]",javax.lang.model.util;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.eventmgr;version="[1.2.0, 1.2.0]",javax.naming.ldap;version="[0.0.0, 0.0.0]",javax.security.auth.kerberos;version="[0.0.0, 0.0.0]",javax.crypto;version="[0.0.0, 0.0.0]",org.omg.PortableServer.CurrentPackage;version="[0.0.0, 0.0.0]",javax.servlet.jsp;version="2.1.0",javax.naming.event;version="[0.0.0, 0.0.0]",javax.print.attribute.standard;version="[0.0.0, 0.0.0]",javax.imageio.plugins.bmp;version="[0.0.0, 0.0.0]",org.eclipse.osgi.baseadaptor.bundlefile;version="[0.0.0, 0.0.0]",org.osgi.service.permissionadmin;version="[1.2.0, 1.2.0]",javax.annotation;version="[0.0.0, 1.0.0]",javax.xml.ws.handler.soap;version="[0.0.0, 2.1.1]",org.osgi.service.url;version="[1.0.0, 1.0.0]",javax.xml.transform.dom;version="[0.0.0, 0.0.0]",javax.print.attribute;version="[0.0.0, 0.0.0]",javax.sql.rowset.serial;version="[0.0.0, 0.0.0]",org.w3c.dom.traversal;version="[0.0.0, 0.0.0]",org.eclipse.core.runtime.internal.adaptor;version="[0.0.0, 0.0.0]",org.osgi.framework.hooks.resolver;version="[1.0.0, 1.0.0]",org.omg.PortableServer.POAManagerPackage;version="[0.0.0, 0.0.0]",javax.sound.midi;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.pluginconversion;version="[1.0.0, 1.0.0]",javax.swing.event;version="[0.0.0, 0.0.0]",javax.xml.ws.spi;version="[0.0.0, 2.1.1]",org.eclipse.osgi.util;version="[1.1.0, 1.1.0]",javax.xml.stream.util;version="[0.0.0, 1.0.1]",javax.net;version="[0.0.0, 0.0.0]",javax.security.auth.spi;version="[0.0.0, 0.0.0]",javax.management.loading;version="[0.0.0, 0.0.0]",javax.print;version="[0.0.0, 0.0.0]",org.omg.Messaging;version="[0.0.0, 0.0.0]",javax.xml.crypto.dsig.keyinfo;version="[0.0.0, 1.0.0]",org.omg.CORBA.ORBPackage;version="[0.0.0, 0.0.0]",javax.swing.plaf.multi;version="[0.0.0, 0.0.0]",javax.xml.namespace;version="[0.0.0, 0.0.0]",org.osgi.service.startlevel;version="[1.1.0, 1.1.0]",javax.servlet;version="2.5.0",org.osgi.service.log;version="[1.3.0, 1.3.0]",org.eclipse.osgi.framework.internal.protocol;version="[0.0.0, 0.0.0]",javax.swing;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.loader;version="[0.0.0, 0.0.0]",javax.xml.transform.sax;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.localization;version="[1.1.0, 1.1.0]",javax.management.relation;version="[0.0.0, 0.0.0]",javax.naming;version="[0.0.0, 0.0.0]",javax.xml.transform.stax;version="[0.0.0, 0.0.0]",org.eclipse.core.runtime.internal.stats;version="[0.0.0, 0.0.0]",org.omg.stub.java.rmi;version="[0.0.0, 0.0.0]",javax.xml.crypto.dsig.dom;version="[0.0.0, 1.0.0]",javax.xml.parsers;version="[0.0.0, 0.0.0]",org.ietf.jgss;version="[0.0.0, 0.0.0]",javax.xml.xpath;version="[0.0.0, 0.0.0]",javax.xml.bind.attachment;version="[0.0.0, 2.0.0]",org.eclipse.osgi.internal.composite;version="[0.0.0, 0.0.0]",javax.servlet.jsp.el;version="2.1.0",org.eclipse.osgi.framework.console;version="[1.1.0, 1.1.0]",org.osgi.framework;version="[1.6.0, 1.6.0]",org.eclipse.osgi.storagemanager;version="[1.0.0, 1.0.0]",javax.xml.crypto.dsig.spec;version="[0.0.0, 1.0.0]",org.eclipse.osgi.internal.permadmin;version="[0.0.0, 0.0.0]",javax.swing.undo;version="[0.0.0, 0.0.0]",javax.swing.text;version="[0.0.0, 0.0.0]",javax.print.event;version="[0.0.0, 0.0.0]",javax.imageio.spi;version="[0.0.0, 0.0.0]",org.osgi.service.framework;version="[1.0.0, 1.0.0]",org.w3c.dom.stylesheets;version="[0.0.0, 0.0.0]",javax.script;version="[0.0.0, 1.1.0]",org.w3c.dom.ls;version="[0.0.0, 0.0.0]",org.omg.PortableInterceptor;version="[0.0.0, 0.0.0]",org.omg.CORBA.TypeCodePackage;version="[0.0.0, 0.0.0]",org.osgi.framework.launch;version="[1.0.0, 1.0.0]",org.eclipse.osgi.framework.util;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.environment;version="[1.3.0, 1.3.0]",javax.xml.bind.annotation.adapters;version="[0.0.0, 2.0.0]",org.eclipse.osgi.internal.serviceregistry;version="[0.0.0, 0.0.0]",javax.xml.stream.events;version="[0.0.0, 1.0.1]",javax.sql;version="[0.0.0, 0.0.0]",org.eclipse.equinox.log.internal;version="[0.0.0, 0.0.0]",org.omg.CORBA_2_3;version="[0.0.0, 0.0.0]",javax.transaction;version="[0.0.0, 1.1.0]",javax.rmi;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.datalocation;version="[1.3.0, 1.3.0]",javax.xml.soap;version="[0.0.0, 1.3.0]",org.eclipse.osgi.baseadaptor;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.resolver;version="[0.0.0, 0.0.0]",javax.xml.bind;version="[0.0.0, 2.0.0]",javax.management.modelmbean;version="[0.0.0, 0.0.0]",javax.xml.ws;version="[0.0.0, 2.1.1]",org.w3c.dom.html;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.debug;version="[0.0.0, 0.0.0]",javax.swing.tree;version="[0.0.0, 0.0.0]",javax.sound.midi.spi;version="[0.0.0, 0.0.0]",org.eclipse.equinox.log;version="[1.0.0, 1.0.0]",org.w3c.dom.css;version="[0.0.0, 0.0.0]",org.omg.PortableServer;version="[0.0.0, 0.0.0]",org.eclipse.osgi.event;version="[1.0.0, 1.0.0]",org.eclipse.osgi.framework.internal.protocol.reference;version="[0.0.0, 0.0.0]",org.xml.sax;version="[0.0.0, 0.0.0]",javax.xml.ws.handler;version="[0.0.0, 2.1.1]",org.eclipse.osgi.service.runnable;version="[1.1.0, 1.1.0]",org.eclipse.osgi.internal.service.security;version="[0.0.0, 0.0.0]",org.omg.IOP.CodecFactoryPackage;version="[0.0.0, 0.0.0]",org.omg.IOP;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.adaptor;version="[0.0.0, 0.0.0]",javax.sql.rowset;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.reliablefile;version="[0.0.0, 0.0.0]",org.eclipse.core.runtime.adaptor;version="[0.0.0, 0.0.0]",javax.swing.plaf.basic;version="[0.0.0, 0.0.0]",javax.swing.border;version="[0.0.0, 0.0.0]",javax.management.openmbean;version="[0.0.0, 0.0.0]",org.omg.CORBA.portable;version="[0.0.0, 0.0.0]",org.omg.Dynamic;version="[0.0.0, 0.0.0]",javax.security.auth;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.security;version="[1.0.0, 1.0.0]",javax.imageio.event;version="[0.0.0, 0.0.0]",org.w3c.dom;version="[0.0.0, 0.0.0]",javax.xml.datatype;version="[0.0.0, 0.0.0]",org.omg.DynamicAny.DynAnyPackage;version="[0.0.0, 0.0.0]",javax.imageio.metadata;version="[0.0.0, 0.0.0]",javax.management.remote;version="[0.0.0, 0.0.0]",org.omg.CORBA.DynAnyPackage;version="[0.0.0, 0.0.0]",javax.swing.table;version="[0.0.0, 0.0.0]",javax.xml.transform.stream;version="[0.0.0, 0.0.0]",javax.xml.crypto;version="[0.0.0, 1.0.0]",org.eclipse.osgi.service.resolver;version="[1.5.0, 1.5.0]",javax.annotation.processing;version="[0.0.0, 0.0.0]",javax.security.auth.login;version="[0.0.0, 0.0.0]",org.omg.CORBA;version="[0.0.0, 0.0.0]",javax.imageio.stream;version="[0.0.0, 0.0.0]",org.osgi.framework.hooks.service;version="[1.1.0, 1.1.0]",org.omg.IOP.CodecPackage;version="[0.0.0, 0.0.0]",javax.xml.ws.http;version="[0.0.0, 2.1.1]",javax.jws.soap;version="[0.0.0, 2.0.0]",javax.xml.bind.helpers;version="[0.0.0, 2.0.0]",javax.imageio;version="[0.0.0, 0.0.0]",org.omg.PortableServer.portable;version="[0.0.0, 0.0.0]",javax.swing.text.rtf;version="[0.0.0, 0.0.0]",javax.security.cert;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.debug;version="[1.2.0, 1.2.0]",javax.lang.model.element;version="[0.0.0, 0.0.0]",javax.rmi.CORBA;version="[0.0.0, 0.0.0]",javax.xml.ws.soap;version="[0.0.0, 2.1.1]",org.w3c.dom.events;version="[0.0.0, 0.0.0]",org.omg.CosNaming;version="[0.0.0, 0.0.0]",org.omg.CosNaming.NamingContextExtPackage;version="[0.0.0, 0.0.0]",javax.swing.text.html.parser;version="[0.0.0, 0.0.0]",org.osgi.service.condpermadmin;version="[1.1.1, 1.1.1]",javax.crypto.spec;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.module;version="[0.0.0, 0.0.0]",org.omg.PortableServer.POAPackage;version="[0.0.0, 0.0.0]",org.eclipse.osgi.signedcontent;version="[1.0.0, 1.0.0]",javax.swing.plaf.metal;version="[0.0.0, 0.0.0]",javax.accessibility;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.protocol.bundleresource;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.core;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.log;version="[1.1.0, 1.1.0]",org.eclipse.osgi.internal.baseadaptor;version="[0.0.0, 0.0.0]",org.osgi.framework.startlevel;version="[1.0.0, 1.0.0]",javax.management;version="[0.0.0, 0.0.0]",org.omg.PortableServer.ServantLocatorPackage;version="[0.0.0, 0.0.0]",org.eclipse.osgi.framework.internal.protocol.bundleentry;version="[0.0.0, 0.0.0]",javax.swing.colorchooser;version="[0.0.0, 0.0.0]",javax.naming.directory;version="[0.0.0, 0.0.0]",org.omg.SendingContext;version="[0.0.0, 0.0.0]",org.w3c.dom.views;version="[0.0.0, 0.0.0]",org.xml.sax.ext;version="[0.0.0, 0.0.0]",javax.xml.bind.util;version="[0.0.0, 2.0.0]",javax.transaction.xa;version="[0.0.0, 1.1.0]",javax.security.auth.x500;version="[0.0.0, 0.0.0]",javax.servlet.jsp.tagext;version="2.1.0",javax.net.ssl;version="[0.0.0, 0.0.0]",javax.management.monitor;version="[0.0.0, 0.0.0]",javax.swing.text.html;version="[0.0.0, 0.0.0]",org.osgi.service.packageadmin;version="[1.2.0, 1.2.0]",javax.imageio.plugins.jpeg;version="[0.0.0, 0.0.0]",org.eclipse.osgi.service.internal.composite;version="[0.0.0, 0.0.0]",org.w3c.dom.bootstrap;version="[0.0.0, 0.0.0]",org.eclipse.osgi.baseadaptor.loader;version="[0.0.0, 0.0.0]",javax.xml.bind.annotation;version="[0.0.0, 2.0.0]",org.eclipse.osgi.launch;version="[1.0.0, 1.0.0]",javax.xml.validation;version="[0.0.0, 0.0.0]",javax.sound.sampled;version="[0.0.0, 0.0.0]",org.xml.sax.helpers;version="[0.0.0, 0.0.0]",javax.lang.model.type;version="[0.0.0, 0.0.0]",javax.management.remote.rmi;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.loader.buddy;version="[0.0.0, 0.0.0]",javax.sound.sampled.spi;version="[0.0.0, 0.0.0]",javax.activity;version="[0.0.0, 0.0.0]",javax.sql.rowset.spi;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.signedcontent;version="[0.0.0, 0.0.0]",org.osgi.util.tracker;version="[1.5.0, 1.5.0]",org.omg.DynamicAny;version="[0.0.0, 0.0.0]",org.omg.PortableInterceptor.ORBInitInfoPackage;version="[0.0.0, 0.0.0]",org.eclipse.osgi.internal.profile;version="[0.0.0, 0.0.0]",javax.security.sasl;version="[0.0.0, 0.0.0]",javax.security.auth.callback;version="[0.0.0, 0.0.0]",javax.el;version="1.0.0",org.eclipse.osgi.internal.provisional.service.security;version="[1.0.0, 1.0.0]",javax.tools;version="[0.0.0, 0.0.0]",org.osgi.framework.hooks.bundle;version="[1.0.0, 1.0.0]",javax.xml;version="[0.0.0, 1.0.1]",javax.activation;version="[0.0.0, 1.1.1]",org.eclipse.osgi.service.urlconversion;version="[1.0.0, 1.0.0]",javax.xml.transform;version="[0.0.0, 0.0.0]",org.omg.CORBA_2_3.portable;version="[0.0.0, 0.0.0]",javax.xml.crypto.dsig;version="[0.0.0, 1.0.0]",org.osgi.framework.hooks.weaving;version="[1.0.0, 1.0.0]",javax.swing.plaf.synth;version="[0.0.0, 0.0.0]",javax.xml.crypto.dom;version="[0.0.0, 1.0.0]",javax.servlet.http;version="2.5.0"
Previous Topic:How to import Bundle or Package in BundleManifestEditor
Next Topic:Getting started with Virgo (Virgin Project???)
Goto Forum:
  


Current Time: Tue Apr 16 04:27:04 GMT 2024

Powered by FUDForum. Page generated in 0.28642 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top