Opening Files On Other Server ?

  • Thread starter Thread starter Bob Allen
  • Start date Start date
B

Bob Allen

I am trying to open an image file or any file for that matter on a second
server but i am getting security issues. I have usernames and passwords for
this server and they are sitting side by side (not that that matters) but no
matter what i do i cannot read from a web page to the other server file
system. Can anyone help? I have full control over all security on both
server but i still cannot figure out what i am missing?

I am opening a file stream of an image and writing it out to a web page. It
works great from within the same server but when i go off that server onto a
secondary it will not allow access.

Thanks,
Bob;
 
to access a remote resource, the asp.net needs a primary security token for
a domain account with access to the resource. fill in the a domain account
for the site to run under in the web config:

<identity impersonate="true" userName = "domain\account"
password="mypassword" />

-- bruce (sqlwork.com)
 
That worked great thanks!!!

bruce barker said:
to access a remote resource, the asp.net needs a primary security token for
a domain account with access to the resource. fill in the a domain account
for the site to run under in the web config:

<identity impersonate="true" userName = "domain\account"
password="mypassword" />

-- bruce (sqlwork.com)


but onto
 
Back
Top