vote up 1 vote down star
2

Hi I have a SharePoint webpart which is compiled as a DLL and placed in the BIN folder of my SP site. My webpart works on my local machine, but when I put it on production it fails with a

(401) Unauthorized.

After doing some research I came acrooss what is known as the "One hop rule". Meaning I have to either pass in the credentials of a network user, or use

<identity impersonate= "true" />

in my web.config. I do not want to hard-code a network user, so my question is how can I use the impersonate in my web part? Do dll support web.configs? Thanks for the help.

flag

18% accept rate

5 Answers

vote up 0 vote down

If you're looking at the "double-hop" issue, then you won't use NTLM. You need to use Kerberos authentication because the Kerberos ticket can hop from user to webserver to web service. You'll need to setup Service Principle Names with SetSPN.

Is this web part calling out to external web services? Or is the permissions error based on local security?

link|flag
vote up 1 vote down

Yes, as Tudor mentioned, it is likely Code Access Security. If you put it in the GAC you would not have this problem (the GAC is fully trusted).

Here are a few articles that should help you with CAS and SharePoint web parts. The trick is knowing which IPermissions you need.

link|flag
vote up 2 vote down

Impersonate is always set to true in the web.config of a SharePoint application so the problem must be somewhere else. Web Parts that are deployed to the BIN folder of the Web Application run in a sandbox and, by default, have limited permissions. Perhaps that is the source of the problem.

link|flag
Yes I too believe that, that is the problem, how can I go about this? – DavidS Mar 17 at 14:15
vote up 4 vote down

Your webpart fails in production probably because of CAS; You may need to elevate the permission level or append special accesses to be granted on your assembly, because it's not fully trusted as it is in the bin folder.

If you're sure it's just an impersonation problem, can you not just use nodes in your web.config?

link|flag
It has worked before on production, i just applied some security patches and it stopped working so I have a feeling it has to do with impersonation. I was using DefaultNetworkCredentials before. – DavidS Mar 17 at 13:55
The security patches could have changed the security model of the web.config for your bin directory from full trust or medium trust to minimal trust. When you use CAS and SharePoint deployment it will change it to a custom trust level. – Kirk Liemohn Mar 17 at 19:17
vote up 0 vote down

I don't think there is away to add that in a DLL. To my knowledge anyways.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.