- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can I show an image from a JSP variable?
Hi everyone,
I'm getting some data from a Query, then I want to show an image that is recorded from a FS_REFERENCE.
The field value is:
<CMS_VALUE name="cs_visual" tag="FS_REFERENCE"><LANG id="ยง" set="1"><UID>image_name</UID><UIDTYPE>MEDIASTORE_LEAF</UIDTYPE><REMOTE/></LANG></CMS_VALUE>
I've tried to use the UID to get the image putting it into a "CMS_REF(media:", but now I know that it's not possible to use dynamic data in that way.
How can I show the image? Do you have any ideas?
Thank you!
- Labels:
-
Developers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Javier,
I guess you are using dynamic database access to query firstspirit from jsp. could you please provide some code, that would help use to reproduce your problem.
Thorsten
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Thorsten,
Yes, that's what I'm doing.
Here is my code:
<fsi:setSchema schema="FS_DATA">
<fsi:search resultName="resultServices">
<fsi:query>
<QUERY entityType="Services" >
<FILTERPARAM parameter="category" datatype="java.lang.Integer" value="<%= reqCategoryId %>"/>
<c:if test="${-1 != reqCategoryId}">
<EQ attribute="ProductCategoriesList.fs_id" parameter="category" />
</c:if>
</QUERY>
</fsi:query>
<fsi:getQueryDetails><c:set var="totalResults" value="<%=totalResults%>"/></fsi:getQueryDetails>
<div>
<c:forEach items="${resultServices}" var="r">
<c:set var="pictureServiceEntity" value="${r.visual}" />
<c:set var="pictureServiceString1" value="${fn:substringAfter(r.visual, '<UID>')}" />
<c:set var="pictureServiceString2" value="${fn:substringBefore(pictureServiceString1, '</UID>')}" />
<c:set var="pictureService" value="${pictureServiceString2}" />
$CMS_SET(pictureService)$<c:out value="${pictureService}" />$CMS_END_SET$
$CMS_REF(media:pictureService)$
</c:forEach>
</div>
</fsi:search>
</fsi:setSchema>
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Javier,
sorry, but the dynamic database access module does not support medias. there is a feature request for that: https://community.e-spirit.com/ideas/1108
But there is a workaround: https://community.e-spirit.com/message/5498#5498
Thorsten
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thorsten,
Well.. this is really a pity. Amazing that a system like this can't handle this kind of situation easily :S
Anyway, I'll try with the workaround.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Javier,
do you need further help or did Thorstens reply already help you? If so, it would be great if you marked the reply as "correct answer" so that other community users find the solution easily. If you have already found a solution by yourself, it would be very kind of you, if you posted it here.
Best regards
Martin

