We are currently performing maintenance on Appian Community. As a result, discussions posts and replies are temporarily unavailable. We appreciate your patience.

How Appian plugins can be created by including jsp files

I am trying to create a simple Appian servlet plugin in which my servlet class need to redirect to a jsp page.


Since custom plugins are created as standalone project where should I place my jsp file ?

Do I require to import any other external jar files to run the jsp file?


  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Lead Developer
    in reply to greshmaj
    You can access this application (which contains JSP page) from anywhere using servlet using response.sendRedirect(myURL); method, but by any chance if you feel that, both of them may or may not be in same server, then you need to use public IP of the server(which will have war file containing JSP page) instead of local IP for redirecting through servlet. It will work.

    Because sendRedirect(...) Works within as well as outside of the container.

    For example, instead of http://172.0.0.1:8087/MyApp this URL, you can go for public IP for this server, so that it will be accessible from anywhere, like
    http://256.92.98.98:8087/MyApp, assume 256.92.98.98 is the public IP for this server. There are many vendors which allows you to deploy war file into their cloud server(internally uses Tomcat) free of cost, so you can try these sites, in case if your server don't have public IP.