I\'m writing a service which fires every few minutes and fetches a given URL. I\'m using the HttpWebRequest class for the HTML request. This works fine, but I also have to measure the time it would ta
I have a xml web service and I published it on IIS(localhost). Web service is veriy simple. There is only one method. And there is no exception potential in the web service.I have to use HttpWebReques
I am trying to check a variable amount of websites in a service that is woken up by an alarm every 15 minutes.The problem I\'m having is when I start the service to check the websites it is giving me
I\'m trying to send a request with the HttpWebRequest class on WP7, but I don\'t get any response... Here is my code:
void method1() { url = \"http://192.168.5.22/mobile/testpost.php\" ; request = (HttpWebRequest)WebRequest.Create(Url);
Well title says all I guess. I\'ve tried to print_r($_SERVER) but my \'post-request\' I made with fiddler doesn\'t show up.
What I\'d like I want to be able to reset a users password without emailing them. I also need to do thi开发者_StackOverflows via REST (it\'s for a kiosk system).
I am using HttpWebrequest to GET the result from google.I use proxies to get the data.now there is a strange problem that for some queries it return the data and for some it throws the exception The r
I have the following webmethod: [WebMethod(true)] [ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)]
I\'ve written an app that shows comments from Disqus and when I run it as a .NET application on my desktop it works great. It sends a http requst and then deserialize the json objects. But when I move