Communication between windows and web application.
-
Hi, I am working on windows application which store data in xml and put media elements(like images) in folder. I am making zip file of xml and media element folder. Now I need to send this zip file on web server where my web application will unzip this file and will put xml data to sqlserver and place media elements to specific directory. My question is, How I can send zip file to web application, I have considered FTP but it is not safe because it needs username and password, is there any other solution, if yes then please help me. Thanks navees
-
Hi, I am working on windows application which store data in xml and put media elements(like images) in folder. I am making zip file of xml and media element folder. Now I need to send this zip file on web server where my web application will unzip this file and will put xml data to sqlserver and place media elements to specific directory. My question is, How I can send zip file to web application, I have considered FTP but it is not safe because it needs username and password, is there any other solution, if yes then please help me. Thanks navees
Create a webservice method that accepts a byte[] as a parameter then just call the method with the zip as a byte[]. Then just rebuild the zip on the webservice side.