[JBoss jBPM] - Re: docbook-support is missing
by clandestino_bgd
Hi Koen and all JBPM Community,
I have spent a lot of time trying to isolate the error in JBPM build procedure.
Before that, I have checked out the latest source version from CVS and invoke get.dependencies (nothing has been modified).
I have also run both build scripts (Main one and GPD).
As far as I can see GPD fails here:
[java] [eclipse.buildScript] An error occured while generating manifest for D:\work\java\jbpm.3\designer\jpdl\org.jbpm.gd.jpdl.build\target\workspace.
and the Main build fails here:
[java] generateScript:
[java] [eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
[java] [eclipse.buildScript] Bundle org.jbpm.gd.jpdl.core:
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.xml.core_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.sse.core_0.0.0.
[java] [eclipse.buildScript] Bundle org.jbpm.gd.jpdl.ui:
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.draw2d_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.gef_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.sse.core_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.xml.core_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.xml.ui_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.sse.ui_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.eclipse.wst.common.ui_0.0.0.
[java] [eclipse.buildScript] Missing required plug-in org.jbpm.gd.jpdl.core_0.0.0.
The complete trace sections of relevant run-eclipse-plugin-builder targets in both build scripts you can find at:
MAIN: http://www.geocities.com/clandestino_bgd/Main.html
GPD: http://www.geocities.com/clandestino_bgd/GPD.html
The problematic parts are Bolded.
I think that this is the last thing I can do, since I lost really a lot of time ,trying to install JBPM locally.
Thank you for your help and patience.
I begin to lose mine :)
Regards
Milan Agatonovic
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980338#3980338
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3980338
19 years, 6 months
[JCA/JBoss] - look up datasource failing~
by tntxia
I deploy my application ear in jboss-4.0.4.CR2;
flow is jboss console:
8:27:45,218 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
18:27:45,500 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar
18:27:47,156 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
18:27:47,625 INFO [A] Bound to JNDI name: queue/A
18:27:47,625 INFO [B] Bound to JNDI name: queue/B
18:27:47,625 INFO [C] Bound to JNDI name: queue/C
This is my client class :
InitialContext context;
try {
context = new InitialContext();
Object obj = context.lookup("java:/DefaultDS");
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
When I run the class ;throw the exception :
javax.naming.NameNotFoundException: DefaultDS not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at com.netsboss.btoss.logic.traceInfo.test.Test.main(Test.java:22)
How can I write the jndi name for datasource in client class ?ths
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980333#3980333
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3980333
19 years, 6 months