DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5519>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5519

[Fatal Error] A '(' character or an element type is required in the declaration of 
element type appears using Un*x flavors.





------- Additional Comments From [EMAIL PROTECTED]  2002-01-31 21:52 -------
Again, I'm also unable to reproduce the problem with Xerces 2.0.0 using the 
same JVM and invocation command - I'm seeing error messages produced.  Is it 
possible your classes are being loaded from somewhere other than the jar files 
specified with -classpath - the bootstrap classpath for instance?  You might 
try the following program with this invocation just as a quick check that 
they're loaded from these jars.

java -classpath xercesImpl.jar;xercesSamples.jar;xmlParserAPIs.jar;. WhereAmI 
sax/Counter.class org/apache/xerces/parsers/SAXParser.class


import java.net.URL ;

public class WhereAmI {

    public static void main( String argv[] ) {
        if (argv.length== 0) {
            argv = new String[] { "java/lang/String.class", "Blah.class" } ;
        }

        for (int a=0; a<argv.length; a++ ) {
            URL url = ClassLoader.getSystemResource(argv[a]);
            if (url==null ) {
                System.err.println( argv[a] + " not found" ) ;
            }
            else {
                System.err.println( argv[a] + " is " + url ) ;
            }
        }
    }
}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to