简体   繁体   中英

Sharepoint 2007 Current User

I'm trying to use the object model of Sharepoint 2007 to make some changes over a list and read users and groups web settings...

For that I developed a Web Service (WCF) that is stored in the same web application as the sharepoint site in IIS.

Thats working.

I call inside the Web service

SPContext.Current.Web.CurrentUser

and thats user is not me, is "Sharepoint\\System"

Why?

Other thing is that web I try to get all users using

SPContext.Current.Web.users

that only contain "Sharepoint\\System", not the others.

WHY!!!

I give the full trust in the web.config and use the Ntlm authentication method.

It sounds to me like the issue is the account that your web service is running under. I would change the application pool that your web service is using and set the identity to a named account. Then, when you query the current user in Sharepoint, you should see the named account you identified in the application pool.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM