Version

HeaderFactory

In the SIP communications, HeaderFactory is akin to a craftsman, shaping the small details that determine the nature and direction of SIP messages. It's the tool that allows your application to specify who the message is from, where it's going, how it should be treated along the way, and much more. Let's break down some of the key methods provided by HeaderFactory and translate them into more accessible terms.

Key Methods

createAcceptEncodingHeader(String encoding): This method crafts a header indicating which encoding types application understands. It's like setting language preference in a multilingual conversation.

createAcceptHeader(String contentType, String contentSubType): With this, you specify the types of media (videos, images, text) application can accept, akin to stating dietary preferences when invited to dinner.

createAllowHeader(String method): This declares which SIP methods (INVITE, ACK, CANCEL) application supports, similar to listing the types of payments you accept at a store.

createCSeqHeader(long sequenceNumber, String method): A crucial part of SIP messages, ensuring they're processed in order. It is similar to organizing emails by their importance and the order in which they must be read.

createCallIdHeader(String callId): This unique identifier is akin to a tracking number for message, ensuring the dialogue can be accurately followed and referred back to.

createContactHeader(Address address): Specifies how the sender can be reached back, much like leaving contact information with someone you wish to hear back from.

createMaxForwardsHeader(int maxForwards): Limits the number of hops a request can take, preventing it from endlessly circling in the network — think of it as setting a limit on how many times a letter can be forwarded before it’s considered undeliverable.

createViaHeader(String host, int port, String transport, String branch): Outlines the path through which a request has passed (or should return on). It's akin to the postmark trail on a parcel, showing each post office it has visited.

createContentTypeHeader(String contentType, String contentSubType): Describes the nature of the message's body, similar to specifying whether a file is a PDF, a JPEG image, or a plain text document.

Practical Use

Let's take a closer look at how one might use these methods in a practical scenario:

HeaderFactory headerFactory = ...; // Obtained from SipFactory
SipFactory sipFactory = SipFactory.getInstance();
// Creating a ViaHeader for a message sent over TCP on port 5060
ViaHeader viaHeader = headerFactory.createViaHeader("example.com", 5060, "tcp", "branch1");
// Specifying the content type as plain text for a message body
ContentTypeHeader contentTypeHeader = headerFactory.createContentTypeHeader("text", "plain");
// Indicating that the message can accept responses in the English language
AcceptLanguageHeader acceptLanguageHeader = headerFactory.createAcceptLanguageHeader(new Locale("en"));
// Crafting a unique identifier for a SIP call
CallIdHeader callIdHeader = headerFactory.createCallIdHeader("12345@example.com");
// These crafted headers can now be attached to SIP requests or responses, dictating how they're processed and understood by other SIP entities.

HeaderFactory provides comprehensive tools to define the intricacies of SIP communication, allowing you to tailor messages with precision. Whether it's determining the content type, establishing a route, or establishing communication preferences, understanding and using these techniques will allow you to navigate and master the art of SIP messaging.

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