i'm new to this forum, hope what i am sending is still in time.
assuming your silverstream installed in in d:\silverstream37
assuming your work is in toy.db
----------------------------------------------------------
put these inside a bat file
d:\SilverStream37\bin\silvercmd JspCompiler jsp1.jsp
...<do the same for all the jsp within this sub-directory>
set CLASSPATH=<all the necessary jars to be included>
javac *.java
jar cvf myjspjar.jar *.*
jar tvf myjspjar.jar
d:\SilverStream37\bin\silvercmd deployjsp -f Deploy.xml -o
toy myjspjar.jar
-----------------------------------------------------------
Deploy.xml looks like this
<obj_DeployJSP>
<URLs type="StringArray">
<el>run2</el>
</URLs>
<JARs type="StringArray">
<el></el>
</JARs>
</obj_DeployJSP>
------------------------------------------------------------
now you can run it at
actually there is another method that uses WAR but I don't know how to use that.
any kind soul pls guide