I have the following call to my webservice:
http://xxx/GetTrackerData/{"KundenNr":"1111","Domain":"SuppKdNr036373#0001","Datum":"20.10.2015","AuftrNr":"2015018"}
On server-side, I get the following value for the parameters:
{"KundenNr":"1111","Domain":"SuppKdNr036373
The value is cut off as soon as a # is included in one of the JSON values. Can anyone tell me, how to encode the # correctly?
I've tried %23, but this doesn't work. Any help would be great.