-
Notifications
You must be signed in to change notification settings - Fork 191
Encoding plus sign makes no difference #964
Comments
This is intentional, everything in the path is unescaped so you can operate on it. Forward slash is the only character that can't be unescaped without changing the meaning of the path. Why are you converting plus to space? That's not an expected form of un-escaping for request paths. That only applies to form urlencoded content. |
It being intentional indeed solves plus sign issues, however then why I'm getting spaces encoded as pluses when not decoding it myself? test: debug: |
Try Uri.EscapeDataString instead. |
Yes! It works now! Why is it so different than WebUtility.UrlEncode and how can I be sure that clients (written in totally different languages like JavaScript) will correctly escape it? |
This issue was moved to dotnet/aspnetcore#2683 |
Basically this issue is kind of similar to #912, except it's about plus sign ('+') and this time it does not only affects TestHost but shows up also when hosted.
It does not work correctly on TestHost or when hosted and invoked through web browser or any web client for that matter.
It is failing my integration tests where I am using Microsoft.AspNetCore.TestHost v2.0.0 and Microsoft.AspNetCore.WebUtilities v2.0.0. Please notice that my WebApi and WebApi.IntegrationTests are AspNetCore 2.0 but are targeting net461 (due to some of my libraries not yet ported).
Repro:
Unit test:
https://github.com/PawelTroka/Computator.NET/blob/97b666341bf8a9b21fb9dc59f94528ccf830a931/Computator.NET.WebApi.IntegrationTests/CalculateApiTests.cs#L42
Goes through route:
real/{equation}/{x} from method:
https://github.com/PawelTroka/Computator.NET/blob/97b666341bf8a9b21fb9dc59f94528ccf830a931/Computator.NET.WebApi/Controllers/CalculateController.cs#L34
But because encoding plus sign makes no difference we have equation with unencoded plus sign
In images:
When run through browser:


We type encoded url
What reaches our controller however is already decoded
So when we are decoding it in another overload of Get(..) we will attempt to decode already decoded expression, which will make us replace plus sign ('+') with space (' ').
The same happens in test:


Also note that this exists at least from AspNetCore v1.1
The text was updated successfully, but these errors were encountered: