How get the metadata with intermedia?

Hi all,
In my application I record Microsoft Word documents into a blob column, but before record this file I need to verify the version of Microsoft Word who created this file.
Anyone can help me with this?
Tks,
Everson

interMedia can extract metadata from supported Image, Audio and Video files, but not from text documents such as Microsoft Word documents. See the Oracle Multimedia Reference (version 11g) or Oracle interMedia Reference (version 10g) for a list of supported formats.

Similar Messages

  • How do I get the metadata for a page to show up when I Google search?

    When I search for my website on Google, the description that shows up is the actual content of the page. I had it set previously to where the metadata for the home page would show up in the description. But now I edited the information in the metadata and that no longer shows up. I dont think I changed any other settings...what do I have to do in order to get the metadata to show up? Please help, thank you! (I tried attaching screen shots to this post but it wasnt responding...)

    X423424X wrote:
    So if you have a folder with, say, 30 files inside it, the icon for the folder shows 30 tiny icons as the icon for that enclosing folder?  Doesn't seem too useful to me considering how small those icons would be.
    I usually set a folder view with two to four large icons. The ability to see inside the folder makes it a breeze for cataloging and retrieving images, especially when I dont remember the date I photographed them.
    I bought the Mac for graphics but this thumbnail interface is what makes Explorer so beautiful to work with. It appears from what I've read that the only way to have Finder compete with this as a catalogue tool is to actually hand create an individual thumbnail for each folder on the Mac. Does anyone know if this is painfully true and if so, is there a third party software known or does anyone out there actually know the secret to displaying folder contents on a Mac? Thanks.

  • I purchased an ablum thru itunes on my phone and it says i purchased the songs on itunes but when i go on my music it says i have to repurchase all the songs how can i get the songs with out havin to pay again

    I purchased an ablum thru itunes on my phone and it says i purchased the songs on itunes but when i go on my music it says i have to repurchase all the songs how can i get the songs with out havin to pay again

    Whether you can redownload music depends upon what country that you in. If you are using your computer's iTunes then does music show in the Purchased link under Quicklinks on the right-hand side of the iTunes store home page (on your phone you might be able to redownload media via the Purchased tab in the iTunes store app) ? If music shows there, but not that album, then check to see if it's hidden : http://support.apple.com/kb/HT4919
    If you aren't in a country when you can redownload music and it's still on your phone then you should be able to copy it over from the phone via File > Devices > Transfer Purchases.

  • How to get the metadata in Designer?

    In Acrobat, I can get the metadata by "this.metadata".
    The Designer's Help  said: use "xfa.form.desc" to instead of "this.metadata".
    The "desc" has a method "metadata(Integer para)" to return the metadata's info.
    I use the code "xfa.form.desc.metadata(0)" in designer.
    But alert the error "GeneralError :Operation failed".
    Who can tell me how  to get the metadata in Designer?
    Thanks.

    Thank you,radzmar.
    I use the "xfa.host.messageBox(""+xfa.event.target.metadata);" in a button's clickEvent.
    But the error is same.
    My target is:
    Now,I have a blank PDF create by Designer.
    Only one button in this PDF.
    When I click the button,then show the metadate'info for me.
    My code is:
    try{
    var tDesc=xfa.form.desc;
        xfa.host.messageBox(""+tDesc.metadata(0),"",3);
    }catch(e){
    xfa.host.messageBox(""+e);
    But it is incorrect;
    I want to get a simple about get metadata info.
    the metadata info like:
    <rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about="">
             <xmp:MetadataDate>2010-11-18T07:37:45Z</xmp:MetadataDate>
             <xmp:CreatorTool>Adobe LiveCycle Designer ES 9.0</xmp:CreatorTool>
             <xmp:ModifyDate>2010-11-18T13:14:40+08:00</xmp:ModifyDate>
             <xmp:CreateDate>2010-11-18T11:25:05+08:00</xmp:CreateDate>
          </rdf:Description>
          <rdf:Description xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about="">
             <pdf:Producer>Adobe LiveCycle Designer ES 9.0</pdf:Producer>
          </rdf:Description>

  • I have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending

    i have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending the mail.
    Also the mail is acting very funny by not getting the rules work in a proper method.  Is ther a software to repair mail.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • How can I get the variable with the value from Thread Run method?

    We want to access a variable from the run method of a Thread externally in a class or in a method. Even though I make the variable as public /public static, I could get the value till the end of the run method only. After that scope of the variable gets lost resulting to null value in the called method/class..
    How can I get the variable with the value?
    This is sample code:
    public class SampleSynchronisation
         public static void main(String df[])
    sampleThread sathr= new sampleThread();
    sathr.start();
    System.out.println("This is the value from the run method "+sathr.x);
    // I should get Inside the run method::: But I get only Inside
    class sampleThread extends Thread
         public String x="Inside";
         public void run()
              x+="the run method";
    NB: if i write the variable in to a file I am able to read it from external method. This I dont want to do

    We want to access a variable from the run method of a
    Thread externally in a class or in a method. I presume you mean a member variable of the thread class and not a local variable inside the run() method.
    Even
    though I make the variable as public /public static, I
    could get the value till the end of the run method
    only. After that scope of the variable gets lost
    resulting to null value in the called method/class..
    I find it easier to implement the Runnable interface rather than extending a thread. This allows your class to extend another class (ie if you extend thread you can't extend something else, but if you implement Runnable you have the ability to inherit from something). Here's how I would write it:
    public class SampleSynchronisation
      public static void main(String[] args)
        SampleSynchronisation app = new SampleSynchronisation();
      public SampleSynchronisation()
        MyRunnable runner = new MyRunnable();
        new Thread(runner).start();
        // yield this thread so other thread gets a chance to start
        Thread.yield();
        System.out.println("runner's X = " + runner.getX());
      class MyRunnable implements Runnable
        String X = null;
        // this method called from the controlling thread
        public synchronized String getX()
          return X;
        public void run()
          System.out.println("Inside MyRunnable");
          X = "MyRunnable's data";
      } // end class MyRunnable
    } // end class SampleSynchronisation>
    public class SampleSynchronisation
    public static void main(String df[])
    sampleThread sathr= new sampleThread();
    sathr.start();
    System.out.println("This is the value from the run
    method "+sathr.x);
    // I should get Inside the run method::: But I get
    only Inside
    class sampleThread extends Thread
    public String x="Inside";
    public void run()
    x+="the run method";
    NB: if i write the variable in to a file I am able to
    read it from external method. This I dont want to do

  • How can I get the variable with the value from Thread's run method

    We want to access a variable from the run method of a Thread externally in a class or in a method. Even though I make the variable as public /public static, I could get the value till the end of the run method only. After that scope of the variable gets lost resulting to null value in the called method/class..
    How can I get the variable with the value?
    This is sample code:
    public class SampleSynchronisation
         public static void main(String df[])
    sampleThread sathr= new sampleThread();
    sathr.start();
    System.out.println("This is the value from the run method "+sathr.x);
    /* I should get:
    Inside the run method
    But I get only:
    Inside*/
    class sampleThread extends Thread
         public String x="Inside";
         public void run()
              x+="the run method";
    NB: if i write the variable in to a file I am able to read it from external method. This I dont want to do

    Your main thread continues to run after the sathr thread is completed, consequently the output is done before the sathr thread has modified the string. You need to make the main thread pause, this will allow sathr time to run to the point where it will modify the string and then you can print it out. Another way would be to lock the object using a synchronized block to stop the main thread accessing the string until the sathr has finished with it.

  • How to get the itunes with those 3 colored buttons on top left corner ????ner ???

    Please help [humble request] ----
    I have 3 problems can u please help me out --
    1) How to get the itunes with the 3 colored buttons (i'm new to apple ,just 8 days so i dont know much stuff) on top left corner ,i've downloaded thrice from apple's site directly i everytime got the same sort of itunes with 'File' ,'Edit' ,'View' ,'Controls' ,'Store' ,'Adanced' ,'Help' on the top ,and also whenever i open the itunes store (in this itunes) only the app store opens ,now music albums ,movies ,tv shows nothing !!
    2) I dont know how to import video files from the computer to itunes
    3)i bought an app [fifa 11] ,n downloaded another 1 [contract killer] {ive deleted them and downloaded them thrice ,and they dont sync to my itouch it shows error (0xE800004C)
    Please please please help me im getting worried and frustrated
    please help me out with this

    but illaass
    i asked 2 of my frnds both of them have windows n not mac ,both of them are sayin dat they have the coloured buttons one , and i asked them dat how to access the itunes music store they said that when they kliked d itunes store option in the left side a screen appears where 6 -7 categories are there which are music store ,app store ,podcasts ,movies ,tv shows etc . bt when i open it it only shows d app store ,and on the bar only 4 options are ther the home icon , app store , podcasts and itunes u ,and when i klik movies ,tv shows on the left side ,there is an option "browse for movies in the itunes store" i klik it and only the app store opens and nothing else .
    and thanks now i know how to import videos
    and sigma 1337 ,
    ive downloaded the apps 4 -5 times now , still d same error mssg it comes like dis :-
    " Some of the apps in your iTunes library were not installed on the ipod "Shomik's ipod" because one or more errors occurred "
    please help me  im gettin frustrated

  • HT2513 how do you get the sidebar with three months of just calendar to turn on-is this feature gone?

    how do you get the sidebar with 3 months of calendars on the left?  Is this feature gone?

    Im sorry but I figured it out now. I hate when you figure something out right after you do something extreme like signup for a profile here and post a question. Well to those who want the answer all in one shot there are 2 solutions for me.
    1. Make sure Safari is updated completely. You can check by clicking SAFARI> ABOUT SAFARI
    Safari 5.0.5 gave me this problem but the new update is 5.1.2
    2.Glims - Free ad on for Safari which enables you to view you window in COMPLETE full screen at all times, as well as maximise your window to fill all empty space (makes so you dont have to worry about accidentally clicking on your desktop which I do all the time lol). You can use this option once Glims is installed simply by clicking on
    SAFARI> Full Screen
    or
    SAFARI> Maximise Window Size
    By doing Full Screen mode you can then click on the full screen capability on the website you are on

  • How to get the table with no. of records after filter in webdynpro

    Dear Gurus,
    How to get the table with no. of records after filter in webdynpro?
    Thanks in advance.
    Sankar

    Hello Sankar,
    Please explain your requirement clearly so that we can help you easily.
    To get the table records from your context node use method get_static_attributes_table()
    data lo_nd_mynode       type ref to if_wd_context_node. 
    data lt_atrributes_table  type wd_this->elements_mynode. 
    lo_nd_mynode = wd_context->get_child_node( name = wd_this->wdctx_mynode ). 
    lo_nd_mynode->get_static_attributes_table( importing table = lt_atrributes_table ). 
    Note: You should have already defined your context node as a Dictionary Structure.
    BR,
    RAM

  • How do i get the "open with" option back for pdfs after accidentally hitting the save option which now automatically saves any pdf?

    Normally when I click on a pdf I would get an option to "Open With" or Save. I usually just opened pdfs first. I accidentally clicked on the Save option in this dialog box and now when I click on any pdf it automatically asks me where I want to save it. I want to get the "open With" option back, because I don't necessarily want to save a copy of every pdf.

    Mountain Lion was released in 2012, so I suppose there might be advice in old threads or on the Apple forums if you don't get a response here right away.

  • Getting the metadata of procedures defined inside packages...

    Dear All,
    i want to extract the metadata for procedures and functions in my db.
    i am using the DBMS_METADATA.GET_DDL(ObjectType,ObjectName) to get the metadata of certain objects (PROCEDURES,FUNCTIONS and PACKAGE_BODY)
    however this method is not quiet usefull when my target is to get the metadata for a single procedure/function defined inside package's body', where i dont need
    the whole package body to be returned only the specific Procedure/ Function defined in it...
    it seems that the Package Body is defined as one object regardless of how many Procedures / Functions are defined in it...
    isnt there any place/repository that stores the procedures and functions defined inside a package body along with their metadata explicitly one bye one , so i can
    extract them and search them one bye one...
    Thank you
    Basem Sayej...

    The whole point about defining procedures inside package bodies is that they are private. They are only exposed to those who have the necessary privileges to view the body's source code.
    Cheers, APC
    blog: http://radiofreetooting.blogspot.com

  • Seven of my albums from iPhoto 9.5.1 are no longer visible. The photos are still in iPhoto - is there a way to get the metadata back?

    Seven of my albums from iPhoto 9.5.1 are no longer visible. The photos are still visible in iPhoto, but the albums are completely gone (another 10  albums are still visible). The missing albums are visible in iPhoto Library Manager (I downloaded the free version and when it loaded the library the missing albums were visible)
    About 6 months ago 4 different albums disappeared and I assumed my kids had accidentally deleted them; however, they haven't been allowed to touch the computer since then, so I can't blame them this time! Last time I lost albums I spent hours re-creating them but I am hoping that there is an easier way of getting the metadata to function again - I know I could create a new library with iphoto Library Manager but I would have to buy the full version and can't afford to do that.
    Not sure if it has anything to do with updating the application? (I updated recently and I'm not sure exactly when the albums disappeared.

    Use the rebuild function in iPhoto Library Manager. That does not require a purchase. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.

  • DO NOT Get The Service With This Company IF You Want to Receive a Good Customer Service

    It is really a pain, dissatisfaction, and a lot more when you have Verizon as your service provider. I have been having service for my cellphones with Verizon for over 3 years, and did not have any major problems, so when I moved to my new place I thought it’s better to get the Fios, and have one bill for my all Verizon services. I went online and started to order my products online. During ordering, the chat session opened and I started chatting with the Customer Service Rep in order to get help through the process. When we were in the step that I could order the home phone plan, I saw the International World Plan, and I asked the lady to give me some information about this plan. I asked her that I want to call to my country and I mentioned my country’s name to her as well. I asked her that if this service is available for my country, and she said “Yes” you can call to over 100 countries with this service and she encouraged me to get the 300 minutes service. Since the plan sounded good to me I decided to get the 500 minutes instead of 300 min, and after I ordered my plan, I started calling overseas, and happy that I am paying less than the Phone cards with this plan. On March 26 I received my bill, and saw that Verizon charged me 142 $ for the less than 200 minutes that I called to my country, and there was a Letter “N” in front of each phone calls. I checked the guide to see what does “N” mean, and I saw that it said N means “Denoted calls are NOT listed in World Plan”. Well, thanks to the lady who gave me the wrong information while I was ordering my plan online, but she or the Verizon company is not that much lucky because I printed my chat session the day I ordered my plan since I wanted to have the information of what I actually had ordered. That time I did not think that I may get in trouble like this. Since March 27th, I have been calling Verizon every other day, and I have explained my issue to more than 10 Customer Service Reps, and each of them asked me to fax my chat session to them. I have been faxing that to all the numbers that they gave me, and I am keep faxing them, but do not get any respond. One of the Verizon’s Supervisors, whose name is Mark, called twice on my home phone number during the daytime, around 3 pm, and he left massages. On his second massage, he said that he checked the plan and my country is not listed in the International World Plan. He just said this, and he said that he was going to call me back, but never happened. He also did not leave me any phone number that I could call back. Also, since my cellphones are listed in the same bill as my other products, he could easily see the other numbers that he could call and reach me, but he did not bother himself to do so. I have even changed my home voice mail greeting addressing to Verizon, and left my cellphone number in voice mail greeting. I am so sorry that I have to say this, but this seems a definite fraud to me. I did not know about this plan, and I asked the Customer Service Rep to help me. She was responsible to check my country, or at least let me know how I could find out about the coverage. This is ridiculous, and if Verizon cannot take over this problem, my lawyer will take the action over, and takes the issue to their corporate court. I am not going to give up about this, and I decide to give Verizon about a week or so to solve this issue, but I won’t wait more than that. Just a friendly advice to people who want to get the home service through Verizon: DO NOT Get The Service With This Company IF You Want to Receive a Good Customer Service. There is nothing about taking care of customer in this company, and you are going to be stuck with what you get.      

    Mahsa21,
    We are glad that we were able to resolve the international calling plan issue for you.  If you need assistance,please  reach out to us.
    thanks,
    Tonya D.

  • XML cannot fully get all metadata with "getItemRequest"

    Hi All,
    My client is using GroupWise 7.0.3.
    We want to get the dropdown list custom field data of document, but the XML file cannot fully record all corresponding custom field data by using "getItemRequest".
    For example:
    GroupWise Client - Document 1 :
    Dropdown list custom field 1: aaa
    Sub dropdown list custom field 1-1 of custom field 1: aab
    Sub dropdown list custom field 1-2 of custom field 1: aac
    Dropdown list custom field 2: bbb
    Sub dropdown list custom field 2-1 of custom field 2: bbc
    Sub dropdown list custom field 2-2 of custom field 2: bbd
    Sub dropdown list custom field 2-3 of custom field 2: (Empty data)
    XML recording - Document 1:
    <custom type="String">
    <field>custom field 1</field>
    <value>aaa</value>
    </custom>
    <custom type="String">
    <field>custom field 1-1</field>
    <value>aab</value>
    </custom>
    <custom type="String">
    <field>custom field 2-1</field>
    <value>bbc</value>
    </custom>
    <custom type="Numeric">
    <field>custom field 2-3</field>
    <value>0</value>
    </custom>
    In my program, i just call "getItemRequest" and export the response to XML
    Code:
    WebReference.getItemRequest req = new WebReference.getItemRequest();
    WebReference.getItemResponse resp;
    string outPath = @"c:\GW\"
    string FileName = filename.toString();
    req.id = doc.ID;
    req.view = "View";
    resp = ws.getItemRequest(req);
    if (0 == resp.status.code)
    if (null != resp.item)
    ObjectToXml(resp, outPath + FileName + ".xml");
    Am i missing something or step?
    Or what i need to do?
    Could anyone to give me some suggestion?
    Thank you very much.
    Jimmy

    Hi Preston,
    But client doesn't update GW, therefore we will find another ways.
    However, thank you for your advice.
    Jimmy
    Originally Posted by Preston Stephenson
    Sorry, there is no support for 7.0.x.
    The only place you will get support (with some exceptions) is GW 2012.
    (There will be some changes made to 8.0.x, but this would not qualify.)
    You can try GW 2012.
    There is little support for Document Management in the SOAP API.
    When you try GW 2012 and you still have a problem, let me know.
    Preston
    >>>
    Hi All,
    My client is using GroupWise 7.0.3.
    We want to get the dropdown list custom field data of document, but the
    XML file cannot fully record all corresponding custom field data by
    using "getItemRequest".
    For example:
    GroupWise Client - Document 1 :
    Dropdown list custom field 1: aaa
    Sub dropdown list custom field 1-1 of custom field 1: aab
    Sub dropdown list custom field 1-2 of custom field 1: aac
    Dropdown list custom field 2: bbb
    Sub dropdown list custom field 2-1 of custom field 2: bbc
    Sub dropdown list custom field 2-2 of custom field 2: bbd
    Sub dropdown list custom field 2-3 of custom field 2: (Empty data)
    XML recording - Document 1:
    <custom type="String">
    <field>custom field 1</field>
    <value>aaa</value>
    </custom>
    <custom type="String">
    <field>custom field 1-1</field>
    <value>aab</value>
    </custom>
    <custom type="String">
    <field>custom field 2-1</field>
    <value>bbc</value>
    </custom>
    <custom type="Numeric">
    <field>custom field 2-3</field>
    <value>0</value>
    </custom>
    In my program, i just call "getItemRequest" and export the response to
    XML
    Code:
    WebReference.getItemRequest req = new WebReference.getItemRequest();
    WebReference.getItemResponse resp;
    string outPath = @"c:\GW\"
    string FileName = filename.toString();
    req.id = doc.ID;
    req.view = "View";
    resp = ws.getItemRequest(req);
    if (0 == resp.status.code)
    if (null != resp.item)
    ObjectToXml(resp, outPath + FileName + ".xml");
    Am i missing something or step?
    Or what i need to do?
    Could anyone to give me some suggestion?
    Thank you very much.
    Jimmy
    jimmyng25
    jimmyng25's Profile: View Profile: jimmyng25 - Novell Forums
    View this thread: XML cannot fully get all metadata with "getItemRequest"

Maybe you are looking for