Version

SIPListener

A SipListener functions similarly to a personal assistant in the world of SIP communication. Whenever something happens — a call comes in, a message is received, or there's an issue with the network — SipListener is there to let you know. It's like having someone who constantly watches over your digital communication lines, ready to notify you the moment there's an update.

SipListener Importance

In the complex process of sending and receiving calls and messages over the internet, SipListener plays a crucial role. It ensures that your application stays informed about every critical event related to SIP sessions — from incoming calls (INVITE requests) to the final goodbye (BYE requests).

Key Events Handled by SipListener

  • RequestEvent: Your phone ringing. This event is the digital equivalent, signaling that there's an incoming SIP request, like someone trying to call you.
  • ResponseEvent: This tells you the outcome of a SIP request. Did the call go through? Was the message delivered? This event has the answers.
  • TimeoutEvent: Sometimes, communications get lost or don't reach their destination in time. When that happens, TimeoutEvent alerts you so you can take action, like retrying the call or message.
  • IOExceptionEvent: This is alert for network issues. If there's a problem sending or receiving because of an internet hiccup, you'll know about it through this event.
  • TransactionTerminatedEvent: Every call or message is part of a "transaction." This event tells you when a transaction has ended, which can happen once a call is finished or a message is fully sent.
  • DialogTerminatedEvent: We can say that "dialog" is a complete conversation from start to finish. This event signifies the end of such a conversation.

Becoming a SIP Spy with SipListener

To initiate the receipt of these notifications, your application is required to 'register' itself as a SipListener with a SipProvider, akin to subscribing for regular updates on all activities within your digital domain.

public class MySipListener implements SipListener {
    public void processRequest(RequestEvent requestEvent) {
        // Handle an incoming call or message
    }
    public void processResponse(ResponseEvent responseEvent) {
        // Deal with the outcome of your SIP requests
    }
    // Implement other necessary methods here...
}
SipProvider sipProvider = ...; // Assume this is already set up
sipProvider.addSipListener(new MySipListener());

Unique SipListener for Each SIP Stack

The rules say you can only have one SipListener per SIP stack similar to the concept of assigning one coordinator for each project. However, this coordinator, or SipListener, has the ability to oversee multiple channels, or SipProviders, ensuring comprehensive surveillance of all communications.

Sending Messages

While SipListener is all about receiving notifications, remember it's part of a larger system that includes sending requests and responses. You can initiate calls, respond to them, and manage dialogs and transactions — all based on the info SipListener provides.

Special Rules for Special Messages

SIP uses something called an "offer/answer" model to set up sessions. This model, which involves exchanging session descriptions, is crucial for initiating and maintaining SIP calls, especially those involving video or complex voice features. SipListener will be right there, making sure you're up to date on these exchanges. The Session Description Protocol (SDP) RFC8866 MUST be supported by all user agents as a means to describe sessions, and its usage for constructing offers and answers MUST follow the procedures defined in RFC3261 . The SDP protocol is described in Java by JSR 141


The Big Picture

SipListener is the gateway to efficiently managing SIP communications in applications. By handling its notifications, application can become a powerful platform for internet calls, video chats, and more, keeping users connected and communication flowing smoothly.

In short, SipListener turns your application into a SIP communication product that is always ready and always informed.

Start innovating with Mobius

What's next? Let's talk!

Mobius Software

As a company you'll get:

  • Get started quickly

  • Support any business model

  • Join millions of businesses

Questions? websupport@mobius.com