I am using ARR and ISAPI with IIS7.5. Whenever forwarding URL including specific character : 400 Bad request occurs. How can I solve it?
I guess there is no problem in ARR and ISAPI because no problem in development server(same Env as operating server) it only occurs in operating server.
The
:
character is only permitted in URLs as part of an IPv6 address. Either encode it as%3A
, or don't use it.You can find the reference in RFC3986