|
Sorry, same error as before after signoff and signon again and using WRKENVVAR. Any other ideas. Rgds, Rajesh Anand Tel: + (44) (0) 207 996 1152 Mob: + (44) (0) 7947273151 Email:Rajesh_anand@xxxxxx -----Original Message----- From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of konrad.mai@xxxxxxxxxxx Sent: 08 December 2004 14:32 To: Java Programming on and around the iSeries / AS400 Subject: RE: Error creating java object Rajesh, maybe the JVM is still active, so a signoff and re-signon could help. I would set the CLASSPATH as environment variable (WRKENVVAR). And I would add the folder /test/ to the CLASSPATH. BR, Konni "Anand, Rajesh" <Rajesh_Anand@xxxxxx> Gesendet von: java400-l-bounces@xxxxxxxxxxxx 08.12.2004 15:18 Bitte antworten an Java Programming on and around the iSeries / AS400 <java400-l@xxxxxxxxxxxx> An "Java Programming on and around the iSeries / AS400" <java400-l@xxxxxxxxxxxx> Kopie Thema RE: Error creating java object Steven, I wouldn't have thought that would make any difference. However, I tried it, as I've no clue why its not working. And unfortunately, same error.... cd /test £ java -Djava.version=1.2 -classpath .:/java/jt400.jar:/java/xml/jdom-1.0/build/jdom.jar:/java/xml/jdom-contrib -1.0/build/jdom-contrib.jar Test java.lang.NoClassDefFoundError java/lang/Error.<init>()V+1 (Error.java:41) java/lang/NoClassDefFoundError.<init>()V+1 (NoClassDefFoundError.java:37) java/lang/ClassLoader.defineClass(Ljava/lang/String;^BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+29 (ClassLoader.java:476) java/security/SecureClassLoader.defineClass(Ljava/lang/String;^BIILjava/security/CodeSource;)Ljava/lang/Class;+27 (SecureClassLoader.java:101) java/net/URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+176 (URLClassLoader.java:287) java/net/URLClassLoader.access£1(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+1 (URLClassLoader.java:231) java/net/URLClassLoader£ClassFinder.run()Ljava/lang/Object;+42 (URLClassLoader.java:555) java/net/URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+16 (URLClassLoader.java:217) Regards, Rajesh Anand Tel: + (44) (0) 207 996 1152 Mob: + (44) (0) 7947273151 Email:Rajesh_anand@xxxxxx -----Original Message----- From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Steven Van Loon Sent: 08 December 2004 14:12 To: 'Java Programming on and around the iSeries / AS400' Subject: RE: Error creating java object Rajesh, You should cd to the /test directory and then execute java -Djava.version=1.2 -classpath .:/java/jt400.jar:/java/xml/jdom-1.0/build/jdom.jar:/java/xml/jdom-contrib-1 .0/build/jdom-contrib.jar Test Steven. -----Original Message----- From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Anand, Rajesh Sent: woensdag 8 december 2004 14:57 To: Java Programming on and around the iSeries / AS400 Subject: RE: Error creating java object Hi Magne, Is this working on your iSeries?????? I did what you told me, the changed source is... THE PGM COMPILED OK..... public class Test { public static void main(String args[]){ try { DriverManager.registerDriver(new com.ibm.as400.access.AS400JDBCDriver()); Connection c = DriverManager.getConnection("jdbc:as400://mldev400/SPANAND"); Statement stmt = c.createStatement(); ResultSet rs = stmt.executeQuery("select * from LNAFGBP"); ResultSetBuilder builder = new ResultSetBuilder(rs); Document doc = builder.build(); PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("/java/demo/test.xml"))); XMLOutputter outputter = new XMLOutputter(); outputter.output(doc, pw); pw.flush(); pw.close(); c.close(); } catch (JDOMException e) { System.out.println(e); } catch (IOException e) { System.out.println(e); } catch (SQLException e) { System.out.println(e); } } } After running this cmd- java -Djava.version=1.2 -classpath .:/java/jt400.jar:/java/xml/jdom-1.0/build/jdom.jar:/java/xml/jdom-contrib -1.0/build/jdom-contrib.jar /test/Test And the ERROR again.... java.lang.NoClassDefFoundError java/lang/Error.<init>()V+1 (Error.java:41) java/lang/NoClassDefFoundError.<init>()V+1 (NoClassDefFoundError.java:37) java/lang/ClassLoader.defineClass(Ljava/lang/String;^BIILjava/security/Prote ctionDomain;)Ljava/lang/Class;+29 (ClassLoader. java:476) java/security/SecureClassLoader.defineClass(Ljava/lang/String;^BIILjava/secu rity/CodeSource;)Ljava/lang/Class;+27 (SecureCl assLoader.java:101) java/net/URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Lj ava/lang/Class;+176 (URLClassLoader.java:287) java/net/URLClassLoader.access£1(Ljava/net/URLClassLoader;Ljava/lang/String; Lsun/misc/Resource;)Ljava/lang/Class;+1 (URLCla ssLoader.java:231) java/net/URLClassLoader£ClassFinder.run()Ljava/lang/Object;+42 (URLClassLoader.java:555) java/net/URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+16 (URLClassLoader.java:217) java/lang/ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+39 (ClassLoader.java:297) sun/misc/Launcher£AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Cl ass;+33 (Launcher.java:275) java/lang/ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+1 (ClassLoader.java:257) java/lang/ClassLoader.loadClassInternal(Ljava/lang/String;)Ljava/lang/Class; +1 (ClassLoader.java:313) £ MY SETUP ON ISERIES.... ls /java demo jt400.jar xml ls /test Test.class Test.java ls /java/xml TEST.JAV jdom-contrib-1.0 test.java jdom jdom-contrib-1.0.tar.gz xerces jdom-1.0 jdom-contrib-1.0.zip xerces-2_6_2 £ Regards, Rajesh Anand Tel: + (44) (0) 207 996 1152 Mob: + (44) (0) 7947273151 Email:Rajesh_anand@xxxxxx -----Original Message----- From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Magne Kofoed Sent: 08 December 2004 13:41 To: Java Programming on and around the iSeries / AS400 Subject: RE: Error creating java object Hi Rajesh, 1. Try changing: public static void main(String[] arg){ to: public static void main(String args[]){ 2. Change: Connection c = DriverManager.getConnection ("jdbc:as400://mldev400;date format= iso", "xxx", "xxx"); To: Connection c = DriverManager.getConnection ("jdbc:as400://mldev400/SPANAND"); 3. Change: ResultSet rs = stmt.executeQuery("select * from SPANAND/LNAFGBP"); To: ResultSet rs = stmt.executeQuery("select * from LNAFGBP"); Rgds, Magne Hi Magne, You are the only one who has got this working, so I appreciate your help.... Done all those things you mentioned... 1. Changed the connection string, ip addr and lib in my pgm. 2. When running the java cmd changed the version to 1.2 as below... cmds in qshell... 1. cd /test 2. javac -classpath .:/java/jt400.jar:/java/xml/jdom- 1.0/build/jdom.jar:/java/xml/jdom-contr ib-1.0/build/jdom -contrib.jar /test/Test.java COMPILED OK...>>>>> 2. java -Djava.version=1.2 -classpath .:/java/jt400.jar:/java/xml/jdom- 1.0/build/jdom.jar:/java/xml/jdom-contr ib -1.0/build/jdom-contrib.jar Test 3. Env variables ----- /java/xml/jdom.jar /java/xml/jdom-contrib.jar and /java/jt400.jar 4. Created demo dir in /java/demo for output. A copy of the code is below... package demo; import java.io.IOException; import java.sql.*; import java.text.*; import java.io.*; import java.util.*; import org.jdom.output.*; import org.jdom.input.*; import org.jdom.*; import org.jdom.transform.*; import org.jdom.contrib.input.*; import com.ibm.as400.access.*; public class Test { public static void main(String[] arg){ try { DriverManager.registerDriver(new com.ibm.as400.access.AS400JDBCDriver()); Connection c = DriverManager.getConnection ("jdbc:as400://mldev400;date format= iso", "xxx", "xxx"); Statement stmt = c.createStatement(); ResultSet rs = stmt.executeQuery("select * from SPANAND/LNAFGBP"); ResultSetBuilder builder = new ResultSetBuilder(rs); Document doc = builder.build(); PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("/java/demo/test.xml"))); XMLOutputter outputter = new XMLOutputter(); outputter.output(doc, pw); pw.flush(); pw.close(); c.close(); } catch (JDOMException e) { System.out.println(e); } catch (IOException e) { System.out.println(e); } catch (SQLException e) { System.out.println(e); } } } Many Thanks for your help and look forward to hearing from you... Cheers, Rajesh Anand Tel: + (44) (0) 207 996 1152 Mob: + (44) (0) 7947273151 Email:Rajesh_anand@xxxxxx -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l. -------------------------------------------------------- If you are not an intended recipient of this e-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Click here for important additional terms relating to this e-mail. http://www.ml.com/email_terms/ -------------------------------------------------------- -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l. -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l. -------------------------------------------------------- If you are not an intended recipient of this e-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Click here for important additional terms relating to this e-mail. http://www.ml.com/email_terms/ -------------------------------------------------------- -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l. -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l. -------------------------------------------------------- If you are not an intended recipient of this e-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Click here for important additional terms relating to this e-mail. http://www.ml.com/email_terms/ --------------------------------------------------------
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.