> I seem to be getting a new problem every time the last one gets solved. Its > web services again and Im getting to grips with it but the next bit Im stuck > at. I can access the dll from the local user and see network drives but not > from the web service. In fact all my assigns do not appear if I do > drivetype. I assume this is rights but Im not sure how best to deal with it. > It really a matter that the data is on another server and I need to access > it. I have tried the "RevertToSelf()" api and it doesn't work. Can anyone > please point me in the right direction. Maybe a setting on IIS to allow > access ?
No, you can't access network resources from inside a service, unless the service is running as a network/domain user. This is a security measure. Also, network 'drives' are only mappings in your current user session, and services(IIS) run in their own session, so your "drives" simply don't exist... You'll need to use UNC pathing... -- Derek _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

