tinywhistles wrote: > I am storing images in Oracle Database using Oracle Intermedia. I need > to display the images directly on the UI without storing them into the > server filesystem. This I have achieved using JSP by embedding > scriplets. > > Now I'm trying to render the same images using Flex and AMF. Could > anyone pls share his thoughts on how to do this ?
How about serving the images on an URL that the Flash Player can access. E.g. http://www.foo.bar/getimage.jsp?image=someid - then you only need use the appropriate 'source' in any components that display an image. Whichever way you do it, the JSP will need to be responsible for retrieving the image from the database. HTH - IE -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

