How to test if there is an image managed by scene7

I have a requirement which basically states - don't show products if there are no images -
All our images are located and managed by scene 7.
The site makes use of the ProductLookup droplet.
So I am open to suggestions at this point -

You can implement in two ways:
1. Make a AJAX call to load the scene7 image. If you get 404 error then hide the product from displaying.
2. Customize the ProductLookUp droplet or write a custom droplet to make a call to the scene7 image of every product thru HTTP connection.
If it returns a 200 then add to the list to display otherwise do not display the product.
The approach is performance hit as you would call the scene7 for each product.
If scene7 can provide you a webserivce to check for which product has images then one call should be file to filter the products.
Peace
Shaik

Similar Messages

  • How to test if there are duplicate values in a column using PL/SQL

    Hello,
    I want to be able to test if there are duplicate values (VARCHAR2) in a particular column of the database using PL/SQL.
    Thanks
    Douglas

    If I have understood your requirement, then you are asking for a query like following.
    Select column_name from Tbl_name
    group by column_name
    having count(*) > 1;

  • How can I use some of the image i am working on to paint with? like if I wanted to give someone an extra eye in the forehead, ow could i then paint their own i in the forehead? I know there is a paint tool for that, i just can't find it ... :/

    How can I use some of the image i am working on to paint with? like if I wanted to give someone an extra eye in the forehead, ow could i then paint their own i in the forehead? I know there is a paint tool for that, i just can't find it ... :/

    It sounds like you are talking about the cloning tool?
    Tool looks like this:
    Then when selected you can change the size of the brush and using Alt (windows) and Command (Mac) to select your region you want to copy then start to create you cloned image.
    Hope this helps?

  • I just got a white frame in the middle of my images in viewer mode. What is it and how did it get there and how do i get rid of it.

    I just got a white frame in the middle of my images in viewer mode in Aperture 3. What is it and how did it get there and how do i get rid of it?

    Just fishin' ...
    Is by any chance "View→Show focus points" checked?
    Does the frame persist after closing and re-opening Aperture?
    Notice anything else different?
    To post a screen shot, you first take it, them upload it.  To take them, I use and recommend Skitch -- one of the best little apps ever.  But this ability is built into OS X.  Use Grab or Preview (search OS X Help for full directions).  In Preview, use "File→Take screen shot ... →From selection ... ".  Save the file in Preview to your drive.  In the Discussion forum click the "Insert Image" icon (a camera) and select the file you created in Preview.

  • Lightroom 5 is not showing previous sucessfuly imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    lightroom 5 is not showing previous successfully imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    If the images are not identified as missing ... then you can't reconnect them
    But I'm not really sure what is happening, as I don't understand your description of the problem, could you show us a screen capture? Or describe what appears on your screen in much more detail...

  • IPhone 5, backlight works but there is no image on the screen. How do I fix the problem or get a replacement?

    I have an iPhone 5 32GB that is less than a year old, I smashed the screen not long ago and had it replaced and now the backlight works but there is no image on the screen. Its fully working apart from the screen, can I get a replacement? Or how else would anyone suggest to fix the problem?

    Make an appointment at the genius bar of your local Apple store or contact AppleCare. Some Apple Stores in the US can replace the display in an iPhone 5 for $149. If it requires more than that, a replacement phone will cost you $229.

  • How can we know there is a picture if I disabled automatic image loading?

    If I disable the option "load image automatically", all the images disappeared and do not hold a space in the web page. But the program is that I want to know that there is an image. If the images just disappeared, I don't even know there exist some images. Maybe we can add a frame to the place where the image originally existed?
    My ultimate goal is to eliminate the bandwidth occupied by images, so I want to disable them. But the image can be helpful sometimes.

    It sounds like you are talking about the cloning tool?
    Tool looks like this:
    Then when selected you can change the size of the brush and using Alt (windows) and Command (Mac) to select your region you want to copy then start to create you cloned image.
    Hope this helps?

  • How to Get a Video Thumbnail preview image in sharepoint Asset Library

    namespace ConsoleApplication3
    class Program
    static void Main(string[] args)
    using (var site = new SPSite("http://contoso/sites/teams"))
    using (var web = site.OpenWeb())
    var list = web.Lists.TryGetList("Videos");
    var videoProperties = new Dictionary<string, object>();
    videoProperties["Keywords"] = "Intranet Video";
    //videoProperties["AlternateThumbnailUrl"] = "/_layouts/images/preview.jpg";
    UploadVideo(list, @"C:\Downloads\Video3.mp4", videoProperties);
    public static void UploadVideo(SPList list,string fileName,IDict ionary<string,object> properties)
    SPFile file;
    using (var fileStream = File.OpenRead(fileName))
    var urlOfFile = SPUrlUtility.CombineUrl(list.RootFolder.ServerRelativeUrl, Path.GetFileName(fileName));
    file = list.RootFolder.Files.Add(urlOfFile, fileStream, true);
    list.Update();
    //listid = list.ID.add();
    SPListItem listItem = list.GetItemById(file.ListItemAllFields.ID);
    //SPListItem listItem = list.GetItems("Video3");
    var videoContentType = list.ParentWeb.Site.RootWeb.AvailableContentTypes["Video"];
    // listItem["ContentTypeId"] = videoContentType.Id;
    foreach (var property in properties)
    listItem[property.Key] = property.Value;
    listItem.Update();
    in this code "SPListItem listItem = list.GetItemById(file.ListItemAllFields.ID); " im getting null reference exception.an i have tried with other line "var listItem = file.ListItemAllFields;" same error.any one help me to get solve this
    issue.And how to Get a uploaded video Thumnail image.

    Hi,
    I did a test with your code in my environment and it works fine.
    For a better troubleshooting, I suggest you debug your code step by step. You may need to check if file.ListItemAllFields.ID is valid.
    If you want to get video Thumnail image, there is a column named Preview Image URL, the internal name of the field is AlternateThumbnailUrl.
    You can get the field value using Sever Object Model like below.
    String url = item[“AlternateThumbnailUrl”].ToString();
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/251974d8-18ac-4ff9-88a2-633b5bd80fce/get-asset-library-column-value-preview-image-url-programmatically?forum=sharepointgeneralprevious
    More information about how to get list item using Server Object Model:
    http://msdn.microsoft.com/en-us/library/office/ms460897%28v=office.14%29.aspx
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • How to Test Mail's Trainable Filter?

    In the Apple Support Discussions topic No Junk mailbox in Training mode? a question arose regarding how to test if the trainable filter (the filter that evaluates the "Message is Junk Mail" condition) is evaluated independently of the other conditional tests of the Junk Filter rule -- IOW, if some other test condition in the Junk Filter rule, like sender is not in the address book, evaluates to false, does the "Message is Junk Mail" test which follows it in the rule's list of conditions ever get evaluated?
    A proposed test for this involved resending to yourself a message that Mail had previously marked as junk using the "Message > Send Again" function of Mail. It has been pointed out to me that this probably isn't a valid test because "Message > Send Again" doesn't send the original message in unaltered form (there are substantial changes in the header info regarding sender, path, etc.) & thus the filter may not consider the resent message as junk, even if it were to evaluate it.
    So, for testing purposes, does anybody have a suggestion about how to resend (or fake resending) a received message to myself without altering its header info?

    What matters is whether the Message is Junk
    Mail condition would still evaluate to true
    regardless.
    That depends on what you are trying to determine & if the test produces decisive results.
    For instance, consider tests with the standard Junk Filter automatic settings & no other rule involving "Message is Junk Mail" in the list. A test is performed in an attempt to determine if the filter's conditional tests are performed in the indicated order only until one evaluates to false.
    "Send Again" should not cause the "Message is Junk Mail" test to be evaluated at all, since in this case the sender is oneself & the Junk Filter should exit as soon as the 'sender not in Address Book' test is evaluated.
    Yet, when I try this with a message (correctly) marked as junk when originally received, the resent version is still marked as junk, & this happens not just on my on Mac but on the few others I have checked as well. I have tested with only a limited number of junk messages because on the other Macs the owners do not keep them for long & on my own I do not get that many (AOL is my primary account & has excellent spam filtering), so I would love to know if readers of this topic see similar results.
    BTW, I should mention here what might be a potential hazard of using "Redirect" for testing with "real" spam: As I hope everybody knows by now, it is a bad idea to enable automatic loading of remote html images because doing so can alert spammers one's email address is valid. In one case, when I tried the "Redirect" method on my own Mac, AOL refused to accept the redirected message, possibly because of AOL's spam filters. At that point, Mail displayed the message, asking if I wanted to try sending it from another account, edit it, or what. Even though I have the option disabled, Mail loaded the original's remote html images along with its other content. I don't know if that is a design feature of Mail, a problem with just my Mac, particular to AOL, or what, but I want readers to be aware of it, just in case.
    Anyway, for this reason I have since confined myself to testing with "Send Again," which seems safe in all cases, & mostly to testing only on my on Mac, just in case it is not.
    Back to the "so what" aspects of this topic: It may be that the "Message is Junk Mail" test is sometimes treated differently from the other conditional tests in the Junk Filter in that it may be evaluated first or even if other tests before it evaluate to false. This makes some sense as a design feature in that even if the Junk Filter's automatic mode action isn't performed, it gives users more training opportunities. It may be a bug. It may just be something particular to my Mac. It may be something else, perhaps having to do with trusting junk headers, or something more subtle as yet unconsidered.
    In any event, the point is holding all variables save one constant in any single "black box" test of a multi-variable system is a necessity for definitive results because variables may be interdependent. Because of this, the ability to resend to oneself the same message in unaltered form would be useful for a variety of tests, so I would still like to know if anyone has any ideas about how to do this.
    iMac G5/2.0 GHz 17" ALS (Rev B)   Mac OS X (10.4.7)   512 MB RAM, Kensington Trackball

  • How to test RAM and HDD (Hard Drive).

    Introduction
    HP machines have built-in Bios testers for RAM and HDD's.
    To use them you need to enter Bios by pressing F10 on startup. They are placed under ' Diagnostics menu '.
    Why I wrote this guide and complicate whole situation?
    There are three reasons:
    This testers are not so great and sometimes they do not detect problems which you may have with your hardware. It's recommended to use more advanced tester for RAM and manufacter diagnostic programs to test HDD's.
    Not always you will be able to enter Bios. Sometimes corrupted hardware is blocking possibility to run it.
    Advanced diagnostic softwares for hard drives allow to fix some problems.
    Table of Contents:
    A How to test RAM with Memtest86+.
    B How to test HDD (Hard Drive).
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

    Ad. A
    There are few possibilities to run this program. In this guide I will present how to run it from:
    CD
           and
    USB Flash Drive.
    First we need to burn Memtest86+ on a CD or prepare properly USB Flash drive with a special tool.
    Here you will find Memtest86+ home page from which you will be able to download correct version of this software.
    Solution 1. CD:
            Download ' Pre-Compiled Bootable ISO (.zip) ' and extract it with 7-Zip(free) or WinRar.
            Download CDBurnerXP from here. Install this program and run it.
            Choose ' Browse ISO image '.
            and point Memtest86+ iso file.
            Click ' Burn disc '.
            Wait until burning process will finish.
            Choose ' OK '.
            Exit from program.
    Solution 2. USB Flash Drive:
             Download ' Auto-installer for USB Key (Win 9x/2k/xp/7) ' and extract it with 7-Zip(free) or WinRar.
             Connect USB Flash Drive to one of USB ports. Run ' Memtest86+ 4.10 USB Installer '.
             Click ' I Agree '.
             Select USB Flash Drive and check box to format it.
         Caution!
              Format process will erase all information from USB Flash Drive. If you have there something important then please backup this data first.
               Choose ' Create '.
               Wait until process will finish and click ' Next '.
               Exit from program by choosing ' Finish '.
    How to run Memtest86+.
    Leave USB Flash drive in USB port or CD in CD/DVD drive. Restart your system and on startup press F9 key repetitively:
    After this step you will be able to select from which device you want to boot. Choose from the list ' USB Hard Drive ' if you have prepared USB Flash Drive (like on below photo) or ' Optical Disk Drive ' if you have prepared CD:
    How to use Memtest86+ to test RAM?
    Do at least 2 - 3 passes. In Errors column may show up only 0. If it's other number then you need to replace corrupted RAM stick.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • How do I use copyprofile, image manager and create a wim file to Sysprep a reference Windows 8 computer.

    Im trying to deploy a reference machine (configured) to other machines (exact or close image) with different hardware.
    I have successfully used sysprep in out of the box, generalise, shutdown mode although i havent tried to deploy this to another device.  Unfortunately it doesnt copy the profile to default.
    I understand that I have to create an answer file using image manager based on that image, save it to a usb drive and attach this in the sysprep command line when sysprepping it.
    My problem is I dont know how to easily capture an image of windows 8 into a wim file so that i can add this into image manager to create a answer file.  Im also not sure what I have to do in image manager, is it a simple matter of creating and saving
    the answer file or do i have to configure it to copy the profile specifically (theres only one account anyhow).
    I also want to know if i have to attach the drivers or are all the standard drivers put into the sysprep image as standard.  I would like the machine to be an exactly replica, same as doing a clone (but with the drivers for the new machine installed
    so it will boot) same as doing a clone and then repair? If thats possible.
    Any specific instructions on this would be helpful.  I have read the microsft links but they are somewhat confusing.

    I know this is a very late response but I thought I'd post for others who search.
    The easiest way to create the .wim file is via WinPE, this guy's two YouTube videos explain the entire process in detail - 
    Windows 8 ADK Part 1: Capture an OS image - https://www.youtube.com/watch?v=XJ8zKX_8E9w
    Windows 8 ADK Part 2: Windows Image Deployment - https://www.youtube.com/watch?v=HHIvoqSw_FI
    Here's a quick rundown from my notes:
    WINPE
    Create WinPE via imaging tools command prompt
    copype amd64 c:\winpe
    makewinpemedia /iso "c:\winpe" "c:\winpe\winpe64.iso"
    UNATTEND
    Open Windows System Image Manager
    Configure unattend.xml
    Save unattend.xml to sysprep folder
    Create script and save it to sysprep folder to launch sysprep with unattend
    @echo off
    cd C:\Windows\System32\sysprep
    Sysprep /oob /generalize /unattend:C:\Windows\System32\sysprep\unattend.xml
    SYSPREP
    C:\Windows\System32\Sysprep
    Run as administrator
    OOBE/Generalize
    Shutdown
    CONFIGURATION of WINPE
    Set IP - netsh int ip set address "Local Area Connection" static 192.168.1.2 255.255.255.0 192.168.1.1
    Set DNS - netsh int ip set dns name = "Local Area Connection" source = static addr = 192.168.1.4 validate = no
    Map Network Name - net use z:
    \\WindowsADK\reflex\images password /USER:domain.local\username
    DISKPART
    diskpart
    list disk
    select disk zero
    list partition
    select partition 2 (OS partition #)
    Assign letter=S (assigns drive letter to partition)
    Exit
    DISM
    dism /capture-image /imagefile:z:\image.wim /capturedir:s:\ /name:"Windows 8.1 Custom"
    Verify image is saved in the image share (z:)
    http://www.microsoftfanboys.com

  • How can i export a series of images in different aspect ratios to the same height

    How can i export a series of images in different aspect ratios to the same height?
    I wish to make a slider callery for my website. all the images need to be 750 Pixels high, the width does not matter.  I have a mixture of square pandscap and protraite images can i do thing as one export or do i have to do it twice?  Once for long edge and once for shot edge?
    Thanks

    Yes, you can but there is a trick to it.
    In the Export Dialog under <Image Sizing> select Widdth & Height.
    Then enter 750 pixels for Height.
    Put your cursor into the Width field behind all the numbers that appear there and with the backspace key delete the numbers. If you enter "0" it will not accept that. But it accepts when you just delete the field for Width with the backspace key. The Width field will now be just blank.
    When you then export all image will  have a height of 750 pixels and the width will fall variously according to thne height / width ratio.
    Or alternatively you can enter 7.5" for height at a resolution of 100 ppi.

  • How do I add text to an image?

    I have purchased a template and imported it to Photoshop. I then sliced the template into sections, saved it for web and opened the index file in dreamweaver. My questions is, how do I add text to the images? I want to add the text content, within the boxes on the template, but because they are exported as images from Photshop I can't seem to do it...So let's say there is a box in the middle of the template and I want it to say, Services at the top and below that have a little information about the services offered with a "read more" button at the bottom. I have exported the template out of photoshop with text added and with the boxes empty. I tried to add the text in dreamweaver but couldn't. When I export the sliced template out of photoshop with the text already included, it does show up in Dreamweaver, however it is not in html and I would like it to be for SEO purposes. Forgive me if this question is silly or already answered, I have looked everywhere and couldn't find the answer.
    Thanks in advance to anyone that can help.

    Hi,
    I prefer to use tables for that. For example (First of all you have to store this new file):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>AddedText</title>
    </head>
    <body>
    <table width="40%" border="4">
      <tr>
        <td>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text </td>
      </tr>
      <tr>
        <td align="center" valign="top"><div align="center"><img src="yourPicture.jpg" alt="image 01" width="127" height="33" /></div></td>
      </tr>
      <tr>
        <td>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text </td>
      </tr>
    </table>
    </body>
    </html>
    Here I took a table with only one column, you can modify my choice.
    There is so too a possibility to use a complete flow text around a picture. If you like that, please give me a shout.
    About the story "hotspots" look here where I tried to give an answer a short while ago: http://forums.adobe.com/message/2700306#2700306
    Hans-G.

  • How do I view more than one image at the same time in CS6?

    How do I view more than one image at the same time in CS6?

    Hi there
    If you go to Window > Arrange you can choose from several view options. Below I have selected Two-Up Horizontal since I have two images, but you can select other options if you have more than one image.

  • How do I print multiple identical small images on the same sheet of paper?

    I would like to know how I can produce multiple identical small images (10mm x 10mm) on the same sheet of paper?
    I used to be able to do this in older versions of Adobe Photoshop.
    Thank you.

      Try using picture package. There is an option to print 10 copies on a single sheet.
    1. Select your photo in Organizer
    2. Click File >> Print
    3. Choose picture package in section 4 of the print dialog
    4. Select layout in section 5 and choose fill page with first photo
    5. Click print button
      Click to view image

Maybe you are looking for