vote up 1 vote down star
1

Hello All, Currently I have an application that receives an uploaded file from my web application. I now need to transfer that file to a file server which happens to be located on the same network (however this might not always be the case).

I was attempting to use the webclient class in C# .NET.

    string filePath = "C:\\test\\564.flv";
    try
    {
        WebClient client = new WebClient();

        NetworkCredential nc = new NetworkCredential(uName, password);

        Uri addy = new Uri("\\\\192.168.1.28\\Files\\test.flv");
        client.Credentials = nc;
        byte[] arrReturn = client.UploadFile(addy, filePath);
        Console.WriteLine(arrReturn.ToString());
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }

The machine located at 192.168.1.28 is a file server and has a share c:\Files. As of right now I am receiving an error of Login failed bad user name or password, but I can open explorer and type in that path login successfully. I can also login using remote desktop, so I know the user account works.

Any ideas on this error? Is it possible to transfer a file directly like that? With the webclient class or maybe some other class?

Thanks

flag

67% accept rate
is the account a domain account, or a machine account? – TheSoftwareJedi Nov 4 '08 at 21:40
The account is a user on the machine. The issue is we are moving to a new architecture and we have 2 file servers clustered and load balanced with a virtual ip. So I need to be able to send the file to the VIP. – JustFoo Nov 4 '08 at 21:53
I know using web client works if I post to a page. But I want to avoid that and directly transfer the file. Is there a way to do that? – JustFoo Nov 4 '08 at 21:55

2 Answers

vote up 3 vote down check

Just use

File.Copy(filepath, "\\\\192.168.1.28\\Files");

A windows fileshare exposed via a UNC path is treated as part of the file system, and has nothing to do with the web.

The credentials used will be that of the ASP.NET worker process, or any impersonation you've enabled. If you can tweak those to get it right, this can be done.

You may run into problems because you are using the IP address instead of the server name (windows trust settings prevent leaving the domain - by using IP you are hiding any domain details). If at all possible, use the server name!

If this is not on the same windows domain, and you are trying to use a different domain account, you will need to specify the username as "[domain_or_machine]\[username]"

If you need to specify explicit credentials, you'll need to look into coding an impersonation solution.

link|flag
Maybe it won't work because of the permissions. He can use System.IO.File.Copy only if he run the website under a user which has the needed permissions. By default the web application is running under a local, limited user in order to avoid security issues. – Biri Nov 4 '08 at 21:37
Added some permission details. Agreed - permissions can get tricky. – TheSoftwareJedi Nov 4 '08 at 21:40
vote up 0 vote down

when you manually open the IP address (via the RUN command or mapping a network drive), your PC will send your credentials over the pipe and the file server will receive authorization from the DC.

When ASP.Net tries, then it is going to try to use the IIS worker user (unless impersonation is turned on which will list a few other issues). Traditionally, the IIS worker user does not have authorization to work across servers (or even in other folders on the web server).

link|flag

Your Answer

Get an OpenID
or

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