Skip to content
Advertisement

Protocol error trying to parse XML response in Java

I am successfully making an API call that is a SOAP request with an account number in the body. I connected using Httpurlconnection and I am reading those results using BufferedReader:

JavaScript

Then using documentbuilderfactory to build the doc to read into the parser:

JavaScript

And then try to parse:

JavaScript

NodeList returnList = xmlDom.getElementsByTagName(“DATA”);

JavaScript

This is the error I get (which includes the output from the API request):

JavaScript

I suspect that it is that curly bracket data on the first row or missing header information but I am not sure if that is the issue or how to fix it. Thanks!

Advertisement

Answer

This response:

JavaScript

is not XML. You cannot read it with a DocumentBuilder.

That response is in a format known as JSON. You cannot use an XML parser to read it.

So, you will want to pass the response to a JSON parser, not an XML parser.

A JSON “object” is basically a dictionary (that is, a lookup table) with string keys. Your response has exactly one entry, whose key is "d". So you first need to parse the response as JSON:

JavaScript

(There are other JSON parsing libraries available. I chose the one that is part of Java EE for the above example.)

Notice that the code does not attempt to read con.getInputStream() as a string first. There is no benefit to doing that. The parser accepts an InputStream directly. Which means there is no need to use InputStreamReader, or BufferedReader, or StringBuffer.

Now that you have XML content in the xml variable, you can parse it with DocumentBuilder:

JavaScript

Side note: You should never use StringBuffer. Use StringBuilder instead. StringBuffer is a 26-year-old class that was part of Java 1.0, and it is designed for multithreaded use, which is almost never needed, and which adds a lot of overhead.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement