Which is better? Cusome Tag or Tag Files?

Hi all,
I have a novice knowledge of using and developing both the "Custom Tags Handlers" and "Custom Tag Files".
I would like to know which one is better to facilitate many small database applications. Any issues with deployment (centrally or locally)?
I appreciate your time and views.
Thank you for reading.
Regards.

Custom tag handler:
1. it depends on the java skills.What depends on the Java skills?
2. Deployment can be done centrally.What is deployed and where is it deployed?
3. Manual compilation required.What is compiled?
Custom tag files:
1. Easy for non-java programmersWhat is easy for non-Java programmers?
2. Not clear about deployment issues. I mean whether they can be deployed centrally and can be reused over many applications. If yes, how? I am using netbeans for my web projects.What depolyment issues are you unclear about?
3. no manual compilation required.What is compiled?

Similar Messages

  • When opening the Coloursync utility and pressing the verify button, I received an error message stating that the Tag 'cprt':Text tag has an incorrect length which could not be fixed as the file is locked. Does anyone know how to rectify this?

    When opening the Coloursync utility and pressing the verify button, I received an error message (copy below) stating that the Tag 'cprt':Text tag has an incorrect length which could not be fixed as the file is locked. Does anyone know how to rectify this?
    Checking 25 profiles...
    /Library/ColorSync/Profiles/Displays/iMac-00000610-0000-9C6C-0000-000004271B00.i cc
       Tag 'cprt': Text tag has an incorrect length.
       The file is locked. Could not be fixed.

    Hi guys,
    I followed the steps to unlock the .icc file in the "getinfo" screen then went on clicking repair in colorsync utility.
    This is the message i got:
    Searching for profiles...
    Checking 17 profiles...
    /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CF3-0000-000004273CC0.icc
       Tag 'cprt': Text tag has an incorrect length. Fixed.
    Repair done - 1 profiles fixed.
    However, when i hit verify again it shows up like this:
    Searching for profiles...
    Checking 17 profiles...
    /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CF3-0000-000004273CC0.icc
       Tag 'cprt': Text tag has an incorrect length.
    Verify done - found 1 bad profile.
    ... and it keeps like this sine die.
    when i open the .icc file it shows up like this:
    3     'cprt'     'text'     35     Copyright ASCII Text String
    New to mac so I really don't know what to do.
    I didn't get this message so far. What i did before getting this message was to open a jpeg file. I wanted to edit it so when i did right click on the file i went to open with, and colorsync came as an option; so i chose it.
    Then this message started comming up.
    Is there anything i can do?
    Thabks for the support.

  • ITunes "grouping" tag - ID3 tags and file rewriting

    From Wikipedia's entry about ID3 tags:
    "ID3v2.2 and 2.3 require that the tag data precede the file. Whilst for streaming data this is absolutely required, for static data it means that the entire audio file must be updated to insert data at the front of the file. For initial tagging this incurs a large penalty as every file must be re-written."
    So what I'm wondering, essentially, is whether the "grouping" tag in iTunes is a part of the ID3 tag information, which would mean that altering this tag necessitates re-writing the entire file. I don't like the idea of this, because I'd be paranoid/anal about the possibility of introducing errors in the process. However, I'd love to use the "grouping" tag for creating smart playlists. So does anyone have any more information about this tag? Thanks.

    iTunes uses the TPE2 frame tag for grouping. This is also known as the 'Band/Orchestra/Accompaniment' frame which is included in the list you linked to. This isn't a guess - I've been playing about with dnuos and querying id3 tags in mp3 files. I can confirm it is a id3v2 frame.
    As to having to re-write the entire file. Yes this is likely but the id3v2 standard also covers padding which can be used to avoid a complete re-write in these situations. Whether or not this happens in the case of iTunes I couldn't tell you.
    As far as worring about quality or reliability when performing this... If a player (in this case iTunes) can't even write some tags you probably need to be worrying about using it full stop. Damage could also happen if the storage device itself is dying but again you don't want to be using it full stop.

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • ITunes not picking up on tags from AAC files ripped using Toast 9

    I am trying to rip CD's into AAC files using Toast 9. When I import them into iTunes, they have next to no tags - only artist, album, and song title. I don't know if the problem is with iTunes or Toast 9 at this point. Is there a way I can see all the tags on a file outside of iTunes? Has anyone else had this problem? Of the discussion topic, but does anyone know how to make Toast 9 write the tags?

    Good question. I feel that Toast provides a better rip, at least that's what my ears tell me. It's looking more and more like I'll have to use iTunes, despite haiving bought Toast 9 just for ripping. As a guy just switching from PC I'm getting kinda frustrated with a lack of options. I have to say, Easy Media Creator works a lot better and more intuitively than Toast.

  • Automatically Tagged the PDF files Created from Templates

    I have some PDF templates which have texts, fields, table, or lines in it. They are made accessible by tagging manually and creating special reading order when press tab through the pages.
    After run a program which uses Adobe FdfApp and FdfDoc object to add data in the fields of the templates and save as an fdf file, then use CAcroAVDoc / CAcroPDDoc object convert fdf file to a PDF file. This PDF file will keep special reading order when press tab through the pages, but no Tag. (Tagged PDF: is No).
    Is there a way can keep the tag of PDF templates, after run FdfApp? If not, how automatically to create the PDF file tag or import tag from its template?

    No, the process of importing an FDF into a PDF does not maintain any tagging.

  • [svn:fx-trunk] 5067: In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files

    Revision: 5067
    Author: [email protected]
    Date: 2009-02-25 08:21:22 -0800 (Wed, 25 Feb 2009)
    Log Message:
    In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemComboBox.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemDataGrid.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemEnumerationMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemHistoryButton.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemList.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemSizeDisplayMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemTree.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/FlexHTMLLoader.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/IWindow.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/StatusBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/TitleBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/AIREvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FileEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeMenuEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeWindowBoundsEvent .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/WindowExistenceEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/NativeDragManagerImpl.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/ApplicationTitleBarBack groundSkin.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/StatusBarBackgroundSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowBackground.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowCloseButtonSkin.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMaximizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMinimizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowRestoreButtonSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumeration.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumerationMode.as

    I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
    It's similar to this problem.
    http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
    Does anyone have a solution or at least a way to debug this?

  • Can I Rename Tags Across all Files in a Book?

    Hi all,
    I have a question about FrameMaker 8 to which I cannot find an answer.
    Can I rename a Paragraph Tag across all files in a book? For example, I have a Paragraph Tag in each of my chapters named "SysResponse" that I want to rename to "System Response". I know that I can do this by going into each file and renaming the tag manually. However, I'm curious to know if I can do this once and apply it across all files so that the "SysResponse" tag renames to "System Response" automatically wherever it occurs.
    If this is possible, it would save so much time; I need to rename several tags (Paragraph, Character, and Table) in preparation for a template transition/clean up. I'd even be willing to do it in an alternate way, such as doing a find and replace in a .MIF file, if this is what I need to do.
    Thanks in advance for any advice!
    Chris

    Chris:
    After backing up your files lest there be a disaster:
    1. At the file level, rename one instance then use Edit > Copy Special > Paragraph Format to put the new paragraph style on the clipboard.
    2. At the book level, in Edit > Find/Change choose Paragraph Tag in the list of Find choices then type the name of the new paragraph style.
    3. In the Change list, choose By Pasting.
    Note, too, that Silicon Prairies Paragraph Tools provides a cost-effective way to perform value-added operations on a book's Paragraph tags...
    Cheers & hope this helps,
    Riley

  • Itunes ignores tags on media files

    How does iTunes 12 handle tagging? For some reason iTunes re-tagged all my song files before I upgraded to 12, seemingly reverting to the original tags, but leaving my amended tags in the actual media files. I ditched the .ils file, but again, when  iTunes rebuilt library it ignored the tags on the files. Any ideas?

    Did you select tracks that iTunes does not play?
    also says it is for iTunes 4.1 rather than v10
    Actually it states, " iTunes 4.1 or better".
    iTunes 10 is better (more recent) than iTunes 4.1 and it works fine.

  • Problem in drawing line in script tag of mxml file

    hai i am new in flex .i was trying to draw line in mxml(using mxml ) and did it.
    then i try this in actionscript by making as file and shape class object again did it
    but
    when i put that specific function in <fx:script> tag of mxml file and call it by mouseover method it is not drawing a line.i am sure that on mouse over function was called .but dont know why line is nort draw here.
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[
            import flash.display.Shape;
            var s:Shape = new Shape();
            public function myMain():void
                // Launch your application by right clicking within this class and select: Deubg As > FDT SWF Application
            so.text="button is cliked";
            s.graphics.lineStyle(3, 0x00FF00,.5);       
            s.graphics.lineTo(200, 200);
            this.addChild(s);
            so.text="button is cliked";
            ]]>
        </fx:Script>
        <mx:Label alpha=".3" id="so" mouseOver="myMain()" text="Button"/>
    </s:Application>
    Can anyone tell me where i am going wrong.

    It's a good idea to run you code in the debugger because you will be notified of runtime exceptions that the release version of the Flash Player will not show you. Here's the runtime error I got when running your example:
    Error: addChild() is not available in this class. Instead, use addElement() or modify the skin, if you have one.
         atspark.components.supportClasses::SkinnableComponent/addChild()[frameworks\projects\ spark\src\spark\components\supportClasses\SkinnableComponent.as:1118]
         at myMain()[b.mxml:19]
         at __so_mouseOver()[b.mxml:27]
    The problem with your app is it is calling addChild(), which is not supported on s:Application. You need to call addElement() instead. addElement() only takes an object of type IVisualElement so you need to make your shape a UIComponent.  Try this:
                import mx.core.UIComponent;
                private var s:UIComponent = new UIComponent();
                public function myMain():void
                    // Launch your application by right clicking within this class and select: Deubg As > FDT SWF Application
                    so.text="button is cliked";
                    s.graphics.lineStyle(3, 0x00FF00,.5);
                    s.graphics.lineTo(200, 200);
                    this.addElement(s);
                    so.text="button is cliked";
    -Darrell

  • PSE4 - Add tags to the files themselves?

    Is it possible to have PSE take the tags that I've used for a particular photo and add those tags to the image file?
    I am thinking about switching to another photo organizer program and dread having to re-tag 5,000+ photos.
    Any advise would be greatly appreciated!

    Robert....
    There is a command in the Organiser under File > Write Tag Info to Files. This will do as it's name suggests with the exception of RAW images. The only draw back is that this will also change the DATETIME field to the date when you issue the command. If your other Organiser uses this as the date and time the image was created it will be wrong.
    Out of interest which Organiser are you thinking of switching to?
    Colin

  • Missing ID3 Tags on Song Files

    I have a obscure problem with iTunes that has me very frustrated. I selected my entire music library, then right click -> get info -> check boxes for artist, genre, album, etc and then hit okay. I thought this would look for missing tag information in songs and fill in the blanks, but instead it erased the tag information for all the songs in my library.
    Luckily, my hard drive was spared. When I open up the C: drive and look at my music folder, nothing has changed. All of the mp3 files are still tagged with the correct information. The only problem is that when I try to access songs from iTunes they appear to have no such tag information.
    I have tried fixing this by deleting everything from iTunes and then adding it all back, but this didn't help. Reinstalling iTunes and a full Windows system restore didn't help either.
    The result of this is that I'm afraid to sync my iPod with my computer until this is all resolved. Any insight into the problem would be greatly appreciated. Thanks.

    Ooops. You just created a lot of work by erasing the tag info.
    I think there are some scripts out there that can fill in ID3 tags based on file names.
    This page is from an apple discussions regular poster:
    http://samsoft.org.uk/iTunes/scripts.asp
    You could try the "TagFromFilename" script.
    For future, itunes does not have the ability to update tag info like Windows Media Player does. I suppose you could see what WMP will do, before trying that script.
    Since I haven't used either one to do this, I can't say how well either works.

  • How do you force itunes comments to ID3 tags in MP3 files?

    I have comments all throughout itunes. The mp3 files do not have those comments in the ID3 info.
    How do you force itunes comments to write out to ID3 tags in MP3 files?
    The folder and files all have write permission.

    Yeah, don't do that, you probably also degrade the sound quality... If you've confirmed it is something odd with multiple tags try this.
    Select a group of mp3 files (You might want to start with a smart playlist so you don't mess with any other format)
    Right-click and use Convert ID3 Tags > None (may need to repeat this step if multiple tags)
    Then right-click and use Convert ID3 Tags > v2.3 (v2.4 support still patchy from various accounts)
    Downside is that it will lose any embedded artwork, but it should preserve all other meta-data, both tag-based and stored within the library itself.
    In fact, if you use my CreateFolderArt script before and after updating the tags it should archive any artwork as a local Folder.jpg image for each album and then reinsert that image on the subsequent run... Check it out on a single album first. If it doesn't work as expected let me know and I'll tweak the script to achieve this end.
    tt2

  • HTML tag input type="file"

    hello!
    i used the html tag <input type="file" name="fp"> to have a browse File in my html Page and succesfully gets the file,path and directory when i used fp.value on my windows but when i Load the Html file in Linux
    i only get the filename (excluding the Path)
    can someone tell how to get through this any solution ?
    nid yur help badly!
    Gud day!
    p.s. i used a javascript to get the pf.value.

    Here is a solution:
    Post your question on a relevant forum. These forums are for Java. Java is not Javascript. Javascript is not Java.

  • Which is better? store files in the database or directly on the O.S.?

    Hi,
    i´m developing an application to manager files. which is better? store files in the database or directly on the O.S.? If i decide to store on database, i will use the BLOB data type but i have a doubt...the BLOB data type occupies the same space on database regardless of file size? there is another data type better?
    Tks,
    Fernando.

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1011065100346196442
    Ask Tom has a bit of info to share on the topic. Have a read of this. :)

  • Which is better ASM or file system storage

    Hi all, I need a urgent help from all u gr8 DBAs.
    I have to give justification to my client that which is better to use between file based option ASM and why??
    So can anyone give me some write up in this line?

    Ok, how about this
    Today's large databases demand minimal scheduled downtime, and DBAs are often required to manage multiple databases with an increasing number of database files. Automatic Storage Management lets you be more productive by making some manual storage management tasks obsolete.
    The Oracle Database provides a simplified management interface for storage resources. Automatic Storage Management eliminates the need for manual I/O performance tuning. It simplifies storage to a set of disk groups and provides redundancy options to enable a high level of protection. Automatic Storage Management facilitates non-intrusive storage allocations and provides automatic rebalancing. It spreads database files across all available storage to optimize performance and resource utilization. It also saves time by automating manual storage tasks, which thereby increases their ability to manage more and larger databases with increased efficiency. Different versions of the database can interoperate with different versions of Automatic Storage Management. That is, any combination of release 10.1.x.y and 10.2.x.y for either the Automatic Storage Management instance or the database instance interoperate transparently.
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14220/mgmt_db.htm

Maybe you are looking for