BookmarkSubscribeRSS Feed

How do I log XML payloads for easier troubleshooting of common data model data?

Started ‎12-24-2015 by
Modified ‎12-24-2015 by
Views 603

SAS Real-Time Decision Manager sends XML data in web service calls from the SAS Decision Services engine server to the SAS Customer Intelligence reporting middle-tier application. After the data is received, it is recorded in the common data model response history, contact history, and presented treatment history tables.

In order to troubleshoot the recording of common data model data, it is sometimes useful to log these XML payloads. To enable this logging in SAS Real-Time Decision Manager 6.1, add the following loggers in the logger section of the SASCustIntelReporting-log4j.xml file:

 

    <logger name="com.sas.analytics.crm.ccs.webservices.ch.CHUpdateImpl" additivity="false">
        <level value="debug"/>
        <appender-ref ref="SAS_FILE"/>
    </logger>
    <logger name="com.sas.analytics.crm.ccs.webservices.pt.PTUpdateImpl" additivity="false">
        <level value="debug"/>
        <appender-ref ref="SAS_FILE"/>
    </logger>
    <logger name="com.sas.analytics.crm.ccs.webservices.rh.RHUpdateImpl" additivity="false">
        <level value="debug"/>
        <appender-ref ref="SAS_FILE"/>
    </logger>

 

In SAS Decision Manager 2.1 and SAS Real-Time Decision Manager 6.3 and later, uncomment the following section instead:

 

 

    <logger name="org.springframework.ws.server.MessageTracing">
        <level value="TRACE"/>
        <appender-ref ref="ASYNC_FILE"/> 
    </logger>

 

Visit Usage Note 51457: Logging XML payloads in the SAS Customer Intelligence Reporting middle-tier applic... to rate these instructions.

Version history
Last update:
‎12-24-2015 09:05 AM
Updated by:
Contributors

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Free course: Data Literacy Essentials

Data Literacy is for all, even absolute beginners. Jump on board with this free e-learning  and boost your career prospects.

Get Started

Article Tags