-
Issue still exists.
before escaping:
<"&><foo>;'
after escaping:
<&quot;&amp;&gt;&lt;foo>;'
after unescaping:
<"&><foo>;'
should be:
<"&><foo>;'
& should be replaced at the end of unescaping.
Maybe unescape method should process escaping table in reverse order?
Type |
Bug
|
Priority |
Normal
|
Assignee | |
RedmineID |
242
|
Issue Votes (0)
Watchers (0)
During Your visit here we talked about that problem with escaped characters. We couldn’t reproduce it then.
Now when investigating the problem in our side I’m not sure anymore where the problem is.
Test data:
With original Tigase’s XMLUtils results to:
in receiving end.
Tigase logs:
But when I alter XMLUtils unescape method to:
Receiving end gets payload:
Tigase logs:
See the difference in payloads? Can you reproduce this with tigase or is this problem in omb even though we can fix it changing XMLUtils code?
Also do You have any developer guide for that cache in Tigase you were talking during visit? That we could use instead of memcached? We would like to investigate that if we could use it.