Hi,
How can I send the following http request from a batch file?
http://127.0.0.1:8080/requests/stat...thanks for any help on that

I don't think batch can do that, but I believe vbscript can, with something like this: set ie=createobject("InternetExplorer.Application.1")
ie.visible=true
'ie.fullscreen=true
ie.navigate "http://127.0.0.1:8080/requests/status.xml?command=pl_play"but I can't test it on the provided url since it is not available to me.
start http://yahoo.com
====================================
Life is too important to be taken seriously.M2
You can use telnet, netcat, curl or wget. Or like M2 said, just use start. Tony
