I have a JSP page in one of the directories in TS71.When I click on this JSp page, it should display the output. But I am getting 400 error.Now I understand that tomcat is to be configured for proper display of JSP. Where do I look for tomcat config files in TeamSite ? FIle structure in for Apache and Tomcat looks different in TeamSite rather than when Apache Tomcat is installed standalone.Please guide me , how to configure these directories which contain JSPs.Thanks
What Goti said is righthere is the configuration to redirect the your JSP preview to Different App or Web server1. Add the following in the proxy_preconnect_remap section in the iw.cfg file:[iwproxy_preconnect_remap]_regex=^.*/WORKAREA/WA1/(.*jsp)=http://techspot6w2k3:8888/ac/$1Replace techspot6w2k3 with the server-name and 8888 with Tomcat port and ac with a user directory.2. Edit server.xml under [tomcat home]/conf to add the following:<Context path="/newapp"docBase="Y:/default/main/WORKAREA/WA1"debug="1"reloadable="false"/>3. Save the files and restart Tomcat and Interwoven Proxy services.4. Now click on the JSP file in WA1. You will now be able to preview the JSP file in WA1.If You Still need to redirect to servlet Engine(comes with Jboss server)i can give the changes too,For this you don't need to install any server.