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

Appian with Tomcat and PostgreSQL

Hi guys,

I would like to ask if someone has experience with installing Appian using Tomcat app server and PostgreSQL database. Do you think it is even possible or not?

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Lead Developer
    as per my understanding, you cannot use Appian with Tomcat Server, because If you're in a large enterprise environment then you need to go for JBoss or some other pure Java EE Application Server. Tomcat most fits for pure web centric application (.war file).

    In terms of containers, Jboss do have more containers compared to Tomcat like Catalina, Jasper, EJB container and many more.

    As per my experience, tomcat fits for small scale applications as well for the quick debugging, where number of requests will be less compared to large scale application, as we know that Appian internally uses Java, and as per Java EE documentation, for each request one Thread object will be created, so if the number of request are more then huge amount of Thread objects will be created, so the server must be capable to server those many requests at a time. So we need a pure Java EE Application server with Load Balancing.

    So as a conclusion, you cannot use Appian with Tomcat Server.
Reply
  • +1
    Certified Lead Developer
    as per my understanding, you cannot use Appian with Tomcat Server, because If you're in a large enterprise environment then you need to go for JBoss or some other pure Java EE Application Server. Tomcat most fits for pure web centric application (.war file).

    In terms of containers, Jboss do have more containers compared to Tomcat like Catalina, Jasper, EJB container and many more.

    As per my experience, tomcat fits for small scale applications as well for the quick debugging, where number of requests will be less compared to large scale application, as we know that Appian internally uses Java, and as per Java EE documentation, for each request one Thread object will be created, so if the number of request are more then huge amount of Thread objects will be created, so the server must be capable to server those many requests at a time. So we need a pure Java EE Application server with Load Balancing.

    So as a conclusion, you cannot use Appian with Tomcat Server.
Children