tags:

views:

54

answers:

1

hey Folks,

I have a windows app in c# .NET which requires access to the file on the sever.

Ex:--user A has his credentials as A and pswd. He has server space where he has the file i need.

i have the credentials. I can access it using our website. But, i need to access it using a windows app

Imagine i need a file stored on the mail a/c of a user.

Please help.

A: 

That depends entirely on how the file is stored on the server in question. If it's a file in their mail account, you could login to the mail server and search through their mail for it.

If it were a file on the harddrive, you could login via FTP and download it. The devil is in the details though, so you really need to provide more information about what you are actually trying to do.

Matthew Scharley
we have bunch of users on our server each with a credential. We have various portals too. I am trying to access the file on a user space using a windows app
What type of credentials? Windows login information? Some custom credentials for a website? FTP credentials? Mail server credentials? SSH credentials?
Matthew Scharley