Tagged Questions
JAIN-SIP, or JSIP, is a Java specification for SIP Signaling.
2
votes
2answers
105 views
What would be the best implementation to detect repeating SIP message?
I've wrote a SIP UAC, and I've tried a few ways to detect and ignore repeating incoming messages from the UAS, but with every approach I tried, something went wrong, my problem is that all the ...
1
vote
1answer
121 views
Jain-sip sends sip messages automatically
I have written a softphone which can communicate with a PBX (simulated by SIPp). For this I use the jain-sip frameworkt for java. My problem is, that jain-sip sends sip messages automatically. For ...
1
vote
2answers
156 views
sip stack comparison
I want to compare opensource sip stacks like opal, pjsip, opensips etc for difference in architecture, maximum concurrent calls, memory footprint and other boundary values.
Any pointers are ...
1
vote
1answer
329 views
JAIN-SIP RINGING Response never gets sent
I am creating a class that implements the SipListener interface to receive events from the JAIN-SIP stack (for an Android device). To test it, I connect 2 devices to an OpenSIPs and have one try to ...
1
vote
1answer
473 views
SIP Callee does not get notification that call ended
I have deleted my previous question and post this updated:
I have a an issue with my SIP UAC, once I received a ringing from the B2BUA on both the caller and callee, and the caller hangs up the call ...
1
vote
3answers
987 views
how do I reregister with a sip server properly?
I currently have a SIP registration working proprly with Jain-SIP.
I get the challenge, use MD5 on the nonce etc and send my reply.
I then get the 200 OK message.
So thats all fine.
However I want ...
1
vote
1answer
146 views
Jain Sip - How to create a SipUri without the @?
I am just starting to look at Jain Sip and I was wondering how to create a SipUri that only contains the ip address and does not contain the user and the @ symbol.
So currently I get ...
1
vote
5answers
799 views
Looking into IVR software development
The company I work for is looking for an IVR implementation that is highly compatible with any potential PBX/IVR or PBX combo OR to provide our own hosting solution.
So the idea would be to create an ...
0
votes
1answer
61 views
Where to find documentation on jain-sip
The title is as clear as it gets. I'm searching for the jain-sip documentation but I'm unable to find it. There is a a link to documentation at the jsip.java.net website but I get send to the hudson ...
0
votes
0answers
60 views
Jain SIP Register
Is there a quick way to REGISTER with IMS using JSIP? It would be good if I can do something similar to the following:
register(mySipURI, password, imsIpAddress)
I know this is possible with PJSIP, ...
0
votes
1answer
288 views
jain-sip register got error message “via header ID expected”
I'm developing a SIP client on android using Jain sip. And I want to register it with jain-sip-presence-proxy.
My code:
public void register (String to) throws SipException, ParseException, ...
0
votes
1answer
443 views
Failure of SIP Proxy Authentication
I'm developing a SIP user agent application that connects to an Asterisk server and tries to do an outgoing call. I'm using the NIST implementation of the JAIN SIP API.
The application first ...
0
votes
3answers
988 views
Failure of SIP Proxy Authentication
I'm developing a SIP user agent application that connects to an Asterisk server and tries to do an outgoing call. I'm using the NIST implementation of the JAIN SIP API.
When the application registers ...
0
votes
1answer
432 views
Error sending SIP request using NIST JAIN SIP API
I'm trying to send a REGISTER SIP request using NIST's implementation of the JAIN SIP API.
First I give the declarations of the data members of my SipController class:
private int port;
private ...
0
votes
2answers
344 views
SIP Subscribe Receives 486 BUSY HERE
I am trying to SUBSCRIBE to a watcher list and the server frequently responds with 486 BUSY HERE. However, the RFCs describe 486 as a possible response for an INVITE, which make more sense for this ...
0
votes
0answers
124 views
Is jainsip supports Blackberry
I am working on voip dialer application for black berry..
I surfed for library which provide me api for sip .
I add this library to my application . Its not giving me any error at build time but ...
0
votes
1answer
253 views
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?
0
votes
1answer
146 views
Problem initiating SIP session/ getClientTransaction(request) throws NullPointerException
I have a small issue, I had my SIP client working, and I changed the structure of the code. I kept the creation process of the SIP objects as it was before, but now it does not work.
I keep getting:
...
0
votes
1answer
146 views
Sip Error - Response does not belong to this transaction
I was wondering has anyone come across thos error in SIP before?
WARN/System.err(4623): javax.sip.SipException: Response does not belong to this transaction.
I get it after I get an invite, I ...
0
votes
0answers
2k views
Android Jain Sip - Sip Registration?
I'm currently using Jain Sip on Android and I'm trying to get a SIP registration working.
I can put the registration SIP message together ok but after sending the message it seems to just get sent ...
0
votes
2answers
1k views
What is the difference between JAIN SIP and MJSIP?
I've been investigating various API options for making use of the SIP (Session Initiation Protocol) in Java.
So far I've narrowed it down to JAIN SIP and MJSIP but I can't figure out the difference ...