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
0
votes
1 answer

jain sip processResponse() not getting invoked

Im trying to send SIP register request using JAIN SIP API. I've implemented javax.sip.SipListener in the class and my program successfully sends the request and even i get a 401 unauthorized response from the sip server. I have verified this using…
jithu
  • 111
  • 2
  • 13
0
votes
1 answer

Duplex RTP connection estabilished in JMF when called from one side but comes unreachable port when called from other side

I have used JMF to transmit and receive audio for an application using JAIN-SIP and below is my code: import com.sun.media.rtp.RTPSessionMgr; import java.io.IOException; import java.net.InetAddress; import java.net.URL; import…
Manish
  • 1,999
  • 2
  • 15
  • 26
0
votes
1 answer

Why is P-Charging-Vector header removed while sending REGISTER message?

I try to send REGISTER message to I-CSCF as below. P-Charging-Vector header is added to message as you can see below logs. I checked packets sent out and this header is removed. It seems that it is removed by the code run after…
hozlem
  • 31
  • 5
0
votes
1 answer

JainSIP, simple user registration

I've got a simple code for user registration. Of course, it doesn't work, because I'm new at Jain SIP stack, and I don't understand many things. I tried to imitate the Android SIP API, but unsuccessfully. import javax.sip.SipFactory; import…
0
votes
1 answer

Which SIP Stack choose for closed-source application in Android

I need to make a voice and video calls using SIP. I don't know, which SIP Stack choose, because application must be closed-source, but all quite good stacks are distributed under GPL license. I thinking about using JAIN - SIP stack, but I'm not sure…
Jake
  • 633
  • 1
  • 7
  • 19
0
votes
1 answer

Can not run my SIP Server. Showing Errors

I have written a code for a sip server for testing my sip client. I have given nist.gov as the pathname. But it's not working. It's showing an error. The error is The peer SIP Stack : nist.gov.javax.sip.SipStackImpl could not be initiated. …
0
votes
1 answer

how subscribe to buddylist using resource list xml

I need to implement a SIP subscription to a resource list, under which tag I should put the XML buddy list that contains the desired SIP ID (to monitor their states). Note that I'm using Jain-SIP API, and I implemented the single subscription and is…
Salim R
  • 343
  • 7
  • 16
0
votes
2 answers

JAIN-SIP 1.2 for Android: Missing javax.sip.STACK_NAME property

I'm trying to run JAIN-SIP Stack on an Android-Device (4.0.2). I was able to repackage the jar-files which were needed (jain-sip-api-1.2-src.jar, jain-sip-src-1.2.1111.jar, concurrent.jar, log4j-1.2.8.jar). This is my build.xml file which I used: …
0
votes
1 answer

SIP getting 407 Response for BYE Request

In my VOIP Application, i am sending Invite request to ( INVITEE_NUMBER ), and getting 200 OK Response when invitee picks up a call, But when i send Bye request to terminate the call, i am getting 407 Response code from the server, Should i treat…
Amitg2k12
  • 3,765
  • 10
  • 48
  • 97
0
votes
1 answer

Deploying SIP servlet on Jboss

I'm new to SIP Servlet development and I would like to know how to deploy my Sip servlet to my Jboss server. I can't seem to find how to do it by googling it. I see a lot of information on using mobicents but do I have to? Can't I just deploy…
user1192724
  • 529
  • 2
  • 7
  • 15
0
votes
1 answer

Using Native SIP Dialer while making SIP call from Application

I am developing android application for SIP. I am successful in making SIP Stack using Jain -sip-stack but for making call, i want to integrate my application with Native SIP dialer for making calls. which is default and also available in android…
G M Ramesh
  • 3,420
  • 9
  • 37
  • 53
0
votes
1 answer

JAIN-SIP getting request source IP address and port

Is there a way of getting the IP address/port of an incoming request? (I don't want the data in the message, but I'd like information from the SIP stack itself, and preferably also the listening point the request had been received on.) So far I have…
Matthias van der Vlies
  • 3,834
  • 3
  • 24
  • 28
0
votes
2 answers

Multiple calls from a SIP

I want to make multiple calls from my SIP. Now my program is written to make a single call. How can i alter this to support more than one calls simultaneously? can I make more multiple sipstacks ? if yes what would be there IP address? How would I…
-1
votes
1 answer

JAIN SIP asterisk registration

I have prepared request which is as follows: REGISTER sip:xxx.xxx.xxx.xxx SIP/2.0 Call-ID: cb3a691495487eabc2ca2a5ea1799a7a@192.168.174.1 CSeq: 1 REGISTER From: ;tag=textclientv1.0 To:…
Santanu
  • 15
  • 1
  • 3
-1
votes
1 answer

Play Audio file and play over SIP

I have created a SIP call, right now I dont have any sound to it i.e. I dont have a Sound Manager. I would like to play a Audio file for the Receiver instead. i.e. When I make a call to someone, I want them to hear the Audio message. How do I send…
gourig
  • 81
  • 1
  • 11
1 2 3
11
12