Questions tagged [jain-sip]

JAIN-SIP, or JSIP, is a Java specification for SIP Signaling.

Overview
The Java APIs for Integrated Networks (JAIN) is a JCP work group managing telecommunication standards. Session Initiation Protocol (SIP) is a standard communication protocol. Java and SIP together create the JAIN SIP API, a standard and powerful API for telecommunications. This idea started in 1999 with JSR 32. The reference implementation is open source, very stable, and very widely used. This API is frequently (but not necessarily) used for client-side application development. Other container-based technologies, like SIP Servlets, are simpler to use for server-side development.

Useful Links
JAIN-SIP homepage

167 questions
1
vote
1 answer

how do i deploy mobicents to glassfish v3

is anyone using Mobicents with Glassfish in place of JBoss? how do i deploy mobicents to glassfish v3?
seref
  • 41
  • 1
  • 4
1
vote
1 answer

How to create and send Bye message from client to server in jainsip android?

I have tried jainsip example in Mobicents restcomm-android-sdk.Its worked for me but i am not able create bye message from client side properly. I created a Bye Message class like this public class Bye { public Request MakeRequest(SipManager…
Nidhin
  • 1,818
  • 22
  • 23
1
vote
1 answer

Redirecting SIP messages without modifying header

This is probably going to sound crazy but I need to produce a quick hack. Java based product has a Chat app that communicates with Server via sip(JAIN). I need to send these SIP messages to a local PC port. Theses messages will picked off the local…
Trav
  • 21
  • 3
1
vote
1 answer

Sip Servlet not sending Invite request

I make a client using android JAIN-SIP application and I have a sip servlet running on mobiecent jboass as7. I have successful send REGISTER to server and register the client to location service. Now I send the invite request,Sip-Servlet response…
mubeen
  • 813
  • 2
  • 18
  • 39
1
vote
0 answers

Jain sip registration successful but the client is unreachable in asterisk

I have an issue related to jain sip and asterisk. I am using jain sip for registration to asterisk and I can receive a valid response (200 OK) from asterisk when the REGISTER request is sent out. The problem I am facing is that when I check the sip…
skywalker
  • 696
  • 2
  • 16
  • 37
1
vote
2 answers

sip authorization header cannot be added

I have a question about authentication with jain sip library. I am using jain sip for registering sip accounts to Asterisk server. As soon as I try to add AuthorizationHeader the following error message appears: The method…
skywalker
  • 696
  • 2
  • 16
  • 37
1
vote
2 answers

Build Sip Client using Sip Servlet as signalling

I am using mobicent sip servlet and I have deployed it in JBOSS as7 successfully. But I saw testing is from the sip softphones. I have google search alot about building our own sip client but I cannot find the proper guide. What I have to do is…
mubeen
  • 813
  • 2
  • 18
  • 39
1
vote
1 answer

How to answer all SIP Calls automatically in Java

I want automatically answer all sip calls. When I respond with trying or ringing, the transaction is in a proceeding state, but when I send the OK response, the transaction is in a terminated state. This is my code: public void…
Anar Orujov
  • 591
  • 5
  • 18
1
vote
1 answer

JAIN SIP setPathName()

I'm trying to develop an android SIP app (SiPapp.example.org) with Jain Sip api, following this example http://www.telestax.com/jain-sip-stack-for-android and I am not sure if I have completely understood sipFactory.setPath(). What should I put…
Isaac
  • 1,436
  • 2
  • 15
  • 29
1
vote
3 answers

How do I do a SIP telephone call

I want to constract a telephone-caller inside my java application. For this pupose I used a JAIN-SIP library. After the first INVITE the system needs Proxy-Authentication. The second invite is conscructed with the help of…
user2957954
  • 1,221
  • 2
  • 18
  • 39
1
vote
1 answer

Not able to send SIP notify to end points using IPV6 address

I am trying to send notify to an endpoint having IPV6 address. But getting an exception. Exception javax.sip.SipException: Cannot assign requested address: Datagram send failed After doing some search i found that destination might be invalid but…
1
vote
1 answer

JAIN-SIP support for RFC 7339

Is there any way to add custom via header in jain-sip? Adding the oc-parametrs from RFC 7339. From enter link description hereplace I got the following example, but not sure if it will work. The quote from link: This could be easily achieved by…
Donvino
  • 2,407
  • 3
  • 25
  • 34
1
vote
1 answer

Difference between JAIN API and JAIN SLEE API

I was reading about SIP and found that there's an java API JAIN SIP to develop SIP based applications. Then I also found that there is JAIN SLEE and SIP servlets. I believe JSLEE and SIP Servlets are containers to deploy applications based on JAIN…
user3275095
  • 1,605
  • 4
  • 24
  • 36
1
vote
3 answers

Creating SIP application

I am totally new to SIP and the related technologies. I am studying about what is SIP protocol and SIP transactions. Got the basic idea. I have a project to do where I have to create a very basic SIP service which will tell about the presence of…
user4175162
1
vote
1 answer

SIP Register Request using JAIN SIP

I try to develop a sipPhone for the project of the end of study .Now, I still stick in how can I register to Asterisk 1.8 server with authentication. I downloaded this code from here: package examples.authorization; import…
JHDev
  • 974
  • 2
  • 26
  • 38