|
Re: Does anyone have experience accessing Java Jar Object with ASP?
A .jar file is just an archive in the same format as .zip (only the file extension differs). As such, if you can extract the files from the archive, and/or add files to it, you're set. You could do this with external tools on the server (by running these programs from server-side code), or you could roll your own.
If you're looking to do the latter, this article may be of some use to you- but then again, maybe not.
__________________
A man's knowledge is like an expanding sphere, the surface corresponding to the boundary between the known and the unknown. As the sphere grows, so does its surface; the more a man learns, the more he realizes how much he does not know. Hence, the most ignorant man thinks he knows it all. - L. Sprague de Camp
|