Specifying Content Types for Unencrypted Logging
By default Converged Application Server uses String format (UTF-8 encoding) to
log the content of SIP messages having a text or application/sdp Content-Type value. For all
other Content-Type values, Converged Application Server attempts to log the message content
using the character set specified in the charset
parameter of the message, if
one is specified. If no charset
parameter is specified, or if the
charset
value is invalid or unsupported, Converged Application Server uses
Base-64 encoding to encode the message content before logging the message.
If you want to avoid encoding the content of messages under these circumstances,
specify a list of string-representable Content-Type values using the
string-rep
element in sipserver.xml. The string-rep
element can contain one or more content-type
elements to match. If a logged
message matches one of the configured content-type
elements, Converged
Application Server logs the content in String format using UTF-8 encoding, regardless of
whether or not a charset
parameter is included.
Note:
You do not need to specify text/* or application/sdp content types as these are logged in String format by default.
Example 15-2 shows a sample message-debug
configuration that logs
String content for three additional Content-Type values, in addition to text/* and
application/sdp content.
Example 15-2 Logging String Content for Additional Content Types
<message-debug>
<level>full</level>
<string-rep>
<content-type>application/msml+xml</content-type>
<content-type>application/media_control+xml</content-type>
<content-type>application/media_control</content-type>
</string-rep>
</message-debug>
In version 8.0 and earlier, the string-rep element is overwritten when SIP debug is either enabled or disabled from the administrative console. In version 8.1 and later, the string-rep persists across this toggling and the Content Type can be set from the UI.
Note:
After enabling or disabling the SIP debug feature, you must restart the WebLogic Server. Oracle recommends doing this during a maintenance period.