how to ship jar with applet

I have a problem in shipping jar files with applet.

I have a applet which does xml parsing using

org.w3c.dom.Document;

org.w3c.dom.Element;

javax.xml.parsers.DocumentBuilderFactory;

javax.xml.parsers.DocumentBuilder;

files.

For JRE 1.5,1.4 has the above files by default. But for lower versions iam planning to ship server.jar.

How can i ship both my app.jar and server.jar so that my applet runs in 1.3,1.2 without any user invervention.

Thanks in advance.

Mani

[529 byte] By [manu_007a] at [2007-10-2 0:49:24]
# 1
Hello,A suggestion...Have you thought about packing server.jar inside app.jar?Check about Class-Path in manifest files. That might solve your problemHope this helps
virusakosa at 2007-7-15 17:59:35 > top of Java-index,Java Essentials,New To Java...