我有一个使用Tridion 2011 SP1发布的分析和个性化的ASP.NET页面(index.aspx)。如果用户之前已经将3个标记的页面(通过cat + keywords)标记为“golf”,则它只显示一个动态组件显示和第二个动态组件显示。
我通过将TBB的“目标组个性化”和“激活跟踪”添加到我的默认完成操作来启动分析。我重新发布了该页面并看到它使用性能分析代码创建动态cp,一切顺利:
<tridion:ComponentPresentation runat="server" PageURI="tcm:8-667-64" ComponentURI="tcm:8-668" TemplateURI="tcm:8-666-32"/>
<tridion:TargetGroup runat="server" ItemURI="tcm:8-667-64">
<tridion:Conditions runat="server" Negate="false" Operator="AND">
<tridion:Conditions runat="server" Negate="false" Operator="OR">
<tridion:Conditions runat="server" Negate="false" Operator="AND">
<tridion:Condition runat="server" Type="TrackingKey" Operator="=" Negate="false" Name="Golf" Value="3"/>
</tridion:Conditions>
</tridion:Conditions>
</tridion:Conditions>
<tridion:ComponentPresentation runat="server" PageURI="tcm:8-667-64" ComponentURI="tcm:8-663" TemplateURI="tcm:8-666-32"/>
</tridion:TargetGroup>
<tridion:IncrementKey runat="server" ItemURI="tcm:8-667-64" Name="Golf" ComponentURI="tcm:8-663"/>
问题:当我在浏览器中查看index.aspx时,它给出了错误:
用户不能为空。请确保WAI配置正确
我检查了代理DB,那里没有数据。我相信我的cm_wai_conf.xml文件配置正确。我读过这篇文章,建议WAI使用我添加到windows中的环境变量REMOTE_USER,但仍然没有运气。 http://sdltridionworld.com/articles/UsingPandPinDistributedEnvironments.aspx
之前是否有人遇到此错误并可以提供帮助? 如有必要,我可以提供我的cd_wai_conf.xml文件
在此先感谢,非常感谢您的帮助,这让我发疯了!
编辑:添加了配置文件 XML不会在StackOverflow中呈现,所以我在PasteBin上添加了它: http://pastebin.com/tHwqhwtq
答案 0 :(得分:10)
谢谢你们。你是对的。我的网站的web.config中未正确配置WAIModule。我的网站在IIS7集成模式下运行,因此我将其配置如下:
<system.webServer>
<directoryBrowse enabled="true" />
<modules>
<add name="TridionWAIHttpModule" type="Tridion.ContentDelivery.Web.WAI.WAIModule, Tridion.ContentDelivery" preCondition="managedHandler" />
</modules>
<validation validateIntegratedModeConfiguration="false"/></system.webServer>
这给了我一个新错误“对象引用未设置为对象的实例”。我将AppPool更改为经典模式并添加了以下行:
<httpModules>
<add type="Tridion.ContentDelivery.Web.WAI.WAIModule, Tridion.ContentDelivery" name="TridionWAIHttpModule" />
</httpModules>
然后加载页面,分析和个性化工作100%
非常感谢你们这里的时间。我希望将来可以帮助其他人。
答案 1 :(得分:7)
当您没有为您在cd_wai_conf.xml中访问该站点时使用的URL进行配置时,我已经看到了这一点。默认情况下,我认为这会使用localhost
。确保为您用于访问网站的任何URL定义了主机URL。
另外,请仔细检查您的WAI模块是否已在webb应用的web.config中正确添加。在IIS中,确保您将模块放在正确的位置,这可能会有所不同,具体取决于您是在IIS6或更高版本,以及您的应用程序池是在经典模式还是集成模式。