I have implemented am event handler that fires on item added and uses
the path entered by the user to retrieve number of files at that
path.
Now the problem is: When I give a local C: path it works perfectly
fine, but when I give a network share path, it says Unauthorized
access exception, I give the UNC path, I also tried impersonation with
my own credentials but it is not working.
Please help me.
Thanks
http://support.microsoft.com/default.aspx?scid=KB;EN-US;810572
--
Regards
John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
"malhar" <malhar...@gmail.com> wrote in message
news:2e34ce1a-9e1a-49d0...@a36g2000yqc.googlegroups.com...
Hello,
Thanks for your response. My issue is resolved now. (if someone in the
future would like to see my solution you can visit: http://www.umich.edu/~malhar)
I have a new issue now :-(
I would like to ask, that does an eventhandler bound to a particular
list effect that list for all users in sharepoint or the user who
would be logged in.
Let me be more clear:
I have created a list and an event handler and bound them together
using code. The eventhandler dll is in GAC. Now a user logs in and
adds that list to his site and does some actions which triggers the
event handler and event handler does its job.
Now another user comes along and adds this list to his site and
performs some actions which triggers the event handler and the event
handler does its job.
The job done by event handler would be different in both the lists -
am I right, I mean changes done by eventhandler to one list would not
affect the other users list right?
Thanks