Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my XML:

<?xml version="1.0"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:h="http://java.sun.com/jsf/html">
  <ui:define name="title">
    <h:outputText value="some text"/>
  </ui:define>
</ui:composition>

This is what SAXParser from Xerces is saying:

Cannot find the declaration of element 'ui:composition'

What am I doing wrong?

share|improve this question
1  
WHat version of xerces? This should work just fine. – bmargulies Apr 10 '11 at 19:03

3 Answers

up vote 1 down vote accepted

Maybe you have XML Schema validation turned on, and the parser doesn't know where to find the XSD for the namespace?

What does the code look to parse the XML?

share|improve this answer

did you configure the saxparser to be namespace aware? (that is usually disabled by default). (you configured this on the SAXParserFactory before creating the SAXParser).

share|improve this answer

I predict that the real error message looks like:

SAXParseException:cvc - elt.1: Cannot find the declaration of element ...

and that would indicate that you turned on schema validation without enough schema.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.