Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
New Developer
asha
Posts: 7
Registered: ‎08-27-2008

Exception while parsing the xml

Hi,

 

I am parsing the the xml which i have received as response inputstream after http connection.

xml format is as follows,

 

<?xml version="1.0" encoding="UTF-8"?>

<!--
Document : LoginAuthentication.xml
Created on : 2 September, 2008, 11:07 AM
Author : admin
Description:
Purpose of the document follows.
-->



<OpenPWS>
<status> true </status>
</OpenPWS>

 and the source code peace to parse is as follows,

 

                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                DocumentBuilder builder = factory.newDocumentBuilder();
                try{
                    document = builder.parse(is);//is contains the response inputstream

               }catch(Exception e){
                    notifyUser("exception in builder.parse"+e.getMessage());
                }

 

 

but i am getting the "exception in builder.parse" exception.

 

can any one tell me whats the problem here?.

Please use plain text.
Administrator
MSohm
Posts: 12,957
Registered: ‎07-09-2008
My Carrier: Bell

Re: Exception while parsing the xml

What is the information message of the exception?  You can see this by calling the toString method of the exception.
Mark Sohm
BlackBerry Development Advisor

Please refrain from posting new questions in solved threads.
Found a bug? Report it using the Issue Tracker
Please use plain text.
New Developer
asha
Posts: 7
Registered: ‎08-27-2008

Re: Exception while parsing the xml

i am getting "Processing intruction target may not be in'XML'".
Please use plain text.
New Developer
anjan
Posts: 6
Registered: ‎08-27-2008

Re: Exception while parsing the xml

try this

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); InputStream inputStream = getClass().getResourceAsStream( _xmlFileName ); Document document = builder.parse( inputStream); Element rootElement = document.getDocumentElement();

 

Please use plain text.
New Developer
asha
Posts: 7
Registered: ‎08-27-2008

Re: Exception while parsing the xml

The inputstream is coming from server as a inputstreamdata. so i want to parse it dynamically.

the above is working fine with .xml file.

Please use plain text.
New Developer
anjan
Posts: 6
Registered: ‎08-27-2008

Re: Exception while parsing the xml

Ok try this way

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); StringBuffer stringBuffer = new StringBuffer("any string like...."); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(stringBuffer.toString().getBytes("UTF-8")); Document document = builder.parse( byteArrayInputStream );

 

Please use plain text.
New Developer
asha
Posts: 7
Registered: ‎08-27-2008

Re: Exception while parsing the xml

Thanks for your reply.

 

i think the problem with xml whatever they(server) are sending .

Please use plain text.