vote up 1 vote down star

I need to execute a http web request from Plesk's Task Scheduler (using shared hosting on Windows/ASP.NET; no Powershell, whatsoever). Thought about using a batch file for this.

Is there an easy way to do this?

flag

5 Answers

vote up 6 vote down check

Take a look at curl. It's a cross-platform command-line tool for making web requests (similar to wget if you've used that before). You should be able to call that from your batch file.

link|flag
vote up 0 vote down

The "curl" utiliity which is basically a command line wrapper for the wonderful libcurl library will handle almost any http request or response. Its freely available for free.

link|flag
vote up 1 vote down

I would suggest either wget or curl. Win32 versions are available for both.

link|flag
vote up 1 vote down

What are you allowed to install? Could you use wget for Windows for instance? Or write a .NET executable which does everything you need it to using WebClient or HttpWebRequest?

link|flag
I am thinking about writing a .net app, but have been hoping that there's an easy way to do it from a batch file. – Thomas Danecker Jan 7 at 15:15
vote up 3 vote down

You can try using wget for Windows.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.