Mass background upload of image files

Hi! We have more than 100000 images to upload into the repository. Is there an easier way to do mass upload through the Data Manager?
Cheers!
SF

Hi,
I am trying to assign multiple images to a single catalog item through MDM. Cannot get it working for multiple images. Though I can assign the default image to a catalog item but cannot assign multiple images at once. My excel looks like this
Catalog Item ID
Node Id
Image
ProdA
NodeA
CMLProdImg.bmp
ProdB
NodeA
ResProdImg.bmp
ProdC
NodeA
product_pic_2.bmp
ProdD
NodeA
24XXXX_img.bmp
I am matching records based on catalog item id and node id. But in maching record selection I can only see catalog item id as available. Node ID is from a hierarchy table I think.
Any pointers would help much

Similar Messages

  • How can i upload a image file to server by using jsp or servlet.

    Hi,
    I m gurumoorthy. how can i upload a image file to server by using jsp or servlet without using third party API. pls anyone send me atleast outline of the source code.
    Pls send me anyone.
    Regards,
    Gurumoorthy.

    I'm not an applet programmer so I can't give you much advice there.
    If you want to stream the file from the server before it's entirely uploaded, then I don't believe you can treat it like a normal file. If you're just wanting to throw it up there and then listen to it, then you can treat it like a normal file.
    But again, I'm not entirely certain. You might be able to stream the start of the file from the server while you're still uploading the end of it, but it probably depends on what method you're using to do the transfer.

  • How to upload a image file using JSP

    hello to all.
    i am in the learning stage please help me to upload a image file
    using jsp. give the explanation to the code also if possible.
    thanks in advance
    sincerely
    Chezhian

    You may find the following articles useful for the JSP/Servlet part:
    Uploading files: http://balusc.blogspot.com/2007/11/multipartfilter.html
    Downloading files: http://balusc.blogspot.com/2007/07/fileservlet.html

  • Url idle with ccm 5.1: where upload the image file?

    Hi,
    I'm trying to work the url idle feature in ccm 5.1.
    The phone gets the message error http (404).
    I have the default configuration on the enterprise parameters of the callmanager and I have upload the xml image file in the tftp directory and in a ccmcip directory, but it doesn't work.
    Where must I upload the image file or why it dosn't work?

    I am having the same problem...I don't suppose you would mind being a bit more specific!!!????

  • Possible ways to upload a image file??

    hi all
    can u plz give me the details for upload an image file using jsp,jstl...
    and a brief explanation on it ..how the flow goes..or some useful links...

    Next time use google
    http://servlets.com/cos/

  • Accesing url idle ccm 5.1: where upload the image file?

    Hi,
    I'm trying to work the url idle feature in ccm 5.1.
    The phone gets the message error http (404).
    I have the default configuration on the enterprise parameters of the callmanager and I have upload the xml image file in the tftp directory and in a ccmcip directory, but it doesn't work.
    Where must I upload the image file or why it dosn't work?

    You can try this link for Idle URL timout
    http://cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00801c0764.shtml

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • How to upload a image file ....

    Hi
    Need some tips ....
    How to upload a image file?
    How to limit the size of the file?
    if the image is big in size means how to make it small ?
    Is it possible of compressing the file before storing ..?
    thanks in advance
    kumar

    You may find the following articles useful for the JSP/Servlet part:
    Uploading files: http://balusc.blogspot.com/2007/11/multipartfilter.html
    Downloading files: http://balusc.blogspot.com/2007/07/fileservlet.html

  • Uploading a image file to server

    hi,
    In client side i am choosing a image file or text file(using input type file in jsp)
    with full path.I want to save this file on server side.how to do this.please help me.

    http://search.sun.com/search/onesearch/index.jsp?qt=file+upload+servlet&rfsubcat=&col=developer-forums

  • Black background of saved image file.

    Hello All,
    My code is set up to create an image then save the image into a file in JPEG format. Everything works well except the background of the saved image is balck. How can I get a white background on the saved file?
    I have posted my code below. I have allocated 10 duke dollars for the person solves who this? Thank You!!!!
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import com.sun.image.codec.jpeg.*;
    import java.io.*;
    import java.awt.image.BufferedImage;
    public class Test2 extends JApplet {
    public void init() {
    //Initialize drawing colors
    setBackground(Color.white);
    setForeground(Color.black);
    public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    Dimension d = getSize();
    int gridWidth = d.width / 6;
    int gridHeight = d.height / 2;
    // fill Rectangle2D.Double (red)
    g2.setPaint(Color.red);
    g2.fill(new Rectangle2D.Double(100, 100, 100, 100));
    g2.setPaint(Color.black);
    g2.drawString("My Rectangle", 125, 85);
    public static void main(String s[]) {
    JFrame f = new JFrame("Test2");
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    JApplet applet = new Test2();
    f.getContentPane().add("Center", applet);
    applet.init();
    f.pack();
    f.setSize(new Dimension(400,300));
    f.show();
    saveAsJPEG(applet, 1.0F, "myJPEG.jpg");
         public static void saveAsJPEG(Component component, float quality, String filename)     {
              try          {
                   Dimension d = component.getSize();
                   BufferedImage bimage = new BufferedImage(d.width, d.height, BufferedImage.TYPE_INT_RGB);
                   component.paint(bimage.createGraphics());
                   Graphics2D g = (Graphics2D)bimage.getGraphics();
                   g.setPaint(Color.white);
                   if(!filename.endsWith(".jpg"))
                        filename += ".jpg";
                   OutputStream out = new FileOutputStream(filename);
                   JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
                   // Create JPEG encoder
                   JPEGEncodeParam jpegParams = encoder.getDefaultJPEGEncodeParam(bimage);
                   jpegParams.setQuality(quality, false);
                   // Set quality to (quality*100)% for JPEG
                   encoder.setJPEGEncodeParam(jpegParams);
                   encoder.encode(bimage);
                   // Encode image to JPEG and send to browser
                   out.close();
              catch (Exception e)          {
                   System.out.println(e);
    }

    I've added 2 lines to your paint, it works now.
    public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    Dimension d = getSize();
    int gridWidth = d.width / 6;
    int gridHeight = d.height / 2;
    // make a white background
    g2.setPaint(Color.white);
    g2.fill(new Rectangle2D.Double(0, 0, d.width, d.height));
    // fill Rectangle2D.Double (red)
    g2.setPaint(Color.red);
    g2.fill(new Rectangle2D.Double(100, 100, 100, 100));
    g2.setPaint(Color.black);
    g2.drawString("My Rectangle", 125, 85);
    }

  • Uploading video/image files from mobile

    Hello
    I need to develop wap website that will allow to upload video and image files from cellphone to server.
    The question is what is the best java technology to be used for this case if i am interested in website-like and not application-like solution?
    Thanks And best regards
    Oifa Yulian

    Hi,
    Thanks for responding.
    I tried using the X-SUP-APPCID, but this time in device logs it initially shows as uploading and once the complete data is sent I get the response code as 401 and in response headers I get 401 Unauthorized and it goes into my error function of File Transfer.
    The headers which i am passing :
    uploadCreate has my APPCID.
    var headers = {
      "X-Requested-With" : "XMLHttpRequest",
      "Content-Type" : "application/atom+xml",
      "DataServiceVersion" : "2.0",
      "Accept" : "application/atom+xml,application/xml,application/atomsvc+xml",
      "X-CSRF-Token" : "Fetch",
      "X-SUP-DOMAIN" : "LntOdDomain",
      "X-SUP-APPCID" : uploadCreate
    params.username = uid123;
    params.password = pwd123;
    params.headers = headers;

  • Question about image preview in client side before upload the image file to server

    Hi everyone:
    My project has an image upload function. Currently it only display a fileupload component, after user press OK, the file will upload to server, but there's no preview before user press OK.
    I want it can show the preview, I know that I can upload the file to a temporary directory on server then show that image to client, but in this way will cause strain on server. Is there any other ways to preview the image? Like using JavaScript? Thankyou.

    Stuck with BMP

  • Uploading an image file from client to a db column

    hi,
    I need help with the subject above,
    I downloaded the webUtil package but I don't know
    how to configure it & use it..
    I'm not a professional developer, I'm a student and this is for my graduation project
    and I need help fast my project is due med may ..
    I'm using oracle 10g DBMS and Developer
    Thanks

    Check these steps :
    1. Download the following three folders (zip files) needed for Webutil configuration from the Internet to any Windows machine:
    Webutil_demo.zip: URL: http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    Click on link: WebUtil Demo
    webutil_106.zip: URL: http://www.oracle.com/technology/software/products/forms/index.html
    Click on link: Oracle Forms 10g WebUtil
    jacob_18.zip: URL: http://www.oracle.com/technology/products/forms/htdocs/webutil/readme.html
    Click on link: http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip.
    2. Extract the 3 zip files to have the folders (jacob_18, webutil_106 and Webutil_demo) in your windows machine.
    3. Transfer the following files from your windows machine (from the 3 folders) to the Linux machine as below:
    a)
    - File: frmwebutil.jar
    - From folder: webutil_106\webutil_106\java
    - To: $ORACLE_HOME/forms/java
    - Transfer mode: must be Binary
    b)
    - File: jacob.jar
    - From folder: jacob_18
    - To: $ORACLE_HOME/forms/java
    - Transfer mode: must be Binary
    c)
    - File: d2kwut60.dll, JNIsharedstubs.dll
    - From folder: webutil_106\webutil_106\webutil
    - To: $ORACLE_HOME/forms/webutil
    - Transfer mode: must be Binary
    d)
    - File: jacob.dll
    - From folder: jacob_18
    - To: $ORACLE_HOME/forms/webutil
    - Transfer mode: must be Binary
    e)
    - File: forms_base_ie.js, forms_ie.js
    - From folder: webutil_106\webutil_106\java
    - To: $ORACLE_HOME/forms/java
    - Transfer mode: must be Binary
    f)
    - File: webutil.olb, webutil.pll and create_webutil_db.sql
    - From folder: webutil_106\webutil_106
    - To: $ORACLE_HOME/forms
    - Transfer mode: must be Binary
    g)
    - File: WU_TEST_106.fmb
    - From folder: Webutil_demo\Webutil_demo
    - To: $ORACLE_HOME/forms
    - Transfer mode: must be Binary
    h)
    - File: webutilbase.htm, webutiljini.htm, webutiljpi.htm and webutil.cfg
    - From folder: webutil_106\webutil_106\server
    - To: $ORACLE_HOME/forms/server
    - Transfer mode: must be TEXT/ASCI
    i)
    - File: sign_webutil.sh
    - From folder: webutil_106\webutil_106\webutil
    - To: $ORACLE_HOME/forms/webutil
    - Transfer mode: must be TEXT/ASCI

  • How to save uploaded image file to Apache Web Server from Tomcat

    Hi guys,
    Perhaps this is not an appropriate topic to ask under this forum but I really don't know where should I post my question. Hope you understand.
    Ok, I need to know if my web application is running in Tomcat5 and user uploading some image file where I need to save these image files to the other server, which is running Apache Web Server. Should I ftp to there or other better method ?
    Anyone got a better idea on doing this kind of process pls advice. Many Thanks !
    regards,
    Mark

    if your Apache server is running in the same computer and if your servlet have write access to the folder in apache under which you want to save the file you can just write the file there but you will have to address concurrency issues.
    Otherwise you will have to do ftp but since apache does not have abuilt in frp server you will need a seperate FTP server for this

  • Different between upload an image and a XML file??

    To uploading an image file then to database, i use the following function:
    " .getLoader().setOrdHttpUploadFile "
    but if I want to upload an XML file, is it work?? If not, how can I do??

    Hi,
    You mention the getLoader() method: are you using BC4J? If so, then you have to write the code yourself. BC4J is integrated with the interMedia database object types, and knows how to handle upload requests to these types. If you want to write a simple BLOB or CLOB column, then you can do so, but you have to write the code. See my reply to your other post below.
    Simon
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>
    Hi,
    When you say: 'i find the class of "intermedia" that it is just use to
    upload image, audio, or video file.', are you referring to interMedia
    Java Classes for Servlets and JSP? If so, you can use these classes to
    upload any document to a BLOB column. Simply select the column from
    the database (using FOR UPDATE), call the OrdHttpUploadFile.loadLob(
    BLOB blob ) method to write the data to the BLOB, then update the BLOB
    column in the database. To write an uploaded document to any other
    data type, such as a CLOB, you would need to read the data from the
    InputStream returned by the OrdHttpUploadFile.getInputStream() method,
    then write it to the data type using whatever mechanism is
    appropriate, taking in to account such things as character set
    conversion.
    Hope that helps,
    Simon
    <HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • Lion server as advanced gateway

    Hello, first of all, I want apologize for mistakes in language. Today I've installed Lion server at work. This is our first time of using Mac as network server. We need this server for several tasks: - file sharing - web server with different hosts (

  • I cant figure out how to change my security questions

    i cant find out where to change my security questions

  • Dates changing

    I recently set up Elements 12. Prior to this I used elements 11. In that catalog I have more photos that I don't want. So I decided to export the ones I want then import into PSE 12. As I do this many of the dates on the pictures change from the date

  • Diagnostics(How to view the log files)

    Hi All, In weblogic 9.2MP3, In the console navigate through the following , Diagnostics->log files->server logs. Click on customize this table. Select logging as custom. My question is what should be the Start Time and End Time format when logging se

  • Jstack - error occurred during stack walking

    Trying to use jstack to debug a deadlock on Solaris 8, using jdk/jre 1.5.0-08, I get the following error on stderr: $ sudo -u apache jstack 17453 > stack Attaching to process ID 17453, please wait... Debugger attached successfully. Client compiler de