Hi, Am 08.01.2013 um 00:50 schrieb Dhiego Abrantes de Oliveira Martins:
> Hi all, > > Im starting with iPOJO DOSGi (Apache CXF) and when I'm start the > felix/ipojo (java -jar bin/felix.jar server), I get this error: > > > The system is configured to use HttpService port 8080. However this port is > already in use. This looks like there is already some process using port 8080. You might want to reconfigure this instance to use a different port. > felix.fileinstall.poll (ms) 2000 > felix.fileinstall.dir /Applications/Development/felix/./load > felix.fileinstall.debug -1 > felix.fileinstall.bundles.new.start true > Jan 07, 2013 8:45:18 PM org.apache.cxf.dosgi.discovery.local.Activator start > INFO: Registering LocalDiscoveryService service object > Jan 07, 2013 8:45:18 PM org.apache.cxf.dosgi.dsw.OsgiUtils readIntentMap > WARNING: Intent map load failed: > java.lang.NoClassDefFoundError: org/xml/sax/EntityResolver Looks like this class is not imported by the bundle (it may be optionally imported but not available at resolution time or dynamically imported and not available or not imported at all and not available through boot class delegation). You will have to check the configuration (Import-Package and DynamicImport-Package manifest headers) and status of the respective bundle to find out. To me this looks like a bug in the bundle manifest with a missing or wrongly configured import statement for the org.xml.sax package. Regards Felix > at org.apache.cxf.dosgi.dsw.OsgiUtils.readIntentMap(OsgiUtils.java:418) > at org.apache.cxf.dosgi.dsw.OsgiUtils.getIntentMap(OsgiUtils.java:397) > at org.apache.cxf.dosgi.dsw.Activator.getIntentMap(Activator.java:109) > at > org.apache.cxf.dosgi.dsw.Activator.registerDistributionProviderService(Activator.java:92) > at org.apache.cxf.dosgi.dsw.Activator.start(Activator.java:74) > at > org.apache.cxf.dosgi.singlebundle.AggregatedActivator.startEmbeddedActivators(AggregatedActivator.java:115) > at > org.apache.cxf.dosgi.singlebundle.AggregatedActivator.start(AggregatedActivator.java:46) > at > org.apache.felix.framework.util.SecureAction.startActivator(SecureAction.java:661) > at org.apache.felix.framework.Felix.activateBundle(Felix.java:1760) > at org.apache.felix.framework.Felix.startBundle(Felix.java:1682) > at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1128) > at org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:264) > at java.lang.Thread.run(Thread.java:722) > Caused by: java.lang.ClassNotFoundException: org.xml.sax.EntityResolver > at > org.apache.felix.framework.ModuleImpl.findClassOrResourceByDelegation(ModuleImpl.java:814) > at org.apache.felix.framework.ModuleImpl.access$100(ModuleImpl.java:61) > at > org.apache.felix.framework.ModuleImpl$ModuleClassLoader.loadClass(ModuleImpl.java:1733) > at java.lang.ClassLoader.loadClass(ClassLoader.java:356) > ... 13 more > > How can I fix it? > > Thanks! > > Dhiego --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

