In my JSP view flowExecutionUrl points to a physical file name, like this

Code:
/WEB-INF/views/tiles/baseLayout.jsp?execution=e1s2&_eventId=viewImage
JSP code:

Code:
<img src="${flowExecutionUrl}&_eventId=viewImage"/>
Yet <form:form> tag action is correct:

Code:
<form id="command" action="/webapp/do/customer-registration-flow?execution=e1s2" method="post">
Any idea whats going on? I suspect Tiles 2.2 are messing up the URL, but why <form> is correct then?

Peter