href and src without c:url
Some (new) JSPs have href
and src
attributes for links and images that do not use <c:url value="..." />
. One example is a line from jsp/crop/list.jsp
:
<img class="img-responsive icon" src="/html/1/images/<c:out value="${entry.key.shortName}"/>.png" alt="<c:out value="${entry.key.shortName}"/>"/>
Please scan the JSPs for all links and image references and ensure they are properly coded:
<img class="img-responsive icon" src="<c:url value='/html/1/images/${entry.key.shortName}.png' />" alt="<c:out value="${entry.key.shortName}"/>"/>
Using CDN
Genesys production and sandbox environments now use a Content Delivery Network (CDN).
For static resources (things in /html/
) please add the ${cdnServers.next}
as shown here:
<img src="<c:url value='${cdnServers.next}/html/1/images/${entry.key.shortName}.png' />" />