Good Morning

You can always rip the jar apart and put it together as in this example (best 
to start with a new folder I called it SomeNewDir
mkdir SomeNewDir
cd SomeNewDir
jar -xvf servlets-cgi.jar

place new file in exact package location (look at the package signature at top 
of java file) so if the package name is fu.bar
cd SomeNewDir
cd fu
cd bar

copy the compiled file into the folder containing the expanded binary distro as 
in this example
cp CGIServlet.class .

then jar it all back together again
jar -cvf servlets-cgi.jar

voila your jar now contains your new fu.bar.CGIServlet.class

HTH
Martin --
This e-mail communication and any attachments may contain confidential and 
privileged information for the use of the 
designated recipients named above. If you are not the intended recipient, you 
are hereby notified that you have received
this communication in error and that any review, disclosure, dissemination, 
distribution or copying of it or its 
conte
----- Original Message ----- 
From: "HALSTEAD SGT WARREN F" <[EMAIL PROTECTED]>
To: <users@tomcat.apache.org>
Sent: Tuesday, October 17, 2006 9:29 PM
Subject: Multipart form patch application problem


All,

I am running Tomcat 5.0.28. It is precompiled on a secure
system, so I can't just upgrade or compile over it. But I need to get
multipart/form-part working. I saw that the issue had been noted and
rectified in Bug 32023 (see below sig for link). The fix was to  patch
the CGIServlet.java file and I'm guessing that gets compiled to
servlets-cgi.jar

 Does anyone have a way for me to apply your patch to a already compiled
system? Perhaps a compiled servlets-cgi.jar that already has the patch
that they could send me?

Any help you could provide is this matter would be greatly appreciated.

Very Respectfully,

~Warren Halstead

Link to bug 32023:
http://issues.apache.org/bugzilla/show_bug.cgi?id=3D32023



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to