I am using a web api application that returns valid postal codes for a given city. The application is hosted on WinServer 2008 R2, IIS 6.1.
The application works fine as long as there are no European char (ä, ß, æ, ø, å) in the URL. But with any special / european char in the url, I get the following error message:
Error code: 500 Internal server error. The request was rejected by the HTTP filter. Contact your server administrator. (12217)
eg. for working URL: edu.web / Api / PostCode / Heidenau
eg. for non-working URL: edu.web / Api / PostCode / Heidehäuser
eg. for non-working URL encoded URL: edu.web / Api / PostCode / Heideh% C3% A4user
How to configure IIS to accept European characters?
Thanks.
source share