Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Rendering JSP page in Teamsite
begood321
Hey guys,
When I create a HTML page inside a templatedata>Category>datatype, and when I click on it, it gives me a nice HTML page. When I create a simple JSP page, it does not render me a page. Now I know, JSP page needs a server like
Tomcat to render a page. Now how do we go about rendering a page in TS? I think i saw a servlet folder in TS, which contains webapps and when I create a JSP page in there, I can see the page!! But I do not know how to go about it in TS!
Thanks for your help.
Find more posts tagged with
Comments
nipper
You do not use the internal Tomcat to render the JSP, you need to point the proxy server to an instance that will render the page for you. Peruse the TS Admin manual. You can do something like this in teh iw.cfg:
[iwproxy_preconnect_redirect]
_regex=^/iw-mount/default/main/branch/WORKAREA/Content/(.*)\.jsp$=
http://myserver:84/$1.jsp
Assuming port 84 on mysever has a docroot pointing to the TS workarea.