Questions tagged [sip-servlet]

A SIP servlet is a Java programming language server-side component defined as part of the Java Specification Request 359 that performs SIP signalling and allows convergence with the Java EE Java specification.

A SIP servlet is a Java programming language server-side component defined as part of the Java Specification Request 359 (https://jcp.org/en/jsr/detail?id=359) that performs SIP signalling. SIP servlets are managed by a SIP servlet container, which typically are part of a SIP-enabled application server. SIP servlets interact with clients by responding to incoming SIP requests and returning corresponding SIP responses, acting as UAS. SIP Servlets can also acts as Clients (UAC), Back to Back User Agents and Proxy SIP Entities.

SIP servlets are built off the generic servlet API provided by the Java Servlet Specification.

40 questions
7
votes
1 answer

Container for sip servlets?

I am new to programming and working on SIP applications. I am bit confused about where to deploy SIP applications. I read about HTTP Servlets, which are deployed in servlet container, I believe Tomcat is one Servlet container. Basically, I have few…
Jardanian
  • 711
  • 1
  • 6
  • 11
3
votes
1 answer

How to use a SipServlet with Spring?

How to use a SipServlet with Spring such as the available on http://www.javaworld.com/article/2071781/java-web-development/sip-programming-for-the-java-developer.html?page=2 ? I'm using Spring MVC to map HTTP requests so for any given function I can…
andrepcg
  • 1,301
  • 7
  • 26
  • 45
2
votes
1 answer

Can't enable jboss security

I practise sip scenarios based on mobicents sip servlets. I have Restcomm-JBoss-AS7-8.2.0.1221 and my own sip application deployed on it (restcomm app is disabled). I encountered a problem with enabling jboss security. What I did: 1.Create…
enyoucky
  • 103
  • 1
  • 9
2
votes
1 answer

Web calling application using SIP Servlet

I am new to SIP Servlet. I want to build a web calling application. After googling for hours I got to know about SIP Servlet which fits my requirement. SIP is quite similar to HTTP. However, I have few doubts listed below. It will be really helpful…
Roshi Zr
  • 41
  • 1
  • 1
2
votes
3 answers

Sip Servlet get SDP content

I need to extrapolate the SDP from a SIP message in a SIP application. I've tried to do something like: protected void doInvite(SipServletRequest req) throws ServletException, IOException { String = req.getContent().toString(); } But it doesn't…
MrDjToto
  • 119
  • 2
  • 11
2
votes
2 answers

Mobicents SIP error response handling - what's the proper way to re-proxy?

The Mobicents SIP servlet container appears to handle error responses differently to other SIP containers I've used. The situation is that: On receipt of an INVITE, app handles and proxies (supervised) downstream (so it may receive the responses…
1
vote
0 answers

How to monitor RestComm Sip Servlets

I know that it is possible to monitor RestComm SIP Servlets under Tomcat via JMX, but I am more interested if it is possible to accomplish via SNMP? I cannot find any references how to do it. Has anybody tried it?
bkalcho
  • 309
  • 2
  • 11
1
vote
0 answers

Issues with TimerListener in a SIPServlet

I am developing a SipServlet that runs on the Oracle OCCAS platform. I need to implement a timer such that when it is fired (ie expired), a specific set of actions are taken. Looking at the SIPServlet 2.0 API, it appears that TimerService and…
ACoutu
  • 11
  • 2
1
vote
3 answers

RestComm SIpServlet - Sip Servlet as Application Server in IMS network

I'm trying to develop an IMS application server using a RestComm SipServlet. Initially my aim is just to insert the AS in the call flow without doing anything special. The application Server has just to doStuff and forward initial invite. The…
1
vote
1 answer

How to run RestComm Sip Servlet Container on Tomcat 8

I'm trying to run RestComm Sip Servlet on Tomcat 8. I'm a Java programming and have been using Tomcat for quite a while, but I'm a totally newbie in Sip Servlet programming. I've read the Restcomm SIP Servlets User Guide in…
1
vote
1 answer

How to synchronize Servlet client transaction?

Hello I am currently using restcomm-sip-servlets-4.0.75-apache-tomcat-8.0.26. and I am having issues canceling an ongoing request from the http request thread. I noticed that this issue only appears to happen when I create a new request with an auth…
100_Trying
  • 69
  • 6
1
vote
1 answer

SIP Servlets 2.1.547 Download

I'm trying to download the latest stable release from https://github.com/RestComm/sip-servlets/releases/tag/v2.1.547 but it appears the link is broken. Or am I doing something wrong?
1
vote
1 answer

MSS 4.0.21 doesn't proxy CANCEL request

I tested Mobicents (RestComm) Sip-Servlet (v 4.0.21) in proxy mode. Request "CANCEL" sent from UAC to UAS via Proxy Server (Apache Tomcat 8.0 + MSS 4.0.21) is not forwarded to UAS. The Sip-Servlet just returns 200 Cancelling to UAC and calls…
David R.
  • 31
  • 4
1
vote
0 answers

Restcomm sip-servlets does not forward INVITE request

I am trying to do a simple B2BUA application using the Mobicents/Restcomm sip-servlets. At first, it should receive an INVITE, change the R-URI and send the new request - basically call forwarding. The problem I encountered is that when using the…
kennyg
  • 13
  • 3
1
vote
1 answer

Sip Servlets clustering on wildfly

I have started using Mobicents (aka Restcomm) sip servlets with Wildfly 10 but even i could not find a clear answers in documentation or anywhere else for questions i have below. 1) Do sip servlets support standalone-ha model such as in a sip dialog…
1
2 3