I’ve got an asp.net page that receives a PUT request with the following form:
PUT -Filename-
Header1: value1
Header2: value1
i’ve managed to extract the headers..and MethodType (PUT), however i cant figure out a way to extract the -filename- , i cant even find a variable that sees it..
You have an invalid HTTP request. What follows the
PUTverb should be the name of the resource your are putting to which in your case is the asp.net page. So a valid request should be:In this case of course you already know
yourpage.aspxas you are inside this page.