Can JBlitz handle POST requests. How do I specify the POST (form) data ?
Yes, in fact, JBlitz handles not only GET and POST requests, but all the common request methods are catered for. If you specify the POST request method, you can either: • use the web page editor to specify name value pairs that make up the form data. See the help for more information about using the web page editor. • type it in manually after a question mark at the end of the URL (as if it were a query string). JBlitz knows to repackage the data after the question mark to make the POST data for the request. • write your POST data into a file and use a %x file content substitution. JBlitz will POST the contents of the file. Use a URL like /mypage?%x00 and JBlitz will POST the contents of the document pointed to by the %x00 dynamic substitution to the page /mypage.