i'm writing custom URI scheme, following this article:
https://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx
my handler looks like this: myScheme://firstItem/SecondItem
the thing is, after the first slash, if i write the "#" with spaces, all spaces are removed.
example:
myScheme://first/second #third
is interpreted as:
myScheme://first/second#third
in my application.
in addition, if it's the first parameter before the slash, a slash is added:
myScheme://first #second
is interpreted as:
myScheme://first /#second
in my application.
Can anyone can explain this behavior?
== EDIT ==
mailto: protocol is the only one who is implemented in similar way, and is working well. onenote, winamp, etc... can't handle those cases.
anyone knows why?