Forum Discussion
dubdub
Nimbostratus
Apr 25, 2011HTTP monitor with multiple parameters in the query string?
I am trying to set up a monitor for a simple .aspx page that takes a number of parameters (four, to be exact). I can run a curl command from the shell that executes the URL successfully, i.e.
...
hoolio
Cirrostratus
Apr 26, 2011As Hamish suggests, the \" are breaking this. If you're on 9.x, you can try this:
GET /test/Default.aspx?p1=a&p2=b&p3=c&p4=d HTTP/1.1\r\nHost: myserver\r\n
For 10.2+, you'll need to add another \r\n to the end:
GET /test/Default.aspx?p1=a&p2=b&p3=c&p4=d HTTP/1.1\r\nHost: myserver\r\n\r\n
Aaron