In my programe I have a need for requesting data from server and upon collecting the response, use the returned data for further processing.
I am using "system.net.webrequest" class for the same. I have few questions on this:
- after I receive the data (data is of 0.5MB size in minimum) I have to process this entire data to derive some result. I was thinking to store the returned data in a "txt" file and then read the data from that file and process.
Is this a better idea? If not, can you please suggest.
I am making post request to several servers (>10 servers) and using data from them. I observed that for some reason if the server is not reachable then my programe stops throwing an exception
Server Not Reachable
A first chance exception of type 'System.Net.WebException' occurred in System.dll
How can I solve this problem? Any idea?
Appreaciate your help.
Thanks, Rahul