Hello.
I developed a Console application which monitored HTTP requests using the third party component called Fiddler (fiddlerCore). This works as expected.
I need to convert this functionality into a Windows Service. The code is the same as the console application except for that it is in a Windows Service.
I can install the service and start it correctly but none of the events which monitor HTTP requests...
Search Result
Collapse
3 results in 0.0018 seconds.
Keywords
Members
Tags
-
Windows Service to monitor HTTP requests
-
501 Protocol scheme '' is not supported error when using LWP
hi
I'm trying to use the example here:
http://search.cpan.org/~gaas/libwww-....pm#An_Example
here is the code:
...Code:use LWP::UserAgent; use LWP::Debug qw(+); # Create a user agent object my $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); # Create a request my $req = HTTP::Request->new(POST => 'http://search.cpan.org/search'); -
C# on WinMobile POST request
Hello,
I have a lame question about how to make a POST request on C# under Windows Mobile 5.
I'm new to this language and technology, but I need it for a school project.
Scenario:
I have a php website randomblabla.co m/index.php that has a form with post with a text field status (the only field that I use).
I'd like to make an HTTP POST request to this website sending the status from the mobile application....