When pulling values using a CQL _expression_ the value is not URL encoded. Using this as a reference: http://docs.geoserver.org/latest/en/user/styling/sld-extensions/pointsymbols.html#dynamic-symbolizers. Example: <ExternalGraphic> <OnlineResource xlink:type="simple" xlink:href=""margin-top:0;margin-bottom:10px;; margin: 10px 0 0">.jpg"/> <Format>image/jpeg</Format> </ExternalGraphic> If the property value has a space in it, ie 'Some Value' the resulting url is: 'http://mysite.com/tn_Some Value.jpg'. Expecting result to be 'http://mysite.com/tn_Some%20Value.jpg' |