Click here to Skip to main content
15,884,838 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am getting problem in file copying from one server to another server domain in ASP.NET.

server name 1 : testserver1

Domain name : test

server name 2 : testserver2

domain name : testnet.

see my code :

SourceFilePath = "\\testserver2\fileslst\Reports\New\" & lblRenameGrid.Text & ".pdf"

DestinationFilePath = Server.MapPath("~/") + Session("ENo") & "\" & lblGrid.Text & ".pdf"

File.Copy(SourceFilePath, DestinationFilePath)



Error:

In server , it shows error message as given below:

Microsoft JScript runtime error:

Sys.WebForms.PageRequestManagerServerErrorException:

The account used is a computer account. Use your global user account or local user account to access this server.

But, the same will work in localhost

how to solve the above error...?
Posted
Comments
code_madi 12-Jun-13 3:30am    
The account under which IIS is running, is it known across both domains? i.e. Can the account carrying out the copy operation authenticate across domains?
I think therein lies the problem. It works on localhost because you are not jumping across domains and the account copying the file from one location to another is known in both the source and target locations.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900