teking binary files as a input for client windowes application from a website
-
hi i am creating a windows application that will take a binary file as input and this binary file is on the my website so when i download it from the website it should directly go into the window's application for processing how do i do
Hi, There are two solutions that comes to my mind at this point.(i am assuming the website you have mentioned is under your control) 1) you store the file on an FTP server , and then use the FTP class provided in .net to check if there is file available (Also we can use a date time stamp to check if we really want the file), then download the file and run the file using "Shell". 2) using a web service , you write a web service which will provide the file to you , then from windows application call the web service , get the file and run using "Shell". Please let me know if this what you want(Let hope :) ) , i am just trying to give you direction to think , if you need more help let me know .
-Regards Bharat Jain bharat.jain.nagpur@gmail.com
-
hi i am creating a windows application that will take a binary file as input and this binary file is on the my website so when i download it from the website it should directly go into the window's application for processing how do i do
You can use filesystemwatcher to detect when a file is written to a specified directory.
Giorgi Dalakishvili #region signature My Articles Asynchronous Registry Notification Using Strongly-typed WMI Classes in .NET [^] My blog #endregion