我有一些麻烦,但我不知道它可能在哪里。我有一个搜索方法。它使用 filenet api 并使用管理员凭据连接到服务器。
ClientContext.SetProcessCredentials(new UsernameCredentials(login, password));
var connection = Factory.Connection.GetConnection(storeUri);
var domain = Factory.Domain.GetInstance(connection, null);
var store = Factory.ObjectStore.FetchInstance(domain, storeName, null);
return store;
在目标系统上,当我运行控制台应用程序时,它工作正常。但是当我在 asp.net 网站上运行它时,我得到了
"The requester has insufficient access rights to perform the requested operation."
错误。此时的请求者是谁?