473,779 Members | 2,038 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Sun ONE, The xerces problem (Sun One Oh my)

I'm developing a WEB service for Sun ONE deployment (AppServer7).
I'm developing on Windows XP Pro though will deploy on Solaris,

Sun AppServer7 includes a XercesImpl.jar in share/lib. 2 kb
different than the one I usually use (xerces-2_1_0).

If I compile all my code against the Sun xerces implementation, I get a
class-def-not-found-error when trying to write any XML output.

java.lang.NoCla ssDefFoundError : org/apache/xml/serialize/XMLSerializer
com.accelere.se rver.kernel.sub scriber.FileSub scriber.write(F ileSubscriber.j ava:123)
com.accelere.se rver.kernel.sub scriber.FileSub scriber.process (FileSubscriber .java:100)
com.accelere.se rver.kernel.sub scriber.Abstrac tSubscriber.run (AbstractSubscr iber.java:155)

its really curious since I have no trouble with this running -outside-
of Sun ONE. I've tried everything I can imagine to try to ge this to
work. I've put the real xercesImpl.jar in my WEB-INF/lib dir. I've
put Sun's there. I've put min ein place of Sun's.. you name it...
I've even blended the two jars together... Of course, bot jars **do**
in fact contain a complete set of xerces classes, including the
XMLSerializer.

If I compile my our code against the normal xerces distribution I can't
load/read any XML in the AppServer 7 environment. This occurs because of
a class-def-not-found-error when trying to parse -any- XML input.
Documentbase not found... Sun sets the property.. then doesn't set
it back. I have no clue or idea of how to find outr which jar I'd
need of theirs to have their mystery class in my path.... Of course,
If I could create an instance of DOMParser I could query it for its
proerties, but these methods are not static.. and I through a class
not found exception when trying to make one.

There is no way to find out what classes Sun is trying to load, their
names etc.. or how to stop this from happening.

Does any one have a clue of how to work around this problem? Of course
Tomcat works fine.... but its not what the customer has specified.

Jul 17 '05 #1
3 3624
In article <3F************ @ix.netcom.com> ,
Roy Benjamin <rb*****@ix.net com.com> wrote:
I'm developing a WEB service for Sun ONE deployment (AppServer7).
I'm developing on Windows XP Pro though will deploy on Solaris,

There is no way to find out what classes Sun is trying to load, their
names etc.. or how to stop this from happening.


Actually there is a way to see what files the Sun program is openning.
One can start the program like `truss -f -o /tmp/truss.out command'
and look at all system calls in /tmp/truss.out. Truss is a wonderful
tool and it has many options to taylor its output.
--
http://www.math.fsu.edu/~bellenot
bellenot <At/> math.fsu.edu
+1.850.644.7189 (4053fax)
Jul 17 '05 #2
In <bf**********@n ews.fsu.edu> be******@math.f su.edu (Steve Bellenot) writes:
In article <3F************ @ix.netcom.com> ,
Roy Benjamin <rb*****@ix.net com.com> wrote:
I'm developing a WEB service for Sun ONE deployment (AppServer7).
I'm developing on Windows XP Pro though will deploy on Solaris,

There is no way to find out what classes Sun is trying to load, their
names etc.. or how to stop this from happening.


Actually there is a way to see what files the Sun program is openning.
One can start the program like `truss -f -o /tmp/truss.out command'
and look at all system calls in /tmp/truss.out. Truss is a wonderful
tool and it has many options to taylor its output.


I agree that truss is a thing of joy and beauty for native code, but it's
probably the wrong hammer to use for Java code, particularly since it is
common practice for Java classes to be grouped together in a JAR file
(glorified ZIP file) rather than stored as separate files in a directory
tree.

In this case, to add to the fun, all this is happening inside an app server
(Sun ONE), which if it's like other app servers probably has multiple levels
of classloaders with interesting semantics.
Thomas Maslen
ma****@pobox.co m
Jul 17 '05 #3

"Thomas Maslen" <ma****@pobox.c om> wrote in message
news:ma******** *******@dstc.ed u.au...
In <bf**********@n ews.fsu.edu> be******@math.f su.edu (Steve Bellenot) writes:
In article <3F************ @ix.netcom.com> ,
Roy Benjamin <rb*****@ix.net com.com> wrote:
I'm developing a WEB service for Sun ONE deployment (AppServer7).
I'm developing on Windows XP Pro though will deploy on Solaris,

There is no way to find out what classes Sun is trying to load, their
names etc.. or how to stop this from happening.


Actually there is a way to see what files the Sun program is openning.
One can start the program like `truss -f -o /tmp/truss.out command'
and look at all system calls in /tmp/truss.out. Truss is a wonderful
tool and it has many options to taylor its output.


I agree that truss is a thing of joy and beauty for native code, but it's
probably the wrong hammer to use for Java code, particularly since it is
common practice for Java classes to be grouped together in a JAR file
(glorified ZIP file) rather than stored as separate files in a directory
tree.

In this case, to add to the fun, all this is happening inside an app

server (Sun ONE), which if it's like other app servers probably has multiple levels of classloaders with interesting semantics.

A better hammer for this purpose is starting the app server with
the -verbose:class flag, to show all classes as they are loaded. The
information it provides is quite complete, as you can see from the
following:

[Opened c:\jdk1.4\jre\l ib\rt.jar]
[Opened c:\jdk1.4\jre\l ib\sunrsasign.j ar]
[Opened c:\jdk1.4\jre\l ib\jsse.jar]
[Opened c:\jdk1.4\jre\l ib\jce.jar]
[Opened c:\jdk1.4\jre\l ib\charsets.jar]
[Loaded java.lang.Objec t from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Seriali zable from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Compa rable from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.CharS equence from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Strin g from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Clone able from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class Loader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Syste m from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Throw able from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Error from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Threa dDeath from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Excep tion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Runti meException from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P rotectionDomain from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.A ccessControlCon text from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class NotFoundExcepti on from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Linka geError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.NoCla ssDefFoundError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class CastException from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Array StoreException from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Virtu alMachineError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.OutOf MemoryError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Stack OverflowError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eference from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.S oftReference from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.W eakReference from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.F inalReference from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.P hantomReference from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.F inalizer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Runna ble from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Threa d from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Threa dGroup from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Dicti onary from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Map from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Hasht able from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Prope rties from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.AccessibleOb ject from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.Member from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.Field from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.Method from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.Constructor from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Mag icAccessorImpl from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Met hodAccessor from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Met hodAccessorImpl from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Con structorAccesso r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Con structorAccesso rImpl from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Del egatingClassLoa der from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Colle ction from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Abstr actCollection from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.List from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Abstr actList from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Rando mAccess from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Vecto r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Strin gBuffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.Buffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Atomic Long from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Atomic LongCSImpl from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Boole an from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Chara cter from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Numbe r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Float from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Doubl e from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Byte from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Short from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Integ er from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Long from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.NullP ointerException from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Arith meticException from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Stric tMath from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.ObjectS treamField from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Compa rator from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Strin g$CaseInsensiti veComparator from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.A ccessController from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.G uard from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P ermission from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.B asicPermission from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.ReflectPermi ssion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P rivilegedAction from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Ref lectionFactory$ GetReflectionFa ctoryAction from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Stack from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Ref lectionFactory from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Runti mePermission from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eference$Lock from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eference$Refere nceHandler from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eferenceQueue from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eferenceQueue$N ull from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.R eferenceQueue$L ock from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.ref.F inalizer$Finali zerThread from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Enume ration from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Hasht able$EmptyEnume rator from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Itera tor from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Hasht able$EmptyItera tor from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.ObjectS treamClass from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Abstr actMap from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.SoftCa che from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Map$E ntry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap$Entry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Incom patibleClassCha ngeError from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.NoSuc hMethodError from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Hasht able$Entry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Versio n from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.InputSt ream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FileInp utStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FileDes criptor from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.OutputS tream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FileOut putStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FilterI nputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Buffere dInputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FilterO utputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.PrintSt ream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Buffere dOutputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Writer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.OutputS treamWriter from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Stre amEncoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.io.Converte rs from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Ref lection from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.security.ac tion.GetPropert yAction from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.Charset from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.spi.CharsetPr ovider from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Abst ractCharsetProv ider from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Stan dardCharsets from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Sorte dMap from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.TreeM ap from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.TreeM ap$Entry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Threa dLocal from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Hist oricallyNamedCh arset from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.MS12 52 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class $3 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.Modifier from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Lan gReflectAccess from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.refle ct.ReflectAcces s from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class $1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Ref lectionFactory$ 1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Nat iveConstructorA ccessorImpl from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.reflect.Del egatingConstruc torAccessorImpl from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Stre amEncoder$Chars etSE from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CharsetEncode r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Sing leByteEncoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.MS12 52$Encoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CodingErrorAc tion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CharsetDecode r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Sing leByteDecoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.MS12 52$Decoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.ByteBu ffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.HeapBy teBuffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.Bits from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Unsafe from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.ByteOr der from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.CharBu ffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.HeapCh arBuffer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CoderResult from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CoderResult$C ache from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CoderResult$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.nio.charse t.CoderResult$2 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Surr ogate$Parser from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Surr ogate from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Buffere dWriter from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.LogManager from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.Handler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.Level from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Array List from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.beans.Prop ertyChangeSuppo rt from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.LogManager$L ogNode from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.LoggingPermi ssion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Runti me from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.LogManager$C leaner from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Shutd own from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Shutd own$Lock from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Set from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Abstr actSet from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashS et from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Shutd own$WrappedHook from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Termi nator from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Signal Handler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Termi nator$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Signal from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Native SignalHandler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.Logger from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.loggi ng.LogManager$R ootLogger from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap$Values from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap$HashIterator from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap$ValueIterato r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.File from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FileSys tem from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Win32Fi leSystem from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.WinNTFi leSystem from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Hasht able$Enumerator from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Reader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.Buffere dReader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.InputSt reamReader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Stre amDecoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.ISO_ 8859_1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.Stre amDecoder$Chars etSD from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.nio.cs.ISO_ 8859_1$Decoder from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Event Object from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.beans.Prop ertyChangeEvent from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class Loader$3 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Class Loader$NativeLi brary from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.VM from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Compi ler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Compi ler$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URLStr eamHandlerFacto ry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er$Factory from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.S ecureClassLoade r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URLCla ssLoader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er$ExtClassLoad er from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.security.ut il.Debug from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Strin gTokenizer from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P rivilegedExcept ionAction from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.ParseUtil from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.BitSe t from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URL from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.Parts from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.Local e from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URLStr eamHandler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.protocol.file.Handler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.protocol.jar.Handler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er$AppClassLoad er from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Launch er$2 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Syste mClassLoaderAct ion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URLCla ssLoader$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath$2 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath$Loader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath$JarLoade r from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.Z ipConstants from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.Z ipFile from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.J arFile from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.security.ac tion.LoadLibrar yAction from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.JarInd ex from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Extens ionDependency from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.Z ipEntry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.J arEntry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.J arFile$JarFileE ntry from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.DataInp ut from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.DataInp utStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.Z ipFile$ZipFileI nputStream from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.I nflaterInputStr eam from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.Z ipFile$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.zip.I nflater from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.M anifest from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.ByteArr ayInputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.A ttributes from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.M anifest$FastInp utStream from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.A ttributes$Name from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.jar.J arVerifier from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.ByteArr ayOutputStream from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.lang.Math from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P rivilegedAction Exception from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath$FileLoad er from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.Resour ce from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.misc.URLCla ssPath$6 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.C odeSource from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P ermissionCollec tion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P ermissions from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.URLCon nection from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.URLConnection from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.protocol.file.FileURLConnection from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.Conten tHandler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.net.Unknow nContentHandler from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded sun.net.www.MessageHeader from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FilePer mission from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FilePer mission$1 from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.U nresolvedPermis sion from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.io.FilePer missionCollecti on from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.B asicPermissionC ollection from
c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.P rincipal from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.security.c ert.Certificate from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded HelloWorld]
Hello, world

[Loaded java.util.HashM ap$KeySet from c:\jdk1.4\jre\l ib\rt.jar]
[Loaded java.util.HashM ap$KeyIterator from c:\jdk1.4\jre\l ib\rt.jar]
Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
4272
by: bugbear | last post by:
Subject pretty much says it all. I'd like to parse XML (duh!) using Xerces (because its fast, and reliable, and comprehensive, and supports lots of features). I'd like to conform to standards as much as possible, so I'd like to call Xerces under the JAXP API. I'd like to validate the XML against a DTD, so that errors are flagged up to the user, and I can transcribe
2
4661
by: Olaf Meyer | last post by:
Apprentently xerces 2.6.0 (Java) does not validate against contraints specified in the schema (e.g. constraints specified via unique element). The validation works with the XML editor I'm using (XMLSpy4) but not with Xerces 2.6.0. I've included a really short and simple example to illustrate it. I would like to get some comments on the validation capabilities of Xerces 2.6.0. I though it *fully* supported W3C Schema!
2
3958
by: Cigdem | last post by:
Hello, I am trying to parse the XML files that the user selects(XML files are on anoher OS400 system called "wkdis3"). But i am permenantly getting that error: Directory0: \\wkdis3\ROOT\home Canonicalpath-Directory4: \\wkdis3\ROOT\home\bwe\ You selected the file named AAA.XML getXmlAlgorithmDocument(): IOException Not logged in
4
1712
by: M Arora | last post by:
Hi All I am using Xerces parser to convert my xml to the output given below and for this i am using the xslt. How shall i create href attribute in xerces parser? When i am using MSDOM parser the output is whats requied. But if Xerces parser is used then no attribute withe name href is created. Can any one suggest what need to to be done.
18
7739
by: jacksu | last post by:
I have a simple program to run xpath with xerces 1_2_7 XPathFactory factory = XPathFactory.newInstance(); XPath xPath = factory.newXPath(); XPathExpression xp = xPath.compile(strXpr); System.out.println(xp.evaluate(new InputSource(new FileInputStream("a.xml"))));
3
1942
by: Raphael Tagliani | last post by:
(english version below) Bonjour! Je travaille sur un gros projet java, qui parse beaucoup de fichiers xml au lancement d'un serveur. Nous avons un problème de concurrence qu lancement. En fait, il s'agit d'une erreur Xerces FWK005, et nous sommes incapables de trouver d'où elle provient dans le code. Nous avons déjà essayé de rendre toutes les méthodes qui appellent Xerces synchronized, mais celà
2
1934
by: Nirmal | last post by:
Hi, Where can I get the real version of xerces 2.8.0 jar instead of xercesSamples2.8.0, This one I got it from Xerces-J-bin.2.8.0 downloads in http://archive.apache.org/dist/xml/xerces-j/binaries/ The size of the xercesSamples2.8.0 jar is less as we expected.
9
3020
by: mstilli | last post by:
Hi, I am trying to use schema for server side validation using xerces to catch the validation errors. validating this XML: <Content4> <textarea13></textarea13> <binaryobject3></binaryobject3>
2
2361
by: Boris Kolpackov | last post by:
Hi, I am pleased to announce the availability of Apache Xerces-C++ 3.0.0. Xerces-C++ is an open-source validating XML parser written in a portable subset of C++. It provides DOM (level 1, 2, and 3), SAX, and SAX2 APIs and supports validation of XML documents against DTD and XML Schema. This release includes a large number of new features, bug fixes, and clean-ups, including:
0
9636
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10306
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10138
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8961
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7485
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5503
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3632
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2869
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.