Access the image repository

Hi again,
to access the image folder i use
#IMAGE_PREFIX#myimage.gif
What prefix do i need to access my image repository?
thx

I have used edit.gif and view.gif. Are there "Select" and "Delete"? Tried select.gif and delete.gif but couldn't get them?
Where can I find the available images in the built-in repository?
Thanks,
DC

Similar Messages

  • An error occurred while accessing the content repository from JDeveloper

    Hello,
    I'm using Jdeveloper Studio Edition Version 11.1.1.5.0
    I created Content Repository conection, following:
    RIDC Socket Type: socket
    Server hostname: localhost
    Content Server Listener Port: 4444
    Executing "Teste Connection" result "Success!"
    But, trying connect, I receive:
    oracle.webcenter.content.internal.model.rc.AbstractRepositoryLogic listFolder
    An error occurred while accessing the content repository.
    and when I login to my portal and go to administration page, then I am getting this error
    "Messages for this page are listed below.
    Could not retrieve members from policy store.
    and when I go to services tab then i am getting this error "The Documents service is unavailable.
    Error contacting the content repository."
    Please help me to resolve this problem.
    Thank You,
    Muhammad Nasir

    can anybody help me to resolve this issue please.

  • I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not ava

    I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not available but all the images are still right on my desktop.

    ... and all the rest it says images not available
    Normally this happens because you moved, renamed or deleted these photos (or the folders that contain them) outside of Lightroom. This is how to fix the problem: Adobe Lightroom - Find moved or missing files and folders

  • Accessing the Image folder on the mobil

    Hello
    I want to make an app that sends a form, with the possibility
    to attach an image.
    Is it possible to access the image folder on the
    Mobil?

    quote:
    Originally posted by:
    CHAOS'|nc.
    yep you surely would need python support for that
    . otherwise the file
    restriction issue in devices will catch up and make your progress
    stagnant
    yes, it works...thanks 'CHAOS'|nc
    .' for this!
    Simon G.

  • How to access the XDB-Repository through iAS

    It is easy to access the XDB repository on a database server directly using http or ftp.
    However, since our database server is behind a firewall we need to access the XDB repository through our Oracle Internet application server (iAS 9i) which is situated outside the firewall. Does anyone know how to do this? Any hint is greatly appreciated; unfortunately nobody answers to this question in the iAS forum.
    We access a PSP-application on the database-server through the iAS-server using a DAD defined on the IAS-server. The XDB repository probably needs another access proceeding.
    Our environement:
    iAS 9.2 (Solaris)
    Oracle 9.2.0.4 (Solaris)
    Thank you very much for any help
    Dirk Schmatz

    Hi there,
    This question is exactly what I would like to ask. Can someone answer this question please!!!
    Regards,
    SIM

  • Is there any way (API ?) to access the UDS repository directly ...?

    This is probably reviving some older thread from way back in 1998 when similar questions where asked ...
    I am working on a program of my own (writing it in Borland Delphi), and I would like to have access to the Repository.
    One way I could think of is through the command line tools (like FScript) that come with UDS . However, I figure that there must e an 'easier' way to access the repository and retrieving/storing information.
    In one of the old threads I saw that an API would become available in v4 ...
    Alas ... no v4 ever saw the light. Instead of v4, the boys and girls of IPlanet/Sun went straight to v5 (and renamed their product from Forte to UDS).
    I can't find the API (documentation) mentioned above ...
    Does any of you guys out there have any information or, even better, examples on how to achieve access to the repository from a non-Forte application.
    If I could get this to work it would mean a huge (and that should be written HUGE) step forward in reaching my goal ...
    Hansz

    Of course there is an API to repository objects, and the SUN/iPlanet people are using it. Also in past times Forte-partners have used it. You can see the classes when you set certain cfg. flags. The problem is, there is no documentation about that API provided by SUN. If you find an expert within the community (who is not bound by a non disclosure ), it will be rather easy to set up C++ wrappers to integrate with an external (non TOOL) application.
    We feel a need for documented access to the repository objects as well, as that would make several tasks of development automatization and integration with other development tools (Forte for JAVA e.g.) more straight forward.

  • How to access the images stored in folder which is kept inside theapplicati

    Iam new to java..
    I want to display the images (.jpeg,,.gif, flash) which are kept in one folder
    Using Jsp...
    Its Executing fine in local system..
    Its not working 1)when i execute that jsp from other system
    2)if i give the full url then only its executing in local system
    Please help me...
    thanks in advance...
    by Priya
    <%@ page import="java.io.*"%>
    <html>
    <head>
    <title>Movie Details</title>
    </head>
    <body text="#000000" bgcolor="#FFFFFF">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#FFFFFF" width="100%" id="AutoNumber1">
    <%
    File f=new File("..E:\application\Images");
    File []f2=f.listFiles();
    for(int ii=0;ii<f2.length;ii++)
    if(f2[ii].isFile())
    String fname=f2[ii].getPath();
    %>
    <tr>
    <td width="87%"><%=fname%> </td>
    <td width="14%"><img border="0" src="<%=fname%>" width="150" height="100" ></td>
    </tr>
    <%
    System.out.println(f2[ii].getPath());
    %>
    </table>
    </body>
    </html>

    Hi,
    Well i guess a Simple concept of a image servlet can cater your requirement here.
    checkout the below example of how to do it
    Configurations needed in /WEB-INF/web.xml:
    <servlet>
        <servlet-name>ImageServlet</servlet-name>
        <servlet-class>com.ImageServlet</servlet-class>
        <init-param>
           <param-name>backupFolderPath</param-name>
           <param-value>E:/application/Images</param-name>
           <!--Could use any backup folder Available on your Server and make sure we place a image file named noImage.gif which indicates that there is no file as such-->
        </init-param>
         <load-on-startup>0</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>DownloadServlet</servlet-name>
        <url-pattern>/Image</url-pattern>
    </servlet-mapping>
    ImageServlet.java:
    package com;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    *@Author RaHuL
    /**Image Servlet
    *  which could be accessed Image?fid=fileName
    *  or
    *  http://HOST_NAME:APPLN_PORT/ApplnContext/Image?fid=fileName
    public class DownloadServlet extends HttpServlet{
      private static String filePath = new String();
      private static boolean dirExists = false;
      public void init(ServletConfig config){
          // Acquiring Backup Folder Part
          filePath = config.getInitParameter("backupFolderPath");
          dirExists = new File(filePath).exists();      
      private void processAction(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException{
           // getting fileName which user is requesting for
           String fileName = request.getParameter("fid");
           //Building the filePath
           StringBuffer  tFile = new StringBuffer();
           tFile.append(filePath);    
           tFile.append(fileName); 
           boolean exists = new File(tFile.toString()).exists();
           FileInputStream input = null;
           BufferedOutputStream output = null; 
           int contentLength = 0;
           // Checking whether the file Exists or not      
           if(exists){                  
            try{
                // Getting the Mime-Type
                String contentType = this.getContentType(tFile.toString());          
                input = new FileInputStream(tFile.toString());
                contentLength = input.available();
                response.setContentType(contentType);
                response.setContentLength(contentLength);
                 String contentDispo = "";
                  try{
                     contentDispo = request.getParameter("coid");
                  }catch(Exception exp){
                 if(contentDispo != null && contentDispo.equals("69125"))
                   response.setHeader("Content-Disposition","attachment;filename=\""+fileName+"\"");       
                this.exportFile(input,response.getOutputStream());
             }catch(Exception exp){
                 exp.printStackTrace();
                 this.getServletContext().log("Exception Occured:"+exp.getMessage());
                 throw new ServletException(exp.getMessage());
           }else{
              try{
                 // Getting the Mime-Type
                String contentType = this.getContentType(filePath+"noImage.gif");          
                input = new FileInputStream(filePath+"noImage.gif");
                contentLength = input.available();
                response.setContentType(contentType);
                response.setContentLength(contentLength);
                this.exportFile(input,response.getOutputStream());
              }catch(Exception exp){
                 exp.printStackTrace();
                 this.getServletContext().log("Exception Occured:"+exp.getMessage());
                 throw new ServletException(exp.getMessage());
      /** Gets the appropriate ContentType of the File*/
      private String getContentType(String fileName){
            String url = java.net.URLConnection.guessContentTypeFromName(fileName);
               if(url == null)
                 return "application/octet-stream";
               else
                 return url;
           or one may use
           return new  javax.activation.MimetypesFileTypeMap().getContentType(fileName);
           NOTE: Do not forget to add activation.jar file in the classpath
      /** Prints the Image Response on the Output Stream*/
      private void exportFile(InputStream input,OutputStream out) throws ServletException,IOException{
             try{
                    output = new BufferedOutputStream(out);
                    while ( contentLength-- > 0 ) {
                       output.write(input.read());
                    output.flush();
              }catch(IOException e) {
                    e.printStackTrace();
                     this.getServletContext().log("Exception Occured:"+e.getMessage());
                     throw new IOException(e.getMessage());
              } finally {
                   if (output != null) {
                       try {
                          output.close();
                      } catch (IOException ie) {                     
                            ie.printStackTrace();
                         this.getServletContext().log("Exception Occured:"+e.getMessage());
                         throw new IOException(ie.getMessage());
      /** HttpServlet.doGet(request,response) Method*/
      public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException{       
            // Calling  respective Action Method to Provide File Service
            this.processAction(request,response); 
      /** HttpServlet.doPost(request,response) Method*/
      public void doGet(HttpServletRequest request,HttpServletResponse response) throws         ServletException,IOException{
            // Calling  respective Action Method to Provide File Service
            this.processAction(request,response); 
    NOTE: The following code could be used to provide service to stream any sort of files with any sort of content
    with some minor modications.
    Inorder to access all the images you can restructure your jsp like the one below
    JSP:
    <!--
         And say we have are storing Image name & Movie details in the database and we are created a collection
         of all the database results like bean here is how we would display all the details with images
         Say you wrote a query to findout Moviename,timings,Hall Number & pictureFileName
         example:
            Movie: DIE HARD 4.0
            Timings: 10:00AM,2:00PM,9:15PM
            Hall NUmbers: 1,1,2,4 
            pictureFileName: die_hard_4.jpg
             or
            Movie: Transformers
            Timings: 11:20AM,2:20PM,10:15PM
            Hall NUmbers: 2,3,1,5 
            pictureFileName: transformers.jpg
         say you are saving the information in a dtoBean with properties like
          public class MovieBean{
             private String movieName;
             private String timings;
             private String pictureFileName;
             /* and followed by getters & setter of all those*/
          and say we have queried the database and finally collected an ArrayList<MovieBean> from the query results and
          saving it within the scope of session with the attribute name "MovieList"
    -->
    <%@ page language="java"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
    <html>
    <head>
    <title>Movie Details</title>
    </head>
    <body text="#000000" bgcolor="#FFFFFF">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#FFFFFF" width="100%" id="AutoNumber1">
    <thead>
    <tr>
        <td>Movie Name</td>
        <td>Timings</td>
        <td>Hall Numbers</td>
        <td>Poster</td>
    </tr>
    </thead>
    <tbody>
    <c:forEach var="movieBean" items="${sessionScope.MovieList}">
        <tr>
             <td><c:out value="${movieBean.movieName}"/></td>
             <td><c:out value="${movieBean.timings}"/></td>
             <td><c:out value="${movieBean.hallNo}"/></td>
             <!-- Here is where we are making use of image servlet and trying to retrive images -->
             <td><img src="Image?fid=<c:out value="${movieBean.pictureFileName}"/>" align="center" width="30" height="30"/></td>
        </tr> 
    </c:forEach>
    </tbody>
    </table>
    </body>
    </html>Hope this might help,If that does do not forget to assign the duke stars which you promised :)
    REGARDS,
    RaHuL

  • Safari doesn't display jpg when accessing the image from the browser

    This is weird and very annoying. As soon as I click on an image to display it, Safari starts loading it and as soon as it's completely downloaded, it disappears.
    For instance, when I click this link (http://www.digitaltrends.com/wp-content/uploads/2010/08/lg3d_oled500x375.jpg) I see the image appearing gradually and then when it's fully uploaded everything disappears and I'm staring at a white page. I can view it fine when it's embedded in the page, but not when I'm trying to open it.
    I already reseted Safari (cleared cache, etc.) deleted the plist file and the webicon file in Library/Safari. Nothing works and I have no idea what to do... Help!!!

    Ok.. so it's just limited to your account and not a system wide issue. That's a good thing.
    Since you are running 10.5.8, make sure Safari is not running in Rosetta.
    Right or control click the Safari icon in your Applications folder then click Get Info. In the Get Info window click the black disclosure triangle so it faces down. Where you see Open using Rosetta... make sure that is NOT selected.
    Quit Safari. Go to ~/Library/Safari and move the Downloads.plist file to the Trash. Relaunch Safari and try again.

  • How do I access the images within a .chat or .ichat archive file?

    Looks like Messages in Mavericks has lost the ability to view images within archived .chat and .ichat files. Does anyone have any idea how to view or extract the image from those files, either within Messages or via another program?

    Hi,
    I have found that if a chat is "Open" in the Messages window but is not the front chat then when selected the pics have become file markers.
    Double Clicking them opens then in Quick Look.
    I have opened one in TextEdit.
    I can see where the pic is supposed to be:-
    #A±ÊZÿ˛ëÍ” rstÕ 4Ä Ä'ÄG_ `USing the Bookmark bar option you can select folder by foldr if you have them organsied that way_ $2114AD18-9B6C-4F4E-B317-40093904422A_ Â<html><body ichatballooncolor="#289B35" ichattextcolor="#000000"><font face="Arial Black" size=4 ABSZ=14><b>USing the Bookmark bar option you can select folder by foldr if you have them organsied that way</b></font></body></html>” íìîQÈÄ ÿ EFGHIJKL < = >Ωæ @ AÄ!ÄOÄPÄMÄ#ÄQÄL“ kl DÄ #A±ÊZ„ Å$” rstÕ HÄ Ä'ÄNXfoleder*_ $67256CDC-C159-469E-AA1E-F781CE53F284_ ç<html><body ichatballooncolor="#289B35" ichattextcolor="#000000"><font face="Arial Black" size=4 ABSZ=14><b>foleder*</b></font></body></html>” íìîQÈÄ ÿ EFGHIJKL P Q RΩæ T UÄ!Ä`ÄaÄTÄ#ÄbÄS“ kl XÄ #A±Ê[ 1,ù” rst [ \Ä ÄVÄUaˇ¸” y z ` cÄ ¢ a bÄWÄX¢ d eÄYÄ_\NSAttachment_  FezInlineFilePath“  i j k]NSFileWrapperÄ^ÄZ“  m n o_  NSFileWrapperDataÄ]Ä[“  q r sWNS.dataÄ\O   ™rtfd   .. . __@PreferredName@__ __@UTF8PreferredName@__ı  &   ÄR ì âPNG
    The bit at the end refers to a wrapper and the fact it seems to be a .png file
    The section of chat looks like this
    However as you know the pic does not show.
    I have not been paying much attention to the Add-ons for Messages (or late iChat) that may help in some way.
    8:41 pm      Friday; November 22, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Error in accessing the integrattion repository.

    hai pals,
        In "SXMB_IFR" transaction in SAPXI we can see the four component of XI integration repository, integration directory, SLD and Runtime work bench .When i make a double click on Integartion repository or Integartion directory it showing that "unable to launch integration builder", with detailed information "Unexpected exception: java.lang.NullPointerException".
       any body can help me out in this issue.
    bye raj.

    Hi Rajesh,
    Go thru these threads...
    Re: Integration Browser config: "java.lang.NullPointerException" error
    unable to launch integration builder
    Regards
    Anand

  • Hi - i got a problem with time capsule stating all of a sudden: time machine error (-1) could not access the image (Name) Macintosh.sparsebundle

    Hi - can anybody support me with a time capsule error message (-1) : could not access macintosh.sparesbundle? mny TXS

    This is a Lion bug. compounded probably by the bugs in 7.6 and later firmware of the TC.
    Rebooting the TC is disconnecting the users .. Lion is failing to unmount the TC after a backup. Reboot is forcing it to do so.
    But if you download and install the non-toy version airport utility for lion.. which still has a disk page.
    http://support.apple.com/kb/DL1482
    Install and run that exclusively, on the disk page is a simple icon, disconnect all users.. wonder why they have that icon.. well now you know. So you don't need to reboot the TC. Just press the button (icon) so to speak.
    The grand guru poobah of TM.. all knowing all seeing Pondini.. has written a KB to help poor struggling padawans.. commonly known as grasshopper.
    http://pondini.org/TM/Troubleshooting.html
    See C17.. there are a couple of other issues that cause it.. but just get your bug nets.. !!

  • Hi, I have backed up my images on three different external Hard drives, and have "ADDED" each to the Lightroom catalogue so that I can access the images from any of the Hard drives.  I make most of my image corrections and adjustments using  my main exter

    WEBE925228432695

    You need to tape your message in the lower box. The upper box is for the title and it has limited capacity.

  • My 9.2.3 iphoto is broke. why can't i access the photos i uploaded to it or them images i downloaded from the internet?

    my iphoto 9.22.3 is broke. why can't i access the images i download from the internet or access the pics i took with my camera? thjey are there when i open iphoto, but not there when i try to use them???

    You already said  that
    the answer us again
    And again exactly are you doing? How are you trying to attach them?  The basic answer is to use the media browser in the lower left hand corner of the attach window under Media ==> photos. ==> iPhoto
    LN

  • IPhone: Accessing the user's lock screen background image

    Hi there,
    does anybody know if it is possible to access the image that a user has set as the background image that is displayed when he/she locks the screen?
    Would be very interesting to know.
    I appreciate any insights.
    Yours,
    Felix

    Hi,
    First of all, please run the command slmgr.vbs /dlv
    After that, check the License status if it is licensed.
    Is there any error message when you couldn't change lock background or this option just grey out?
    Roger Lu
    TechNet Community Support

  • Possible Bug in image repository

    I think I may have found a bug with the image repository. I was deleting an image from the repository, but it still existed after I deleted it. In order to remove it from the system, I had to manually delete it from the flows_files.wwv_flow_file_objects$ table. Is this a common problem people have been having?

    For what it's worth, I just had this same problem with 2.1 (XE version). I have been deleting and uploading images, which worked fine until one mage got 'stuck'. I was still rendered but it didn't show up in the images list. It was even shown on a computer that hadn't displayed that image before, so no caching problem. Uploading a new version of the image just showed the old version in Application Builder. I had to manually delete it from the table, now it works fine.

Maybe you are looking for