我正在尝试使用Tridion的ContentManagment API来检索分类法类别和关键字,但我遇到了Access拒绝错误。
我有以下方法:
public Dictionary<string, string> GetKeywords(string tcmUri)
{
var result = new Dictionary<string, string>();
try
{
// _settings.ImpersonationUser = "MYDOMAIN/myusername"
using (var session = new Session(_settings.ImpersonationUser))
{
var category = new Category(new TcmUri(tcmUri), session);
var keywords = category.GetKeywords(new Filter());
if (keywords != null && keywords.Count > 0)
{
foreach (var keyword in keywords)
{
result.Add(keyword.Id.ToString(), keyword.Title);
}
}
}
}
catch (Exception ex)
{
Logger.Log.Error(
"Failed to retrieve keywords for '{0}'.".FormatWith(tcmUri), ex);
}
return result;
}
我_settings.ImpersonationUser
中的用户可以访问Tridion内容管理器,配置为管理员,并已添加到“SDL Tridion Content Manager配置”管理单元中的模拟用户。 / p>
我得到的错误如下:
System.Runtime.InteropServices.COMException (0x80040302):
<?xml version="1.0"?>
<tcm:Error xmlns:tcm="http://www.tridion.com/ContentManager/5.0"
ErrorCode="80040302" Category="16" Source="Kernel" Severity="2">
<tcm:Line ErrorCode="80040302" Cause="true" MessageID="16226">
<![CDATA[Access denied for the user MYDOMAIN\myuser.]]
<tcm:Token>MYDOMAIN\myuser</tcm:Token>
</tcm:Line>
<tcm:Details>
<tcm:CallStack>
<tcm:Location>SystemBLST.GetUserContext</tcm:Location>
<tcm:Location>SystemBLST.IBLSecurityST_GetUserContext</tcm:Location>
</tcm:CallStack>
</tcm:Details>
</tcm:Error>
有没有人知道我做错了什么? 提前谢谢!
答案 0 :(得分:11)
在冒充和模拟方面,有几点需要了解。外表套上...
如果所有这3个条件都成立,那么假冒就会起作用。
通过执行代码,我指的是执行代码的Windows帐户。如果此帐户可以访问Tridion,则无需使用模拟。
希望这有帮助。