RE: Mapping tool in eclipse

2007-04-09 Thread Patrick Linskey
Happily, the next release won't have the pesky word 'all' in the jar,
which will hopefully help stave off the perception that that jar
contains everything needed to use OpenJPA.

-Patrick

-- 
Patrick Linskey
BEA Systems, Inc. 

___
Notice:  This email message, together with any attachments, may contain
information  of  BEA Systems,  Inc.,  its subsidiaries  and  affiliated
entities,  that may be confidential,  proprietary,  copyrighted  and/or
legally privileged, and is intended solely for the use of the individual
or entity named in this message. If you are not the intended recipient,
and have received this message in error, please immediately return this
by email and then delete it. 

 -Original Message-
 From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On 
 Behalf Of Marc Prud'hommeaux
 Sent: Sunday, April 08, 2007 8:14 PM
 To: open-jpa-dev@incubator.apache.org
 Subject: Re: Mapping tool in eclipse
 
 Phill-
 
 It sounds like you have the tool set up to use the openjpa-all-0.9.6- 
 incubating.jar, but you haven't added any of the other required  
 dependencies to the environment's classpath. You should put  
 everything (except the derby jar) in the lib/ directory of the  
 OpenJPA distribution in the environments classpath.
 
 
 On Apr 8, 2007, at 7:55 PM, Phill Moran wrote:
 
  Has anyone installed the mapping tool in the external eclipse  
  tools? I am
  getting an error and little info or ways to debug. I am trying to  
  set it up so
  that it would validate the current file. I would be happy with all  
  files in
  workspace or package. Really just to get it to run so I can get to  
  the problem I
  am really after which is a OpenJPA not managed exception
 
  Location is set to java
 
  Parameters is set to this (hard coded file for now to get 
 it running)
  org.apache.openjpa.jdbc.meta.MappingTool -jar openjpa-all-0.9.6- 
  incubating.jar
  validate -a
  
 C:\development\emall\target\classes\ca\test\categories\Category.class
 
  I have also defined a classpath set to the incubating jar
 
  And I get this for my trouble:
  Exception in thread main java.lang.NoClassDefFoundError:
  org/apache/commons/lang/exception/NestableRuntimeException
  at java.lang.ClassLoader.defineClass1(Native Method)
  at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
  at
  java.security.SecureClassLoader.defineClass(SecureClassLoader.java: 
  124)
  at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
  at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
  at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
  at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
  at 
 org.apache.openjpa.jdbc.meta.MappingTool.main(MappingTool.java: 
  903)
 
  Any thoughts?
 
 
 

Notice:  This email message, together with any attachments, may contain 
information  of  BEA Systems,  Inc.,  its subsidiaries  and  affiliated 
entities,  that may be confidential,  proprietary,  copyrighted  and/or legally 
privileged, and is intended solely for the use of the individual or entity 
named in this message. If you are not the intended recipient, and have received 
this message in error, please immediately return this by email and then delete 
it.


Re: Mapping tool in eclipse

2007-04-08 Thread Marc Prud'hommeaux

Phill-

It sounds like you have the tool set up to use the openjpa-all-0.9.6- 
incubating.jar, but you haven't added any of the other required  
dependencies to the environment's classpath. You should put  
everything (except the derby jar) in the lib/ directory of the  
OpenJPA distribution in the environments classpath.



On Apr 8, 2007, at 7:55 PM, Phill Moran wrote:

Has anyone installed the mapping tool in the external eclipse  
tools? I am
getting an error and little info or ways to debug. I am trying to  
set it up so
that it would validate the current file. I would be happy with all  
files in
workspace or package. Really just to get it to run so I can get to  
the problem I

am really after which is a OpenJPA not managed exception

Location is set to java

Parameters is set to this (hard coded file for now to get it running)
org.apache.openjpa.jdbc.meta.MappingTool -jar openjpa-all-0.9.6- 
incubating.jar

validate -a
C:\development\emall\target\classes\ca\test\categories\Category.class

I have also defined a classpath set to the incubating jar

And I get this for my trouble:
Exception in thread main java.lang.NoClassDefFoundError:
org/apache/commons/lang/exception/NestableRuntimeException
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java: 
124)

at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
	at org.apache.openjpa.jdbc.meta.MappingTool.main(MappingTool.java: 
903)


Any thoughts?





RE: Mapping tool in eclipse

2007-04-08 Thread Phill Moran
Thanks Marc, that was it. I should have realized as I had used the BEA JDO tools
before.

Phill

-Original Message-
From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On Behalf Of Marc
Prud'hommeaux
Sent: April 8, 2007 11:14 PM
To: open-jpa-dev@incubator.apache.org
Subject: Re: Mapping tool in eclipse

Phill-

It sounds like you have the tool set up to use the openjpa-all-0.9.6-
incubating.jar, but you haven't added any of the other required dependencies to
the environment's classpath. You should put everything (except the derby jar) in
the lib/ directory of the OpenJPA distribution in the environments classpath.


On Apr 8, 2007, at 7:55 PM, Phill Moran wrote:

 Has anyone installed the mapping tool in the external eclipse tools? I 
 am getting an error and little info or ways to debug. I am trying to 
 set it up so that it would validate the current file. I would be happy 
 with all files in workspace or package. Really just to get it to run 
 so I can get to the problem I am really after which is a OpenJPA not 
 managed exception

 Location is set to java

 Parameters is set to this (hard coded file for now to get it running) 
 org.apache.openjpa.jdbc.meta.MappingTool -jar openjpa-all-0.9.6- 
 incubating.jar validate -a 
 C:\development\emall\target\classes\ca\test\categories\Category.class

 I have also defined a classpath set to the incubating jar

 And I get this for my trouble:
 Exception in thread main java.lang.NoClassDefFoundError:
 org/apache/commons/lang/exception/NestableRuntimeException
   at java.lang.ClassLoader.defineClass1(Native Method)
   at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
   at
 java.security.SecureClassLoader.defineClass(SecureClassLoader.java: 
 124)
   at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
   at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
   at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
   at java.security.AccessController.doPrivileged(Native Method)
   at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
   at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
   at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
   at org.apache.openjpa.jdbc.meta.MappingTool.main(MappingTool.java: 
 903)

 Any thoughts?