Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.0

E18767-01


com.bea.wcp.sip
Interface WlssSipFactory


public interface WlssSipFactory

This interface is an extension of the standard SipFactory interface.

See Also:
javax.servlet.sip.SipFactory

Method Summary
 SipServletRequest createRequest(SipServletRequest origRequest, java.util.Map headerMap, boolean sameCallId)
          Creates a new request object belonging to a new SipSession.

 

Method Detail

createRequest

SipServletRequest createRequest(SipServletRequest origRequest,
                                java.util.Map headerMap,
                                boolean sameCallId)
Creates a new request object belonging to a new SipSession. The new request is similar to the specified origRequest in that the method and the majority of header fields are copied from origRequest to the new request. <p/> The headerMap parameter can contain "From" and "To" headers and any non system header. The entries in the map are used to overwrite the headers in the newly created request. The values in the headerMap are expected to be java.lang.String or java.util.Set of java.lang.Strings for multi-valued headers. Note that since the new values will replace the existing values, if you wish to append to the existing set, include the old values in the new set as well. If you wish to remove an existing non system header simply pass the value as null or an empty set. <p/> The SipSession created for the new request also shares the same SipApplicationSession associated with the original request. <p/>

This method satisfies the following rules:

<p/>

This method provides a convenient and efficient way of constructing the second "leg" of a B2BUA application, giving the additional flexibility of changing the headers including To and From. It is used only for the initial request. Subsequent requests in either leg must be created using javax.servlet.sip.SipSession#createRequest as usual.

Parameters:
origRequest - request to be "copied"
headerMap - a simple map containing header names and their values to be overridden in the new request. The values are expected to be java.lang.String or java.util.Set of java.lang.Strings for multi-valued headers.
sameCallId - whether or not to use same Call-ID for the new dialog
Returns:
the "copied" request object
Throws:
java.lang.IllegalArgumentException - if the headerMap contains a system header other than From/To.

Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.0

E18767-01


Copyright © 2005, 2010, Oracle and/or its affiliates. All rights reserved.