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 722

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-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

SAS AI and Machine Learning Courses

The rapid growth of AI technologies is driving an AI skills gap and demand for AI talent. Ready to grow your AI literacy? SAS offers free ways to get started for beginners, business leaders, and analytics professionals of all skill levels. Your future self will thank you.

Get started

Article Tags