Latest Nuxeo IDE

Just upgraded to the latest IDE and the update ran fine. However, when I jarred my project and started my dev server I was greeted with a strange error (although all the functionality of my plugin appears to work properly).

The message I get is below - anyone else seen this message and know the cause? I have reverted to previous version and message is gone but I would still like to know the cause :-)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.nuxeo.osgi.application.FrameworkBootstrap.installBundle(FrameworkBootstrap.java:154)
at org.nuxeo.runtime.tomcat.dev.DevFrameworkBootstrap.postloadDevBundles(DevFrameworkBootstrap.java:128)
at org.nuxeo.runtime.tomcat.dev.DevFrameworkBootstrap.start(DevFrameworkBootstrap.java:65)
at org.nuxeo.runtime.tomcat.NuxeoLauncher.handleEvent(NuxeoLauncher.java:115)
at org.nuxeo.runtime.tomcat.NuxeoLauncher.lifecycleEvent(NuxeoLauncher.java:87)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4424)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:526)
at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:630)
at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:556)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:491)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1206)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:314)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:722)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
at org.apache.catalina.core.StandardService.start(StandardService.java:516)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
at org.apache.catalina.startup.Catalina.start(Catalina.java:583)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)

Caused by: java.io.FileNotFoundException: bundle:C:\Users\bgrant.CONCENA\workspace371\RobinsonDM\bin\main (The filename, directory name, or volume label syntax is incorrect)

at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)
at org.nuxeo.osgi.JarBundleFile.<init>(JarBundleFile.java:62)
at org.nuxeo.osgi.application.loader.FrameworkLoader.install(FrameworkLoader.java:201)
... 33 more

2011-10-28 15:44:44,715 WARN [org.hibernate.ejb.Ejb3Configuration] Overriding :

0 votes

1 answers

1664 views

ANSWER



It's obviously an issue with the backslashes in Windows paths:

Caused by: java.io.FileNotFoundException: bundle:C:Usersbgrant.CONCENAworkspace371RobinsonDMbinmain

Could you create an issue on https://jira.nuxeo.com/browse/NXIDE

0 votes