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 encrypt the message content before logging the message.
If you want to avoid encrypting 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>