Tagged Questions
The Java exception which encapsulates an XML parse error or warning.
6
votes
2answers
2k views
How to use SAXParseException effectively in Java
I'm validating against XMLSchema in Java, and getting SAXParseExceptions thrown when I have non-valid content models.
I'm going to be using these exceptions to highlight where the validation has ...
4
votes
1answer
1k views
Using SAX (Java) to parse multiple XML messages from a single TCP-stream
I'm in a position where I use Java to connect to a TCP port and am streamed XML documents one after another, each delimited with the <?xml start of document tag. An example which demonstrates the ...
3
votes
3answers
2k views
SaxParser on Android: Unexpected End Of Document Exception
I'm getting a "SAXParseException: Unexpected end of document" error when trying to parse an xml document on android.
The document in question is from the google weather api, but it seems to throw ...
2
votes
0answers
610 views
Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (xsi:noNamespaceSchemaLocation is not allowed), works in 1.5
Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (with xsi:noNamespaceSchemaLocation is not allowed to appear in root element), works in 1.5
I'm finding the following ...
2
votes
2answers
481 views
SAXParser fails to parse some characters
I am doing some simple SAXParsing with SAXParser etc on android/java
It can parse files properly, but hiccups when it encounters some special characters, for example if it parses this xml below:
...
2
votes
1answer
588 views
Eclipse “Creation of Element Failed”
I'm using WID 6.1, built on Eclipse 3.x.
When trying to right click a folder, New->Class, type a name for the class, then click Finish, I get the error
"Creation of element failed.
...
1
vote
0answers
76 views
SAXParseException while parsing an xml
I am trying to parse an xml using DocumentBuilder's parse method which takes URI as an argument. For this I create a String object representing the URI and then call the parse method passing the ...
1
vote
2answers
61 views
Throwing Exception problem in android
I have create an android application where i need to use login. For this i have to parse xml for login. i write the following code under login button.
loginButton.setOnClickListener(new ...
1
vote
0answers
121 views
JAXP Sax Parser Java-ME Midlet Exception from parsing a chinese character
I'm having big trouble parsing some chinese characters encoded as HTML Unicode,
embedded in XML files.
I'm using Java ME with javax.xml.parsers.SAXParser
One such character file is 词:
...
1
vote
2answers
137 views
SAXParseException returns null for getSystemId()
Why SAXParseException returns null for getSystemId()? What is System Identifier?
import java.io.StringReader;
import javax.xml.parsers.SAXParser;
import ...
1
vote
3answers
844 views
Why does this code keep triggering the SaxParseException?
This code is used to generate a XML document from its String representation. It works fine in my small unit tests, but fails in my actual xml data. The line where it triggers is Document doc = ...
1
vote
2answers
518 views
The namespace of element 'Root' must be from the schema namespace, 'http://www.w3.org/2001/XMLSchema'?
I have an xml document:
<?xml version="1.0" encoding="utf-8"?>
<Root>
<Child name="MyType" compareMode="EQ"></Child>
</Root>
And I would like to validate this xml ...
1
vote
1answer
4k views
Content is not allowed in Prolog SAXParserException
I am trying to call a web service but facing a strange behavior. we have a web-service running on my server but the code is not open to us so can not see what going on behind the wall
The owner of the ...
1
vote
1answer
175 views
Getting the line number and column number from a org.w3c.dom.Node
I know that you can get the line number and column number from a org.xml.sax.SAXParseException.
Is it possible to get the line number and column number from a org.w3c.dom.Node?
1
vote
1answer
466 views
Is it possible to catch SAXParseException in JAX-RS/JAXB webservice?
I would like to check in a JAX-RS webservice request that valid XML was included in the body. However, this code:
@PUT
@Produces(MediaType.TEXT_XML)
@Consumes(MediaType.TEXT_XML)
...
0
votes
1answer
28 views
SAXParseException when URL is non-existent
I am trying to parse an xml using DocumentBuilder's parse method which takes URI as an argument. For this I create a String object representing the URI and then call the parse method passing the ...
0
votes
1answer
176 views
SaxParseException in XSD validation does not give element name
I have an xsd file and an xml file, I am validating the xml file against the xsd file using the following code
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
...
0
votes
1answer
202 views
Properly Terminating stream for SaxParser, avoiding “unexpected end of file” exception
I am having the same problem to the one quoted here on Android.
The solution given was to use a URI rather than the inputstream.
I believe that you can use an inputStream as the API indicates but ...
0
votes
2answers
180 views
DTD Info and Related Errors when Validating (XSD Schema) — Can They Be Ignored?
So I've got a large amount of XML files. For years they've caused trouble because the people that write them do them by hand, so errors naturally occurred. It's high time we get around to validating ...
0
votes
1answer
88 views
Some Huge Basic Thing Wrong — “Cannot Find Element X”
My xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<credits>
</credits>
My schema
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema ...
0
votes
0answers
117 views
How to resolve SAXParseException Error?
Caused by: org.xml.sax.SAXParseException: Attribute "class" is required and must be specified for element type "listener".
at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown ...
0
votes
2answers
94 views
How do I turn a single word into valid xml?
I have the following code which turns a string, that I pass into the function, into a document:
DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance();
Document doc_;
void ...
0
votes
2answers
372 views
How to remove � character while parsing xml file in android
Respected All,
I have to read xml files from server and display data from all files. some data contains character '�' which gives me SAXException while parsing. I have tried to convert UTF-8 format. ...
0
votes
1answer
270 views
SAX Parse Exception
I am using JMS Messaging in my java program.
My messages are coming from IBM Main Frame and the messages are xml files.
Mainframe pushes messages that is xml files to the queue
But when the java ...
0
votes
2answers
1k views
SAXParseException when doing post with a XML file in jersey
I use jaxb in my REST application. I want to send an XML file via a web form. Then the java Class will unmarshal the InputStream.
private void unmarshal(Class<T> docClass, InputStream ...