-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CDATA in DASH Location tag #1508
Comments
You need to double escape it. <Location>http://example.com/?q=foo&amp;bar</Location> Once we parse this, it will be sent to the server as |
@tmagnien does @TheModMaker instructions fix your problem? |
Hi. Sorry, I realize my question was not clear. To sum up, this works: But this is ignored: And I wanted to know if this is expected behaviour, as the 2nd form using CDATA is easier for me to generate. Thanks, |
I don't really see a reason this shouldn't be supported. It should be a simple fix. I'll add it to our next release. |
Fixes #1508 Change-Id: I04817c8077b298b56ea11cb8cb8d1a6e832ce4ee
Hi. We're using DASH Location tag to load-balance our streams on different servers.
However, our URL has a query string and
&
characters should be quoted to&
. I tried enclosing it in a CDATA block but it does not seem to work. Is this normal ? (Using & works but it would be easier for me not to rewrite the URL).Thanks,
Thierry
The text was updated successfully, but these errors were encountered: