I have to upload file from a WPF application to the server. Following are the methods i tried
- HTTPHandler
- WCF
- REST
Any idea which one would be better and faster? The application is hosted on .Net 4.0 ,IIS 6
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If faster means better, you should be using the mechanism with the least overhead. I would expect that to be WCF or REST streamed mode.
If security and reliability is of importance, you should consider a buffered/chunked mode instead.