Is there a way to transfer files to remote computer of different domain using remote server's username and password??? (c# , console)
-
Thanks for the reply.. is there any other ways other than Ftpwebrequest.. pls help me.. i have tried 1) MAP drive 2) NET USE
No Defeat Is Final Until You Stop Trying!.......
If you are looking for an off the shelf application, then I use FileZilla[^] - it's open source and works well. You can't use MAP drive (AFIAK) unless the computer has a fixed IP address and share name - I've never tried that either, but in theory it should work. NET USE will probably have the same problem.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
If you are looking for an off the shelf application, then I use FileZilla[^] - it's open source and works well. You can't use MAP drive (AFIAK) unless the computer has a fixed IP address and share name - I've never tried that either, but in theory it should work. NET USE will probably have the same problem.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
Thanks for the reply sir, I want to achieve file transfer through c# console application by specifying remote system's domain,user name & password. can it be done so..? pls help me..
No Defeat Is Final Until You Stop Trying!.......
-
Thanks for the reply sir, I want to achieve file transfer through c# console application by specifying remote system's domain,user name & password. can it be done so..? pls help me..
No Defeat Is Final Until You Stop Trying!.......
The third example in the original link shows how to do that, I thought...
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
The third example in the original link shows how to do that, I thought...
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
sir didn't get u.. third example ??
No Defeat Is Final Until You Stop Trying!.......
-
sir didn't get u.. third example ??
No Defeat Is Final Until You Stop Trying!.......
If you follow the first link I gave you, then scroll down. After the "Remarks" section there are three examples: Deleting, downloading, and then uploading a file from a remote site via FTPWebRequest. The example you want is the third of these, and is about 1/4 of the way down the whole page.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
If you follow the first link I gave you, then scroll down. After the "Remarks" section there are three examples: Deleting, downloading, and then uploading a file from a remote site via FTPWebRequest. The example you want is the third of these, and is about 1/4 of the way down the whole page.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
sorry for the wrong communication. i will explain it clearly. Consider machinA and machineB. - A & B are located on different domains. - B is having a network share path(ex: \\192.168.10.12\d$) - Now i want to transfer a file abc.txt from machineA to share path on MachineB. I am trying with File.copy() method bt was failed with longon failure as the servers are located on different domains. So, is there a way that if i know MachineB logon account(domain,username&password) can i be able to transfer file?? pls guide me a way to achieve this.
No Defeat Is Final Until You Stop Trying!.......
-
sorry for the wrong communication. i will explain it clearly. Consider machinA and machineB. - A & B are located on different domains. - B is having a network share path(ex: \\192.168.10.12\d$) - Now i want to transfer a file abc.txt from machineA to share path on MachineB. I am trying with File.copy() method bt was failed with longon failure as the servers are located on different domains. So, is there a way that if i know MachineB logon account(domain,username&password) can i be able to transfer file?? pls guide me a way to achieve this.
No Defeat Is Final Until You Stop Trying!.......
You need to impersonate the account in order to access the other domain. Had you searched Google, you'd have found this[^] article which does exactly what you are trying to do.
Forgive your enemies - it messes with their heads
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
-
You need to impersonate the account in order to access the other domain. Had you searched Google, you'd have found this[^] article which does exactly what you are trying to do.
Forgive your enemies - it messes with their heads
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
Thanks for the reply sir, Yes i had gone through that Link earlier, but i was stuck at LongonUser() part. Will it accept localuser account or remote server's user account? which username,password&domain i should give?
No Defeat Is Final Until You Stop Trying!.......
-
Thanks for the reply sir, Yes i had gone through that Link earlier, but i was stuck at LongonUser() part. Will it accept localuser account or remote server's user account? which username,password&domain i should give?
No Defeat Is Final Until You Stop Trying!.......
You need to give it the remote account details - that's the user you are trying to impersonate. It's no use giving a local account. By the way, please don't cross post. I just found the same question posted in Q&A - if you post in multiple places, it's hard to see what advice you have been given, and the missing nugget of information can get lost because we haven't seen the other post.
Forgive your enemies - it messes with their heads
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
-
Is there a way to transfer files to remote computer of different domain using remote server's username and password?(c#,console) Thanks inadvance
No Defeat Is Final Until You Stop Trying!.......
You are quite impatient guy. This is a double post! If you would be a bit more patient, later on I could give you an example!
-
You are quite impatient guy. This is a double post! If you would be a bit more patient, later on I could give you an example!
Sorry .. my apologies for the impatience..
No Defeat Is Final Until You Stop Trying!.......
-
You need to give it the remote account details - that's the user you are trying to impersonate. It's no use giving a local account. By the way, please don't cross post. I just found the same question posted in Q&A - if you post in multiple places, it's hard to see what advice you have been given, and the missing nugget of information can get lost because we haven't seen the other post.
Forgive your enemies - it messes with their heads
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
Sorry .. my apologies..
No Defeat Is Final Until You Stop Trying!.......