× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



        Changed my pagecode to 819 and whoopee!!! the program compiled OK. 
Success at last.

        However, when running encountered several problems. Please help and 
thanks in advance.

         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
        (SecureCl
        assLoader.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
      (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/Class;+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)                      
 £                                                                              
                                                  
      
        rgds,                                                                   
                                                         

Rajesh Anand
Email:Rajesh_anand@xxxxxx


-----Original Message-----
From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On 
Behalf Of Gary L Peskin
Sent: 03 December 2004 18:28
To: 'Java Programming on and around the iSeries / AS400'
Subject: RE: Error creating java object


Instead of using EDTF, use DSPF and then hit F10 to look at the file in hex.
My .java files are in CCSID 819.  The left bracket is x'5b' and the right
bracket is x'5d'.  You may have to set up a proper translation in your 5250
emulator.  Are you using Client Access or some other 5250 emulator?

Gary 

> -----Original Message-----
> From: java400-l-bounces@xxxxxxxxxxxx 
> [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Anand, Rajesh
> Sent: Friday, December 03, 2004 9:13 AM
> To: Java Programming on and around the iSeries / AS400
> Subject: RE: Error creating java object
> 
>       I downloaded the test.java file to my c:\ drive and the 
> file is empty, yet I can edtf on as400 in the same location.
> 
>       What CCSID should I be using. I'm using *PCASCII when 
> executing CPYTSTMF file from my lib to IFS.
> 
>       Is this correct?
> 
>       rgds,
> 
> Rajesh Anand
> Email:Rajesh_anand@xxxxxx
> 
> 
> -----Original Message-----
> From: java400-l-bounces@xxxxxxxxxxxx 
> [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Marc Nothum
> Sent: 03 December 2004 16:52
> To: CN=Java Programming on and around the iSeries/O=AS400
> Subject: RE: Error creating java object
> 
> 
> 
> 
> 
> It is clear, that the program could not run. If you run a 
> class like "java test", the jvm looks for a method public 
> static void main(String[] args).
> But public static void main(String args) is an other 
> (different) method.
> 
> The fact, that you have a compilation error with public 
> static void main(String[] args) seems, that the compiler does 
> not "see", what you see on your screen. The syntax is clearly correct.
> It has probably to do with the encoding of caracters. In your 
> editor, you use a certain encoding, which makes, that the 
> byte in the file is displayed to you as [. It seems, that the 
> javac is based on an other encoding, so that it does not 
> recognize the [ as [ but as some chunk caracter.
> 
> Not being a specialist concerning encoding on AS400, perhaps 
> somebody else may help.
> 
> Regards,
> 
>       Marc
> 
> 
> 
> 
> 
> 
> 
> 
> "Anand, Rajesh" <Rajesh_Anand@xxxxxx>@midrange.com on 
> 03/12/2004 17:25:07
> 
> Please respond to Java Programming on and around the iSeries / AS400
>        <java400-l@xxxxxxxxxxxx>
> 
> Sent by:    java400-l-bounces@xxxxxxxxxxxx
> 
> 
> To:    "Java Programming on and around the iSeries / AS400"
>        <java400-l@xxxxxxxxxxxx>
> cc:
> 
> Subject:    RE: Error creating java object
> 
> 
>  Guess what, it compile OK BUT WHY?
> 
>  Also, tried running it and got several Class Loader errors.
> 
>  Any idea why??
> 
>  Rgds,
> 
> Rajesh Anand
> Email:Rajesh_anand@xxxxxx
> 
> 
> -----Original Message-----
> From: java400-l-bounces@xxxxxxxxxxxx
> [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of Marc Nothum
> Sent: 03 December 2004 15:43
> To: CN=Java Programming on and around the iSeries/O=AS400
> Subject: RE: Error creating java object
> 
> 
> 
> 
> Hi,
> 
> 
> If you try to compile it like this:
>  public static void main(String args) {
> 
> It should compile, but will not run, as it is not the runable main.
> Only to see, if the problem comes from the [ ].
> 
> regards,
> 
>       Marc
> 
> 
> 
> 
> 
> "Anand, Rajesh" <Rajesh_Anand@xxxxxx>@midrange.com on 
> 03/12/2004 16:30:08
> 
> Please respond to Java Programming on and around the iSeries / AS400
>        <java400-l@xxxxxxxxxxxx>
> 
> Sent by:    java400-l-bounces@xxxxxxxxxxxx
> 
> 
> To:    "Java Programming on and around the iSeries / AS400"
>        <java400-l@xxxxxxxxxxxx>
> cc:
> 
> Subject:    RE: Error creating java object
> 
> 
>  Tried this but unfortunately same error....
> 
>  /java/xml/test.java:17: Identifier expected.
> 
>  public static void main(String[] args) {
>                                ¢
>  1 error
> 
>  rgds,
> 
> Rajesh Anand
> Email:Rajesh_anand@xxxxxx
> 
> 
> -----Original Message-----
> From: java400-l-bounces@xxxxxxxxxxxx
> [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of David
> Sent: 03 December 2004 15:22
> To: Java Programming on and around the iSeries / AS400
> Subject: RE: Error creating java object
> 
> 
> 
> You have main(String args[])   I think you would have more 
> success with
> 
> public static void main(String[] args) {
> 
> Note the difference in the String args !!!
> 
> 
> 
> 
> 
> 
> public class Crtxmldoc {
> public static void main(String args[]) { try {
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection 
> around http://mail.yahoo.com
> --
> 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/ 
> --------------------------------------------------------
>  
> 
> --
> 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 thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.