Command line command to open http sessions to a service -



Command line command to open http sessions to a service -

i want know if possible open http sessions service through command line or batch file. want accomplish check if particular service allowing more x active connections .

note: cannot install utility on production machine.

regards, prayag

uhm... can seek write vbs file connecting webserver telnet , requesting root page.

create .vbs file , set content. execute prompt.

set wshshell = wscript.createobject("wscript.shell") wshshell.run "cmd" wscript.sleep 100 wshshell.sendkeys "telnet www.yahoo.com 80~" 'subst www.yahoo.com host wscript.sleep 5000 wshshell.sendkeys "get / http/1.0~~" wscript.sleep 2000 wshshell.sendkeys "^c~" 'close telnet wscript.sleep 1000 wshshell.sendkeys "exit~" 'close prompt

http session

Comments

Popular posts from this blog

javascript - mongodb won't find my schema method in nested container -

How do you set up a perforce server to work over the internet? -

ios - Lagging ScrollView with UIWebview inside -