Invalid ID tags

Help - when exporting photo files (TIFFS) from Lightroom 3 in Adobe Elements (10) Organiser a message flashes on screen stating 'watched folder - invalid ID tags' the imported images then appear in Organiser as an hour glass only. I've imported 1000's of images into Organiser from Lightroom without any previous problem. Anyone got any ideas?

  I would recommend using the Lightroom Library only for exporting to the Elements editor e.g. where you want to use layers and text etc which is not possible in Lightroom.
In Organizer use File à Get Photos & Videos à From Files & Folders
 

Similar Messages

  • BUG: iTunes writes invalid id3 tags.  This is unacceptable.

    Hi there,
    I'm a developer on a large opensource media player (XBoxMediaCenter) and have recently encountered a number of completely invalid id3v2 tags written by iTunes.
    For instance, TCP and TCMP frames have been written (in the case of compilations) where these are not defined by the spec, and thus any spec-compliant tag reader should rightly fail at any such frame.
    iTunes should instead be writing TXXX tags or PRIV tags to do this.
    Furthermore, it's also writing application specific data to a COMM (comment) frame. This also should be in PRIV or TXXX tags.
    You just don't make up your own frames when there is already mechanisms in place (TXXX tags for instance) to deal with application specific data.
    The ID3 tag specification is available free to all. It would be useful if iTunes could obey it!

    While the feedback page is OK, developers such as yourself should do the following to submit a bug report:
    1. If you don't have one already, get an ADC account (http://developer.apple.com/products/). The "ADC Online" (http://connect.apple.com/) accounts are free.
    2. Submit a bug report at http://bugreport.apple.com

  • Invalid meta tag generated when using XHTML method

    Hi,
    I'm trying to generate an XHTML file using XSL and the XHTML output method. However, transformation results in adding the following XHTML-invalid meta tag (uppercase and non-closing) in the head tag:
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
    Is it a bug in the XDK or am I missing something? Transform is performed using the JXTransformer provided in 11g.
    Thanks in advance,
    Stephane
    input file:
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xml:lang='en' lang='en' xmlns='http://www.w3.org/1999/xhtml'>
    <head>
         <title>Some title</title>
    </head>
    <body></body>
    </html>
    xsl file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xhtml="http://www.w3.org/1999/xhtml">
         <xsl:output method="xhtml"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
    <xsl:template match="*">
         <xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
              <xsl:apply-templates />
         </xsl:element>
    </xsl:template>
    </xsl:stylesheet>
    output:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    *<META http-equiv="Content-Type" content="text/html; charset=UTF-8">*
    <title>Some title</title></head><body></body></html>

    For some reason when I use MapForce tool to generate my xslt mapping source, it is generating the following statement in the xsl file.
         <xsl:namespace-alias stylesheet-prefix="n" result-prefix="#default"/>
    So at the root element of XML file, it is replacing the character n with '#default' for some reason, I don;t know the purpose of this.
    As you suggested, I changed the name space, still I experienced same problem.
    It is now resolved after removing the above xsl statement from the xsl file before creating/uploading the relevant zip file into archives folder.
    It works fine now. Thanks for the clue.

  • Attribute onselect invalid for tag selectOneMenu according to TLD

    Hi All
    I am seeing the error message "Attribute onselect invalid for tag selectOneMenu according to TLD" with html_basic.tld version 1.0 even though the tag and attribute are present in the TLD. The error occurs on Windows XP in Jboss 4.0.2. I don't see the error on Linux.
    I'd appreciate any help.
    Thanks
    Murthy

    Hi Raymond
    Found that Jboss was loading html_basic.tld from an unknown jar. When I set the URI in the JSP to the TLD file placed in WEB-INF/lib, the error went away.
    Changed
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <%@ taglib prefix="h" uri="WEB-INF/lib/html_basic.tld"%>
    Wonder in which jar the TLD lies.
    Thanks for your help
    Murthy

  • Error: Attribute binding invalid for tag ganttChart according to TLD

    Hi,
    I am experimenting with writing my first custom tag and getting the stack trace:
    org.apache.jasper.JasperException: /GanttFaces.jsp(18,3) Attribute binding invalid for tag ganttChart according to TLD
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:234)
         org.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes(Validator.java:989)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:710)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1441)
    when using a binding with my custom tag:
    <jg:ganttChart binding="#{ganttFaces.ganttChart}" id="gantt1" .... >
    The error message reads as if I have to make special considerations in the TLD file to enable binding, but I can't find anything about that. Thats how my tld file looks:
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>JGantt</shortname>
    <uri>http://netronic.de/jgantt/taglibJSF</uri>
    <info>My tag library </info>
    <tag>
    <name>ganttChart</name>
    <tagclass>de.netronic.jgantt.server.jsf.JGanttChartTag</tagclass>
    <info>The chart</info>
    <attribute>
         <name>id</name>
         <required>true</required>
         <rtexprvalue>false</rtexprvalue>
    </attribute>
    </tag>
    </taglib>
    Any idea what I am missing?
    Udo

    In your TLD, I do not see any binding attribute! you ahe to define it
    <attribute>
    <name>binding</name>
    <required>false</required>
    <rtexprvalue>false</rtexprvalue>
    </attribute>
    Afterwards, you should create the setter method in your tag class: setBinding(String binding)

  • Attribute styleclass invalid for tag dataTable according to TLD

    I'm trying to use the styleclass attribute for the dataTable tag as described in Sun's "Core Java Server Faces", pg 179.
    I get the error "Attribute styleclass invalid for tag dataTable according to TLD".
    Any ideas?

    Oooops. I missed the capitalisation of "C" in styleClass.
    Works now.

  • Invalid HTML tag - Is this true? Child .chm files cannot have underscores in name?

    I’ve been having the following problem:
    file mk:@MSITStore:  … xxx.chm::/xxx.hhc contains an invalid HTML tag
    In more detail what happens:
    You click on the .chm file to open it and you get a dialog with an error message:
    The file mk:@MSITStore:E:\p4_work\1663\isentris\isentris\end-user\trunk\src\Symyx_Isentris\!SSL!\M icrosoft_HTML_Help\Symyx_Isentris.chm::/Symyx_Isentris.hhc contains an invalid HTML tag
    There is an OK button and when you click that, then the .chm file opens just fine.
    All child .chms open fine when I click on them.
    This merged help project worked fine until I upgraded from RH X5 to RH7. I hadn’t changed anything. Then I started reading the forum (RoboHelp HTML Help).
    What I’ve done so far:·         Upgraded all help projects from RH X5 to HR7.
    ·         Regenerated all .chm files, added them again to parent help project’s TOC.  Child .chm files open fine.
    ·         Regenerated a new parent .chm.
    So, I see that one of Colum's answers in another thread was to make sure that none of the child .chms had underscores in the title.
    >>>>>>>>>> !!!!!!!!   you mean that RoboHelp now does not accept underscores in .chm titles? Please don’t let it be so.
    Also, several people said that they solved the problem like this:
    ·         “You will get this message if your merged CHMs are not in a book in your merged TOC. Check that. “  You mean I have to associate a book icon with each child .chm in the parent’s TOC?
    ·         My guess is that the merged project should be placed inside a book in the main project's TOC. You'll just have to rearrange the subprojects TOCs so you don't have books inside books.
    What does “in a book” mean? See my attached jpegs. The child project’s TOC is in book form  … within the child project. However, in the parent project’s TOC, the child projects are shown with that merged symbol … kinda looks like a very angular G. Should I create books that link to destinations? Is that what I should do in the parent project’s TOC? Somehow that doesn’t look like it’s going to work – I looked at both dialogs – link and no link – neither one looked like it would work.
    Thanks so much for your help!!

    When you have a directory path in the TOC, that means that the directory structure should match. So for example:
    TOC (in parent.chm)
      !SSL!\Microsoft_HTML_Help\symyx_client.chm
      symyx_for_excel.chm
    End folder structure: (+ for folder, - for file)
    + Help
       - parent.chm
       - symyx_for_excel.chm
         + !SSL!
            + Microsoft_HTML_Help
               - symyx_client.chm
    Now if the symyx_client file shows up okay after the error message, possibly the parent chm file is smart enough to correct for the directory structure not being there, but a file with the correct name existing in the same directory as the parent.
    We've always tried to ensure out merge references don't have a path - RH has the annoying habit of requiring the chm file to be copied into the root, but we just delete it after the first build, as it shouldn't need to be there for the actual compile process. In fact, we've had problems with the chm being physically built into our parent chm, drastically increasing the file size and resulting in duplicate and outdated topics in search. We leave the file there for the first build as sometimes the merge doesn't work first go without it; I think it has to do with how it gets added to the hhp file.
    To test that our merge works, we just copy a couple of the files into the same folder  (e.g. c:\temp\test) to double-check. We need this process as our clients get different combinations of the total chm files built into our parent.
    Something else I've just thought of is maybe there is something strange happening in the actual hhc file. Do you have any topics in that TOC with characters other than a-z, 0-9 and underscore in the filename (in the topic title should be okay, but maybe some particularly odd ones might cause an issue)?
    Amber

  • MK@MSITStore  contains an invalid HTML tag

    When I compile my master help project which contains many
    merged projects I get the following message after compiling:
    The file mk:@MSITStore:C:\[path of
    project]\master.chm::/master.hhc contains an invalid HTML tag.
    I have looked at the .hhc file and it looks fine. I do not
    get this message when compiling and running any of the
    sub-projects. Any ideas?
    I am running Windows Vista and RoboHelp 7

    Hi,
    I have tried to recompile everything and readd it. I have
    tried adding the sub-projects at different levels within the book
    (as seen in a post back in September). I have tried deleting the
    .cpd and .hhc files and recreating them. Nothing works.
    I am not sure if this is a clue, but when opening the
    compiled project, I get the error message and then the main topic
    displays. The TOC entries do not work, and when right-cicking on
    the main topc in the right pane and selecting properties the
    address displays as:
    mk:@MSITStore:C:\HTML%20Help\WW1\Compiled\Master.chm::/Help_Intro.htm
    Thanks in advance for any insight!

  • Invalid revision tag

    Hello,
    I was running the example found here:
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28987/phase1.htm
    and as I got to step 3 where I type 'ant' in the developer prompt, I get the following error:
    "Invalid Revision Tag".
    The specified revision tag "$(rev)" is invalid. Valid revision tags may contain..."
    I go into \tutorials\101.HelloWorld to try and ant deploy and it returns the same error.
    BPEL server is up and running, I can view it on a browser.
    v10.1.3.1.0 on windows xp.
    I was wondering how to resolve this? I tried googling the answer but I can't seem to find it.
    Thanks for any kind assistance.

    These sounds like the build.xml is not loading the properties file where rev is defined.
    There is usually one in the projects directory where build.xml is, so you could try adding it in there but you would be better off finding out why it is not loading them from JDEV_HOME\integration\bpel\utilities\ant-orabpel.properties
    Are you sure you're running ant from a developer prompt that has setup the environment variables and not just a standard command prompt/shell?

  • Handle invalid html tag in the htmlText

    Hello,
    I"ve a <mx:text control which takes html text, it is a chat application, so, the client will simply concatinate the text comming through the network. But if the html text has invalid tags, it does not show the rest of the chat messages.
    I get something like
    <a href="http://google.com&quot;">http://google.com<a>
    here the red text is creating problems.
    P:S: you might want to say, handle it when sending from other client, but, we are dealing with legacy data, which has a lot of html format issues.

    Thanks for responding
    I understand that adding more HTML tags will change the font size. What I don't get is why it changed from one size to another by adding a HTML tag in the first place. I figured that it should have retained the same size it was without the tag when I added the tag. If I had added a font tag I would have excpected the font to change size but I added  a href.
    Sorry for the confusion.

  • Error: Attribute disabled invalid for tag commandLink according to TLD

    I have this error when I trying to compile and run in Tomcat .
    This is my *.jsp code
    <h:commandLink action="#{mainBean.showTotals}" immediate="true"
    disabled="#{selectSomething.isDisableTotalSomething}" >
    <h:outputText value="#{selectPatients.totalPatients}"/>
    </h:commandLink>
    I using NetBeans 5.5 Beta, and when I change the Application Server to Sun Java Application Sever the code work just fine.
    If someone can help me out to solve this problem using Tomcat, I will appreciate so much.
    Thanks in advance.

    Now I realize that when I'm using Sun Application server version 9 my project is working just fine, because use JSF 1.2, but the problem is with Tomcat that I did'nt get yet how to work with JSF 1.2 using tomcat, I receive so many weir messages when I trying to use tomcat.
    I put all JSF libraries in my project folder, to be independent of any application server, but still don't work with Tomcat.
    What are all mandatories files do I need in my lib folder to implement JSF 1.2 applications using Tomcat?.

  • Attribute checked invalid for tag if according to TLD

    I'm just curious. Why Tomcat is so strict that it doesn't accept this code in a jspx file:
    <label>
         <jsp:element name="input">
              <jsp:attribute name="name">sexo</jsp:attribute>
              <jsp:attribute name="type">radio</jsp:attribute>
              <jsp:attribute name="value">FALSE</jsp:attribute>
              <jsp:attribute name="tabindex">8</jsp:attribute>
              <c:if test="${sexo=='FALSE'}">
                   <jsp:attribute name="checked">checked</jsp:attribute>
              </c:if>
         </jsp:element> Femenino
    </label>But it does accept this similar one
    <label>
         <c:choose>
              <c:when test="${sexo=='FALSE'}">
                   <input name="sexo" type="radio" value="FALSE"
                        tabindex="8" checked="chequed"/>
              </c:when>
              <c:otherwise>
                   <input name="sexo" type="radio" value="FALSE"
                        tabindex="8"/>
              </c:otherwise>
         </c:choose>
         Femenino
    </label>

    ooscarr wrote:
    I'm just curious. Why Tomcat is so strict that it doesn't accept this code in a jspx file:Huh, Tomcat? What error message are you getting then? I suspect it's just an ordinary XML syntax error.
    <label>
         <c:choose>
              <c:when test="${sexo=='FALSE'}">
                   <input name="sexo" type="radio" value="FALSE"
                        tabindex="8" checked="chequed"/>
              </c:when>
              <c:otherwise>
                   <input name="sexo" type="radio" value="FALSE"
                        tabindex="8"/>
              </c:otherwise>
         </c:choose>
         Femenino
    </label>This one is easily to be replaced by<input name="sexo" type="radio" value="false" tabindex="8" ${sexo ? '' : 'checked="checked"'}/>(don't forget to change sexo type from String to Boolean)

  • Tags to be used in appraisal template

    Hi We are on EHP4, implementing Performance Management, generic version.
    I'm trying to format the text displayed in the PM document using formatting in the description field (Web Layout) inside the template.
    I have used the tags h1, h2, em, p, ul, li and strong, these works well
    But when I try something more advanced like the div tag i get an error when opening the document.
    This is the formatting from the template:
    {div style=color:#00ff00>text in a different color</div}
    < replaced by { and > replaced by }
    And this is the result in the templatre
    (Formatting removed due to invalid entries: Tag "<div>" has incomprehensible parameters : style=color:#00ff00 )
    When previeweing the template in the PHAP_CATALOG_PA transaction, the result look correct, I get the differentg color.
    My questions are: where can i see a list of tags, which can be used in this context, and if possible how should the div tag be constructed?

    webdynpro appears to use XHTML instead of HTML so the syntax is a bit more limitted and more picky.
    this link explains the difference between the two syntaxes:
    http://reference.sitepoint.com/html/html-xhtml-syntax
    you can test your tags in this validator tool
    http://validator.w3.org
    solved?  have a good week, and holidays.

  • br tag in bean value not interpreted correctly

    Hi all
    i want to display a long string which includes <br> tags. This string is saved in a bean. In my JSP page i try to diplay the string as follows:
    <bean:write name="logFileText"/>
    This works but the <br> tags are not rendered/interpreted correctly. The display String look like that:
    21/09/2004 10:01:44 [INFORMATION] [init/process] 0001 Starting ... (at line 124 in file ndl_main.cxx)<br>21/09/2004 10:01:44 [INFORMATION] [init/undefined] 0010 Start Initialization (at line 109 in file ndl_dataloader.cxx)<br>21/09/2004
    If i take a look at the page source the <br> is written there as lt;br gt . But i want to go to a new line instead of displaying the <br> tag.
    Could somebody help me with that?
    Thanks Angela

    seems it doesn't work like that:
    [ServletException in:/pages/log/listLogFile.jsp] /pages/log/listLogFile.jsp(13,4) Attribute escapeXml invalid for tag write according to TLD'

  • Problem using JSTL tag libraries with OC4J 9.0.3

    Hi
    I'm using the JSTL tag libraries with OC4J 9.0.3. I'm using JDeveloper10.1.2. I put the fmt.tld and c.tld in the WEB-INF directory and I'm adding the jstl.jar and standard.jar library to the EAR file. Both tlds have:
    <tlib-version>1.0</tlib-version>
    <jsp-version>1.2</jsp-version>
    And OC4J 9.0.3 is compatible with tlib version 1.0 and jsp version 1.2. When I run the web app I get:
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 1, <%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt"%>
    Error: oracle.xml.parser.v2.XMLParseException ( /dataSource.jsp ):
    line #:1 column #:48 : FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    line #:2 column #:18 : Attribute 'xmlns:xsi' used but not declared.
    line #:3 column #:19 : Attribute 'xmlns:acme' used but not declared.
    line #:4 column #:27 : Attribute 'xsi:schemaLocation' used but not declared.
    line #:7 column #:16 : Attribute 'version' used but not declared.
    line #:14 column #:15 : Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    line #:14 column #:15 : Element 'tag-class' used but not declared.
    line #:15 column #:18 : Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    line #:15 column #:18 : Element 'body-content' used but not declared.
    line #:16 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:18 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:18 column #:12 : Element 'type' used but not declared.
    line #:22 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:24 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:24 column #:12 : Element 'type' used but not declared.
    line #:28 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:30 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:30 column #:12 : Element 'type' used but not declared.
    line #:34 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:36 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    Any ideas?

    Hi
    Thanks for the reply.
    I tried it and I get the same error:
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 1, <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
    Error: oracle.xml.parser.v2.XMLParseException ( /dataSource.jsp ):
    line #:1 column #:48 : FIXED type Attribute value not equal to the default value 'http://java.sun.com/xml/ns/j2ee'.
    line #:2 column #:18 : Attribute 'xmlns:xsi' used but not declared.
    line #:3 column #:19 : Attribute 'xmlns:acme' used but not declared.
    line #:4 column #:27 : Attribute 'xsi:schemaLocation' used but not declared.
    line #:7 column #:16 : Attribute 'version' used but not declared.
    line #:14 column #:15 : Invalid element 'tag-class' in content of 'tag', expected elements '[tagclass]'.
    line #:14 column #:15 : Element 'tag-class' used but not declared.
    line #:15 column #:18 : Invalid element 'body-content' in content of 'tag', expected elements '[tagclass]'.
    line #:15 column #:18 : Element 'body-content' used but not declared.
    line #:16 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:18 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:18 column #:12 : Element 'type' used but not declared.
    line #:22 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:24 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:24 column #:12 : Element 'type' used but not declared.
    line #:28 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:30 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.
    line #:30 column #:12 : Element 'type' used but not declared.
    line #:34 column #:15 : Invalid element 'attribute' in content of 'tag', expected elements '[tagclass]'.
    line #:36 column #:12 : Invalid element 'type' in content of 'attribute', expected elements '[required, rtexprvalue]'.

Maybe you are looking for

  • How to set different levels of item permissions (delete one vs. delete all)

    In the help documentation I find: "Manage Content A user with the Manage Content privilege can add, edit, hide, show, share, and delete, any item, portlet, or tab on the page." I find that this is not the case. Manage content gives the user the abili

  • How to find a purchase order bapi

    Hi, can any one help how to find purchase order bapi.

  • How to add Friendly URLs in Weblogic Portal?

    Hi, We are developing a portal using Weblogic 10gR3. Right now the URL's that are getting formed are very long which includes the nfpb, nfls, pagelabel e.t.c. The requirement is to have a very user friendly url something like http://www.x.com/portal/

  • HDV file - need to burn to Blu-ray, help please

    I have a 75 minute 1080 HDV50i video file which I need to burn it to Blu-ray for a screening in the US. Can anybody suggest the best way of doing this? Do I need to convert it before burning? And what is the best way to burn to Blu-ray? I have an LG

  • Database Session IDs

    I've tried finding an answer and it seems simple enough but I was wondering if anybody could help with the following: -It might help that what I have in mind is creating a staging table that stores a session id and a couple other columns. A final pro