Images not showing in IWeb website for Windows generated html

I am generating html via a macro in a Windows only application (GSAK) in a Windows XP virtual environment then publishing this to a page in my IWeb website via an html snippet but some images/bars are missing. I realise the images etc in the html file in my Windows application need to be copied to my Domain file on my MACBook (user/Library/Application Data/ IWeb) but where in that file do I need to save them?
In the Domain folder itself I can't logically understand where it is holding the files for this website whereas in Windows they were all in the one html folder.

I'm sure the Apple Store would resolve it.
But if you like, it would help to please attach a screen shot showing a sample message.  In case you don't know, you would generate a screen shot by holding Shift + Command + "4" and outlining the rectangular area to shoot.  Then press the camera-like icon at the top of the box you use to compose your reply:
Good luck!

Similar Messages

  • Images not showing up on website

    Hello there im fairly new to dreamweaver and im having some
    troubles. I went ahead and publish my site on a Free site with
    provided hosting and when i click on my link i can see the text of
    my website but none of the images come out on the actual internet
    thank you so much

    Make sure your path to the image is correct. Perhaps DW can't
    find your image location and therefore prints the alt text
    instead.

  • Image Icon not showing in "get info" for OS 10.9.4

         I  now have PS CC 2014 and the image icons are showing the "generic" .jpg and .psd files in the "get info" finder window, but on my desktop the images are showing their
         proper image icon.
         I was previously using PS CS 5 and the icons are showing up in the "get info" window, but with PS CC 2014 these icons are showing up as generic.
         To be clear the images I saved using PS CS 5 are showing the icons vs. the images I saved in CC 2014 where the icons are not showing in the "get info" window.
         I've compared preference settings with PS 2014 and PS 5 but their basically about the same.
         I'm including 2 images so you can see what I'm explaining. IMG_1627 is a PS CC2014 created image and Arturo is a PS 5 image.
         I did read about other PS users having similar issues but it looked to be unresolved.
         You may think what's the big deal, but I use these image icons to label my folders. A "trick" I've doing for over decade which helps keep my folders visually on track for me.
         Is anyone out there able to solve this issue??  

    I do on occasion get jpgs and pngs that won't render a thumbnail or preview in MacOS.  I have 10.9.5
    I don't have this problem, although I just have CC and CC 2014 on my Macbook.
    I would open those up in Preview.app and try a Save As... and I would get the thumbnail and thumbnail preview back.
    Not really the best idea,but you can see if it helps.
    These  are my file saving options, perhaps there is something there you can try.
    Gene

  • 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"/>

  • Wrong folio shows in Adobe viewer for windows

    We have produced a folio for ipad 1024x768 and same(almost) folio for iphone 960x640.
    Ipad version (1024x768) will also be published on Windows and Android. When I check in the Adobe Content Viewer on Windows it shows the iPhone version (960x640)
    How can I control that it becomes Ipad version who will open the windows and Andoid viewer?
    We have a folio, 1024x768px for iPad, Windows and Android.
    We have a 969x640 folio that will only be published on the iphone
    We have a enterprise app with custom store front
    How do we solve it
    regards
    Ake

    I'm looking in Adobe content viewer for Windows
    /Ake
    Skickat från min iPhone
    18 sep 2014 kl. 16:49 skrev Neil Enns - Adobe <[email protected]>:
    wrong folio shows in Adobe viewer for windows
    created by Neil Enns - Adobe in Digital Publishing Suite - View the full discussion
    Are you looking in Adobe Content Viewer or a custom app? If so, what’s your custom app name?
    Neil
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6741464#6741464
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I would like to use time Machine to back up to a network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it

    I currently have a mini server (OSX10.8.5, server 2.2.2) that I am using Time Machine to back up 4 external drives that are connected to the server via firewire 800. I would like to use Time Machine to back up to a windows network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it for use.
    Can this be done
    Thanks for any and all help

    The supported targets for Time Machine backups are local (direct-connected) disks, and network targets include Time Capsule, a disk hanging off the current-generation AirPort (though not earlier AirPort devices), and OS X Server systems.
    The Time Machine storage is based on the HFS+ file system, so I would not expect TM to work with SMB file services.
    While there are hacks to allow Time Machine to access network drives, I would not consider those to be reliable. Skim the forum and the 'net for related details, and for previous discussions of setting this up and the related issues that can arise.
    Remember to test the recovery with whatever you decide to use; whole point of backups is the ability to restore the data, after all.
    If you want to learn more about Time Machine, Pondini is an excellent resource.

  • Sharepoint Report Subscriptions not showing on sharepoint website, but are in the database

    Hi All,
    We have had an issue which sharepoint where our subscriptions for reports "disappear" from the website. This makes is a little hard to edit them if we need to adjust the subscription. The funny thing is the subscription is still working as it is
    generating emails.
    I was able to check SQL and look at the ReportingService Database and I can see all the subscriptions listed in SQL.
    So the subscriptions are there. The question is, why are they not showing on the website.
    Here is a query I used to show the subscriptions:
    SELECT
          UserName
          , Name
          ,[Locale]
          ,a.[ModifiedDate]
          ,a.[Description]
          ,[LastStatus]
          ,[EventType]
          ,[LastRunTime]
          ,[Parameters]
          ,[DataSettings]
          ,[DeliveryExtension]
          ,[Version]
          ,[ReportZone]
      FROM [ReportingService_SP].[dbo].[Subscriptions] as a
      inner join ReportingService_SP.dbo.users as b on b.UserID = a.OwnerID
      inner join ReportingService_SP.dbo.[Catalog] as c on c.ItemID = a.Report_OID
      order by Name
    Any ideas would be great

    Also I found the ReportZone Column had 2 results 0 or 3
    I noticed everything that had a 0 showed on the website where 3 did not.
    I also saw something saying this might have to do with the AAM and having different addresses, but we only have one address

  • My iPhone is not showing up in iTunes, or Windows Explorer.

    I have looked around searching and tried to uninstall everything that had anything to do with Apple and iTunes. Nothing worked. I also have gone into the computer managment and stopping and starting the apple managment and iPod service. Still, nothing worked. My iPhone will not show up in iTunes, nor Windows Explorer, when I plug it in I can hear the sound that when a device gets plugged into the computer.

    It sounds like you have a bad USB driver for the phone. That software is installed with iTunes. Like I said earlier, you need to make sure to uninstall everything using that support document. That clears out all Apple software. Do that without the phone attached to the computer of course. Once you have reinstalled everything, then try and connect it. It should load the USB driver and begin to work.
    Let me ask you this. How many pictures do you have in the camera roll? If you have a large number of them and  you have not imported them to the computer, there could be a corrupt picture causing you some problems. While that was known in the past to cause syncing problems, I thought that was fixed. If after you uninstalled iTunes the phone was recognized as a camera, I suggest importing the pictures and then deleting them from the camera roll and try the process all over with uninstalling and reinstalling iTunes. See if that helps.

  • Ipod touch will not show up in my computer windows 7

    My ipod touch will not show up in my computer ( windows 7 ) how do you resolve this issue ?

    Start here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • Photoshop CS6 is not showing any network drives within windows 8.1.

    Photoshop CS6 is not showing any network drives within windows 8.1, I can only browse the local disk for files. Please advise?
    And when i try opening a file directly from the network, photoshop starts but does not open the selected file?

    The dialog you show there looks like it may be a CS6 open dialog running on windows 8.1 that is showing what is local.  Network is not highlighted selected.
    Here is a CC Open one windows 7 pro showing  areas of what is accessible.

  • Images not showing in Mail, just generic JPG icon...

    I have this problem with Mail (v3.6, Leopard 10.5.8) not displaying images in html messages anymore. The problem is mostly with the emails i'm sending. Back on Tiger, you could drag and drop an image and it would show inline right there where your cursor would be in the message. Now it goes at the bottom, showing the generic Preview.app JPG icon with the name and size of the file underneath the icon. If I try to compose a message using on of Apple's stationaries, half of the images are not showing, instead once again giving me the generic icon. I do have the option of displaying HTML images turned on in the prefs. A picture is worth a thousand words, so here it is :
    http://dl.getdropbox.com/u/25424/mail_problem.jpg
    If I send this to friends, half of them get a correct looking email while the other half gets missing images where the original image was showing as an icon for me. Trying to save the email message as a PDF will have missing images too.
    What's going on here? Thanks!!!

    Same problem here. Some background images show up, top, bottom and corner images not. Opening the 'content.html' file in Safari: no problem.
    No idea what's going on.

  • HT1481 my ipod shuffle is not showing up in my itunes window on the right hand side of the screen

    My Ipod shuffle is not showing up on my Itunes window on the right hand side of the screen?  It is a new one.

    Hi Brittcal,
    Welcome to the Support Communities!
    I would recommend making sure you've run your Windows software updates, and then follow the steps to remove iTunes and reinstall the latest version.   Here are a few articles to help you with this.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/TS1369
    Syncing music to iPod shuffle
    http://support.apple.com/kb/HT1719
    I hope this information helps ....
    Have a great day!
    - Judy

  • 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.

  • 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

  • HT4174 Not sure what I did but projects are not showing up in the video window as i skim... Event footage does but project footage has sound but the video screen is gray... Hwo do I get the vido to show in the viewer?

    Not sure what I did but projects are not showing up in the video window as i skim... Event footage does but project footage has sound but the video screen is gray... How do I get the vido to show in the viewer?

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

Maybe you are looking for

  • Webdriver no longer works in Firefox 13.0.1

    I write Webdriver automation regression tests using the FirefoxDriver. The other day, firefox automatically updated itself, and as soon as it did, I could no longer run automation. I tried restarting my computer, reinstalling firefox- no help. Had to

  • Issue in display of G/L acct. texts in chart of accounts for FS00

    Hi All, Iam facing below issues after upgrade. In T-Code FS00: 1. in tab Information(C/A) G/L Acct. texts in chart of accounts window is not displyed 2. In tab Information(Cocd) in window G/L acct.texts in company code last field 'Additional Info' is

  • Is it possible to change encryption keystore more than once??

    It seems that once my environment has been informed of a keystore to use for ssl communication, it can't be changed. Is this so? I need to be able to do the following: 1) Set a keystore for ssl communicaton 2) Establish an ssl connection, (send and r

  • Rendering issue in iMovie

    My friend used iMovie to edit footage from a wedding. She came to me when she couldnt get it to export correctly. She handed the project to me and I tried saving it to an ProRes Quicktime movie. The result is the same. This kind of distortion in the

  • Importing desktop xml

    Hello we have a developer portal (6.1 under Sun ONE Application Server) where we have been configuring the desktop and channels. We are setting up another portal (6.1 also under ONE App Server) to test how to migrate the desktop. I exported the deskt