RSPTags2REQ scrapes the RSP buffer for name/value pairs and puts them into the REQ
[appdata]
section so that they are indexed and searchable. It is primarily intended
for sites and products that already employ page tagging and use those tags.
Configuration Settings
The following configuration settings are available for RSPTags2REQ:
- Display Name values are displayed in TMS, which is the recommended method for configuring session agents.
- Name values are displayed in
TealeafCaptureSocket.cfg
.
Display Name | Name | Description |
---|---|---|
Response Buffer Start Pattern |
RSPStartPatt |
Search Start of the RSP buffer, which is used to limit the searching of the RSP buffer. |
Response Buffer End Pattern |
RSPEndPatt |
Search End of the RSP buffer. |
Response Name/Value Pair Delimiter |
RSPNameValueDelimiter |
Defines the delimiter between the name/value pairs. |
RSP Var Delimiter |
RSPVarDelimiter |
Name/value delimiter. Default value is = . |
RSP Tags To Search For |
RSPTags |
Semicolon-delimited list of variables to search.
If the pipe symbol (| ) is present, the left side
is the RSP buffer variable name and the right side is the name for
the REQ [appdata] section. If no pipe symbol is present,
then the same name is used. |
Example Configuration
In the following example, assume the RSP buffer is page tagged in the following manner:
...
<!-- PageTagging Start -->
<!-- Page Tagging Comments-->
<script language="JavaScript" type="text/javascript">
<!--
var TL_Name="Tea Pots";
var TL_Category="Clay";
var TL_Type="Dual";
var TL_var1="";
var TL_var2="Teal";
var TL_var3="6 cup set";
var TL_var4="";
var TL_var5="Burn Pad";
*/-->
</script>
...
The following is a sample configuration, based on the above where Name, var2, var3 and var4 are to be extracted:
RSPStartPatt=<!-- PageTaggingStart
RSPEndPatt=*/-->
RSPVarDelimiter==
RSPTags=TL_Name|Item;TL_var2|Color;TL_var3|Version;TL_var5|Accessory
This configuration would result in the REQ [appdata]
section
looking like the following:
[appdata]
Item=Tea Pots
Color=Teal
Version=6 cup set
Accessory=Burn Pad