Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
There is desktop application on client machine
Client post some data through that desktop application
Now what I want to fetch that data everyday to my website
How to do it

What I have tried:

I google it on google but i never get proper answer
Posted
Updated 24-Mar-22 5:51am

1 solution

That desktop application, or some other application you may have to write, has to upload that data to your website through some interface that you have to write.

NO, the web application running on the server can NOT retrieve the data directly from the client machine. It will not have, nor should it ever have(!), the permissions to access data directly on a client machine.
 
Share this answer
 
Comments
Akshay malvankar 24-Mar-22 12:57pm    
No you didn't get it my question. Suppose my desktop application storing some user data daily bases, I want get that data evry night show in my website
Dave Kreskowiak 24-Mar-22 13:00pm    
You didn't get my answer. The web server HAS NO ACCESS WHATSOEVER TO CLIENT MACHINES FOR ANY DATA, NO MATTER WHERE ON THE CLIENT IT IS STORED.

The client machines MUST upload any data you want shared to the web server/database.
Akshay malvankar 24-Mar-22 13:15pm    
So you are saying it's not possible, it is not possible even though if we create task schedular, that run on every night at client machine, post all data into my database, give any solution, because I don't want client to do that task every night
Dave Kreskowiak 24-Mar-22 14:32pm    
It sounds like you have a piece of client software that doesn't do what you want it to do.

So, yeah, a scheduled task could do the job, so long as you have a tools that actually uploads the data.

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



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