c# - HttpWebRequest truncating URL with non-english symbols in it -
i'm creating httpwebrequest dynamic url can contain russian symbols. , i'm encounter issue not sure how deal with: while encoding url each of ru characters has been converted url character-entity equivalents (%20...). apparently after such conversion url becoming long httpwebrequest truncating few last characters instead of proper http result i'm getting 404 error.
is there way bypass limitation?
my url looks this:
http:\\1.1.1.1\some?page=2&var=тестовое значение строки (this part can long) i'm sending since web-app i'm working expecting request @ point.
the answer have send in other way there limit length of query string.
the error 404 or "http error 414. request url long." you'll because of length of query string data sending longer limit.
refer this: http://forums.asp.net/t/1139751.aspx
Comments
Post a Comment