Container for servlets?

I am new to programming and working on SIP applications. I'm a little confused about where to deploy SIP applications. I read about HTTP servlets that are deployed in a servlet container, I believe Tomcat is one Servlet container.

Basically, I have few questions and understanding:

  • The container manages the servlet life cycle, and if I just get the servlet api jar and deploy it with my application, it won’t work?
  • I found the SIP surfing API, as well as the Mobicents SIP servlets. Various?
  • Can I deploy my SIP servlet application to Tomcat with the API Bank?
  • It is a Mobicent container for SIP servlets, such as Tomcat, for HTTP servlets, but Mobicents also has Tomcat.

These are very naive questions, but I tried to figure out the answers myself and was not successful. I'm not from programming, so I have difficulty understanding things.

thank

+4
source share
1 answer
  • I invite you to read the specification https://jcp.org/en/jsr/detail?id=289 , which is not complicated, and will give you a good idea of ​​what you can do. SIP servlets are built into the general servlet API provided by the Java servlet specification, but differ in several ways, in particular from asynchrony or the ability to generate multiple responses to an incoming request

  • API- SIP- Java, 1. . Mobicents SIP Servlets - API SIP. TeleStax. JBoss Application Server (aka Wildfly), Java EE Red Hat.

  • Mobicents SIP Servlets Tomcat. SIP Servlets. , , .

  • SIP SIP HTTP, , HTTP SIP , , VoIP-. Mobicents SIP Servlets Tomcat SIP . , Vanilla Tomcat SIP , SIP- Tomcat Version, SIP.

;)

+5

All Articles