Error: Problem Parsing Modifier
We are using Scene7 URLs to display images in an XAML-based internal tool we are building and have run into an issue with the Scene7 Image urls. If the url contains curly brackets, the portion that contains the brackets is left off when the url is executed within the XAML.
so for example:
http://s7d7.scene7.com/is/image/......&wid=1000&hei=1000&align=0,-1&src={ugc-file:800781074.tif?fmt=tif-alpha}))))
is sent as
http://s7d7.scene7.com/is/image/......&wid=1000&hei=1000&align=0,-1&src=))))
which results in an error "Problem Parsing Modifier."
The reason the brackets are left out is because in XAML, anything in curly brackets is a mark-up extension, usually used for data binding, and since no value is being provided, it is left off. Generally, a value converter can be used to encode the string like so:
http://s7d7.scene7.com/is/image/......&wid=1000&hei=1000&align=0,-1&src%3D%7Bugc-file%3A800781074.tif%3Ffmt%3Dtif-alpha%7D))))
However, this is not also is not working. Has anyone ran into this issue? and if so, do you happened to know what kind of encoding could be used to replace the curly brackets?