Questions tagged [mobicents-sip-servlets]

Mobicents Sip Servlets delivers a consistent, open platform on which to develop and deploy portable and distributable SIP and Converged JEE services. It is the first open source certified implementation of the SIP Servlet v1.1 (JSR 289 Spec) on top of Tomcat & JBoss containers.

Mobicents Sip Servlets delivers a consistent, open platform on which to develop and deploy portable and distributable SIP and Converged JEE services. It is the first open source certified implementation of the SIP Servlet v1.1 (JSR 289 Spec) on top of Tomcat & JBoss containers and strive to feature best performances, security, foster innovation and develop interoperability standards between Sip Servlets and JSLEE so that applications may exploit the strengths of both.

The project and documentation is available as open source at the following location https://github.com/Mobicents/sip-servlets

52 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
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

PChargingVectorParser of jain-sip-ri doesn't accept IPv6 in icid-value of P-Charging-Vector

I am building a SIP application using mss (mobicents sip servlets). P-Charging-Vector has icid-value and icid-generated-at parameters. according to rfc3455, and rfc3261 both icid-value and icid-generated-at paramaters can be in a form of : "["…
eran levi
  • 133
  • 2
  • 9
2
votes
2 answers

SIPML 5 Client and SipServlets not works Using WSS

I Have Tomcat run on HTTPS. I have tried to deploy SIPML5 WebSocket Application To into my tomcat. When I tried to connect Sip Servlets using ws : ws://192.168.X.Y:5082 And Sip Servlets Config looks like :
2
votes
1 answer

Mobicents Restcomm Hello-World Implementation

I am following Mobicents Restcomm's guide to implement Restcomm Client Android. I am following their quick start guide for that. I have imported their Hello-World program in Android Studio but there are some issues. It is imported but it is throwing…
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
1 answer

Mobicents- Sip Servlets on Tomcat - Disconnecting multi party

I am a newbie at developing SIP applications on SIP-Servlets. I have tried developing multiparty basic SIP connections which is explained below. Received a call from A. (Session-1) Created an Invite to B. (Session-2) Created an Invite to…
2
votes
3 answers

SIP Servlet not starting in JBOSS 7.2 from Eclipse

I currently work on a project based on Mobicents SIP Servlets and JBoss 7.2. I created a new Dynamic Web Project in Eclipse with the template the Mobicents Eclipse Plugin gives me, then mavenize it. Then I created a JBoss Server in Eclipse pointing…
jcklie
  • 4,054
  • 3
  • 24
  • 42
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…
2
votes
2 answers

SIP to WebRTC call. SIP sdp body/message content anomalies

So, below is the response I get from x.x.x.x (webRTC) when calling from y.y.y.y (SIP). The call establishes, however only with video and not audio, with 100% consistency. My question is does anyone know what the final two sdp headers in the body…
hipkiss
  • 197
  • 2
  • 19
1
vote
2 answers

Are there any ways to fix Log4j vulnerability when it is being used as a transitive dependency

My project has a transitive dependency on log4j v1.2.16 through org.mobicents.servlet.sip package used in my project as a direct dependency. But org.mobicents.servlet.sip is no longer actively developed. Are there any options to fix this…
1
vote
0 answers

SipServlet CRBT Implementation

Hi I want to implement CRBT using mobicents sipservlets. for doing it i made a b2bua sipservlet that when it receives a call (first leg) it makes the second leg of call . when it receives the 180 ringing from the second leg it makes another call to…
pumper
  • 127
  • 5
1
vote
1 answer

Restcomm Sipservlets docker with tomcat

I am looking at running the tomcat 8 version of RestComm sipservlets within a docker container. The main concern I have is passing the public IP as an environmental variable so that is used in sip messaging. Additionally, I also like to know how the…
1
vote
0 answers

how to get user password in sip servlet

I work on restcomm sip servlet. I use restcomm web sdk and restcomm tomcat as a server. when I want to get a password in the doRegister method its return null. the server code is: String password = ((SipURI)…
sadeghpro
  • 448
  • 2
  • 8
  • 24
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
2 3 4