Images not showing on edit

Hi
I have Contribute CS3 on the PC and when I navigate to this
page
http://www.beaufieldhomes.co.uk/homes/white_gates.html
I can see the images, however when I edit the page I can no longer
see the large image on the right of the page.
I also have Contribute on the Mac and this works fine. I have
been through the forum and checked for similar errors but don't
find anything similar. The menu images do appear, so is this an
error within Contribute?. Its very frustrating....!
Help me please
Jamie

This might have to do with your layout, as I tried it in
Contribute 4 and it had the same issue. It looks like the image
file is pushed to the right (almost tucked in between and if you
pull the table resize handle and stretch it to the left, you can
then see the image file, and then select it.

Similar Messages

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Edited images not showing up in iphoto

    when I edit images in photoshop elements and save them they do not show up in iphoto. I am saving them as tiffs.

    I am saving them as tiffs.
    But what were they?
    If there is a format change - from jpeg to tiff, from Raw to something else - then you need to save the files to the desktop first and then import them as new files.
    Regards
    TD

  • Web gallery images not showing in Firefox

    I have just created a web gallery in Adobe Bridge CS4.  I had it working perfectly in all browsers and now all of a sudden the images are not showing up in Firefox. Anyone else have this problem?

    If images are missing then check that you do not block images from some domains.
    *Press the F10 key or tap the Alt key to bring up the hidden Menu bar.
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Edit > Preferences > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    There are extensions like Adblock Plus (Firefox/Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/Websites_look_wrong

  • CS6 Encore - images not showing up in backgrounds

    I want to import my images to use as menu backgrounds.
    When I import the images they show up in the "diplay images" but not "display of backgrounds".
    In fact, I have no backgrounds showing up.
    Thanks for any help.

    So can you only use screen images captured form a scene
    I'm sure  not; my success image was a copy of a noncapture.
    can you use any jpg or psd file...and in what kind of saved format/resolution.
    That's what I don't see  yet. What format (jpg? psd?) did you use that got into the background list.
    Edit: so far, I can only get psd's into the background list. But there's an additional variable I am missing.
    I did import jpg and psd as assets into the project panel.  When I dragged them to the library backgrounds
    You can also use the "new item" from the library panel drop down. But I don't think that will make any difference on which tab of the library they work with.

  • Linked images not showing

    Hi,
    We're running Illustrator CS4 across a suite of 12 Macs on OS X 10.6.8.  Over the last couple of weeks, several accounts have been hit with the same problem, that linking an image in an Illustrator document will not show the images, but just a bounding box.  The link information is correct, but I've found no way of getting the image to show, aside from embedding it.  Furthermore, saving a document in this state will cause Illustrator to crash when trying to reopen the document.
    We use network accounts for the Macs, so all installs are local on each machine, but users access their profile directly from our server.  Therefore, all links reference a location on our network and not the local drive.  However, there does not seem to be anything wrong with the installs as the issue is with accounts and not the individual client.  Once the issue occurs for a user, it occurs on any Mac they log into, while unaffected users can use any Mac without issue.
    Our network has run in this state for a year now and the problem has only surfaced recently.  I've tried clearing user's preference files relating to Illustrator, but this has had no effect.  It's also random when creating a new user on the network, as some will have the issue and others not, despite all being created with the same set of default preferences.
    If anyone has come across anything similar, or has any idea of what to look at with this, I'd be very grateful for some help. 
    Thanks,
    Simon

    Hi Steve,
    Thanks for the response.  First of all, you'll have to excuse me if I get a few points wrong, as I'm not too familiar with Illustrator.  However, in answer to your questions;
    The layers panel is showing "<Linked File>" next to an empty white box.
    Turning off preview does show the boxes you describe.
    I've no idea how to go about checking if an image is beyond the mask bounds.  However, I've used the same image for testing across accounts and it displays fine on those that aren't having this issue.
    Also, in the top left corner of Illustrator, the name os the linked image does display and the options available when clicking that do seem correct and working.  Relinking from there does nothing, but I can open the image for editing etc.  None of this helps in getting the image to display though.
    As for the server side, we have always used a Mac server at the same version as the clients. 
    Thanks,
    Simon

  • Why are my images not showing up?  Worked fine before yesterday...

    First, Happy Thanksgiving!
    I use iWeb for my photography business (www.rosiejohnsonphotogaphy.com). All has worked fine until yesterday. Now the images on my linked pages are not showing up. They are imported from iPhoto. Now one image is at the top (it is not imported from iPhoto) and at the bottom of the page is this "comments widget". I swear that I did nothing to my website yesterday - didn't even have iWeb open.
    Any ideas why this is happening??
    Thank you in advance!
    For clarity, here is the actual web address:
    URL: web.mac.com/rosie_johnson
    Message edited by RosiePosie
    Message was edited by: RosiePosie

    Wyodor,
    Thank you for taking a gander. I mistyped: www.rosiejohnsonphotography.com. Must have not had enough coffee at that point....
    So I checked my website from our other computer (not the one I use to update it) and all images loaded and looked fine. I then tried it from this computer (the only one used to update the website) and no pictures! Why is this?! I think it has something to do with this "comment widgets" statement at the bottom of each web page and the RSS box at the end of the web address bar. Any ideas how to fix this and get it back to where it was working would be appreciated!
    Thank you.

  • Images Not Showing Unless Clicked

    I would like to switch to firefox due to chrome not showing unicode symbols properly.
    but on firefox for most of the images i get this
    http://i1252.photobucket.com/albums/hh567/NeonFirecracker/Edits/firefox_zpsdfccbc44.png
    i have to click that stupid little emote on EVERY IMAGE
    to get it to show
    how do i disable this, or get all images to show without having to click them all every single time?

    You got a reply to the updated version of your question so let's all continue there: https://support.mozilla.org/questions/1013242

  • HTML Signature Problem - Images not showing

    Hi all,
    I've got some HTML signatures that I use in Mail (v4.3) on Snow Leopard (10.6.4). They were created quite a while ago and have been working fine. BUT... I need to update them to change some of the information. So, I went through the usual rigamarole:
    - Edit the HTML file
    - Open the HTML file in Safari (v5.0.2)
    - Save the file as a webarchive from Safari
    - Find the appropriate file in the ~/Library/Mail/Signatures folder
    - Replace the file with the new webarchive (renamed)
    When I do this, now, Mail will not show the image that I have in the signature (which is a background image placed in the file using CSS and referenced as a URL from my web server).
    Does anyone know why the old signature (created the same way, but using an old version of Mail & Safari) works... but doing it all over again using the current version doesn't?
    Thanks!

    Anything you paste in the HTML is your responsibility. iWeb doesn't care about it. If it doesn't work, too bad.
    Perhaps Posterous doesn't like to be displayed.
    Ask them.
    And instead of pasting garbage (not pretty stock standard) you may want to consider using proper code  :
    <iframe src="http://hamptoncycles.posterous.com/" frameborder="0" width="900" height="1050" scrolling="no" allowTransparency="true"></iframe
    You'll never now if that is the problem.

  • Images not showing up to upload (lightroom5)

    I just installed lightroom 5 onto my new laptop, I was half way through editing a shoot on my old laptop but it is having issues and running supper slow so i transfered the unedited and edited jpg images to my new laptop and saved them in a folder called "pics" in that folder is the "untitled export" folder of edited images that I had done on my old laptop. when I go into lightroom and click add folder I went to the "pics" folder and the only thing in there is the "untitled export" file of edited images the unedited images are not showing up at all. what am I doing wrong?

    when I go into lightroom and click add folder I went to the "pics" folder and the only thing in there is the "untitled export" file of edited images the unedited images are not showing up at all. what am I doing wrong?
    Click "Add folder"? Does this mean clicking on the + sign in the Folder Panel and then selecting "Add folder" from the dropdown menu? Or does this mean something else?
    If so, that's not the way to get the photos into Lightroom. You must use Import.

  • Bkacground/CSS images not showing

    Since earlier this month I have been having problems with DW.
    I'm sure it's something I did since I'm sort of new to this but
    here it goes. I'm using DW MX by the way.
    I run a small diecast site and DW has always been my editing
    program and its worked fine until now. My site uses CSS and usually
    DW would load all the necessary image files like the menus,
    background images and icons, etc. My actual diecast photos and a
    few of the menu buttons are hosted at Imageshack and most of them
    display correctly in DW, but everything thats on the server hosted
    by Byethost doesn't show. It also doesn't correctly display the
    layout of the CSS I chose, but rather it looks like a plain
    unorganized page. I thought the problem might have been that DW
    doesn't actually display the images from the server, but rather
    from the local disk instead. The local folder these files were in
    might have been moved to somewhere else on th disk? I have tried
    everything I could think of but nothing has worked. Any help is
    very much appreciated!
    Justin

    > DW won't display any content that is not available
    locally.
    Sure will - it handles images, css, js, and applets with
    external links.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Nick Barling" <[email protected]> wrote in
    message
    news:[email protected]...
    > This sounds like a file/folder management problem. DW
    won't display any
    > content that is not available locally. To see content
    that is only
    > available
    > at the server you need to view your page from within a
    browser.
    >
    > If you have content stored locally and it is not visible
    then you need to
    > check the file path to each piece of content that is not
    showing. Check
    > that
    > you are using document - relative links and not root
    relative links.
    > Check the
    > location and content of your local folders; they should
    not have moved on
    > your
    > local disk unless you moved them. As it is unlikely that
    you moved the
    > file
    > locations without knowing it I suspect the problem is
    one of relative
    > paths.
    >
    > Look at your local file structure in the DW site local
    view and then check
    > your remote view file structure, you may find the
    problem there.
    >
    > The CSS style sheet, which I assume is an external style
    sheet attached
    > the
    > your html page will only be visible locally if you have
    linked it
    > correctly to
    > the html page it is styling. View the page locally and
    check that the CSS
    > style sheet is linked/referenced corectly in the file
    structure. If your
    > page
    > shows CSS styling when viewed locally but does not show
    remotely, ie when
    > viewed in a browser via the url address with the page
    served from the
    > server,
    > then check that you have uploaded the CSS style sheet to
    the correct
    > location.
    >

Maybe you are looking for

  • Can't add a new address card to Address Book

    Hi! Well, I searched and searched the site all over and haven't found any info about this, so I hope I'm not repeating. When I open my address book app and try to add a new card the options under file for "New Card" and "New group", etc. are dimmed a

  • Inventory ArcMap.exe version 10.0.2.3200

    I am not able to create reports for Arcgis since we upgraded to 10.0.2.3200, all I see all the 9 versions. I can however see this info in the local software products, when i do a search for esri products and the workstation that I know it is installe

  • SQL Developer// new install // SQL Worksheet will not open

    New install of SQL Developer 1.1.2.25 on WinXP. Oracle 9.2 database on same machine. Database connection to 10.2 database instance on other machine was successful. When I attempt to open SQL Worksheet on the client machine, I get the following errors

  • ODI 11g Installation Error(JDK).

    Hi I have a problem with installation ODI 11g under Widows 7 (64 bit). I have installed jdk(jdk1.7.0) 32 bit version. When I start setup.exe (run as Administrator), Oracle Universal Installer starts, but needs to specify path to JDK "Preparing to lau

  • I there a way to see what apps open in which desktop?

    Since installing Lion, the loss of "Spaces" took a little while to get used to, but I'm over that now. It would be nice to see a list of desktops and what apps appear / open in those desktops. Is this possible to see in Lion? -TIA -jP