Hello All,
I have a project comprising of jsp and a class file that works in Tomcat. Iu2019m trying to convert it into a portal application but getting stuck.
I have read through various articles and manuals but I'm trying to avoid rewriting the project in NWDS.
I have NWDS and can create the portal application directories, but do not know where to go from there with this.
If I need to recreate it in NWDS with dynpages and components, I will but need to know how I will call from jsp to jsp and from jsp to a class file.
I used jsp as I programmed asp previously and the error messages are more descriptive for jsp files than class files.
C:\Tomcat6\webapps\test\ is the folder.
C:\Tomcat6\webapps\ConnSAP2\WEB-INF\classes\conn is the package
Test.jsp is the entry page that displays flash graphs based on information retrieved from Test2.jsp via xmlhttp.open('GET','test2.jsp?' + sendData,false). I used xmlhttp because I can then update the flash files without reloading the page.
Test2.jsp reads information from Test.jsp via request.getQueryString() which it uses to pass information to a public function in the class file.
The class file then imports a data.properties file with logon details and logs into a system after which it returns information back to Test2.jsp via Hashtables and arrays.
Test2.jsp then processes the information and calls Test3.jsp that writes out the result.
Test.jsp then displays this information in flash graphs.
I know this is a newby question, but we all start somewhere and I would appreciate any help.