Novell Network drives

  • Thread starter Thread starter Marc Miller
  • Start date Start date
M

Marc Miller

Is it possible in a webform to read Novell Network shares?
I have need to read the name of a folder under our user's 'H:' or UNC path
\users folder.
Also I have need to copy files and output to Novell Network drives.


Thanks,
Marc Miller
 
sure, it should be possible.
remember that ASP.NET WebForms run as the ASPNET user, so that user needs
Novell access.
Or, you can tell ASP.NET to run as a different user (you specify).

-D
 
Dino,

Thanks. That has begun to clear it up for me. I'm a former VFox programmer
and .NET
is a whole new world for me. Would you know of any resources that would
help me
understand better how to work with the specified ASP.NET users?

Marc Miller
Commonwealth Telelphone Enterprises
Wilkes Barre, PA
 
Hello Marc,

We are able to impersonate a specific user for your Web application. To
impersonate a specific user for all the requests on all pages of an ASP.NET
application, you can specify the userName and password attributes in the
<identity> tag of the Web.config file for that application. For example:
<identity impersonate="true" userName="accountname" password="password" />

Please refer to the following KB article for detailed information:

INFO: Implementing Impersonation in an ASP.NET Application
http://support.microsoft.com/default.aspx?kbid=306158

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! -- www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Back
Top