I have a servlet plugin in my environment and it returns some data whenever I hi

I have a servlet plugin in my environment and it returns some data whenever I hit its URL. I wrote a JSP that displays the servlet's data. Where should I place that JSP in Appian so that I can hit my environment's URL in conjunction with that JSP file, in order to view that JSP output ? Also, what is the exact URL I should hit ?

OriginalPostID-198724

OriginalPostID-198724

  Discussion posts and replies are publicly visible

Parents
  • To expand to mpontius' point. Since there is no place to put JSP, so you'll need to do it the old-fashioned way (before JSP was invented). You just have to generate all HTML outputs from within the Servlet itself.
    You might need to make use of a template mechanism (such as Velocity, FreeMarker, or StringTemplate), if your HTML output is rather complicated with many formatting.
Reply
  • To expand to mpontius' point. Since there is no place to put JSP, so you'll need to do it the old-fashioned way (before JSP was invented). You just have to generate all HTML outputs from within the Servlet itself.
    You might need to make use of a template mechanism (such as Velocity, FreeMarker, or StringTemplate), if your HTML output is rather complicated with many formatting.
Children
No Data