Hi Avik/Michael,
Thanks alot for posting some information on Weblogic JSP Compilation. I tried it and it works for files in only 1 sub-directory. That is, the target takes the very first subdirectory and checks to see if there are .jsp files, if so compiles them. How do I compile an entire UI folder with hundred's of JSP's organized & spanning across various sub-directories and sub-directories within them.
If you know how I could write the target, it will greatly help. BTW, this is the target I wrote to compile my JSP's.
<target name="jspcompile" >
<wljspc src="${ui.dir}"
dest="${servlets.dir}"
package="jsp_servlet">
<classpath refid="project.class.path"/>
</wljspc>
</target>
The above target works only for the very first directory where the Ant is able to find .jsp files. All the other sub-folder it ignores it. Is there a way to SPECIFY the UI folder, so that it recursively compiles all the JSP's in the folder completely.
Your help will be greatly appreciated.
Thanks,
Venki.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
