Advertisement

05.13.2006 at 01:46AM PDT, ID: 21849209
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.0

Problem in Xml Encryption and Decryption

Asked by mnrz in Miscellaneous Programming, Extensible HTML (XHTML)

Tags: , ,

Hi Experts

I have problem in decryption an encrypted Xml file. because my Xml file contains utf-8 characters, this problem occurs. after many proccess on Xml data the following code throws an Exception:

try {
        // Works if the content is a single child element.
       byte [] a = decbit.getBytes("UTF-8");
       ByteArrayInputStream bais2 = new ByteArrayInputStream(a);
       Document decdoc = docBuilder.parse(bais2);
       Node decNode =
                                          encDoc.importNode(decdoc.getFirstChild(), true);
       edata.getParentNode().replaceChild(decNode,edata);
}catch(org.xml.sax.SAXParseException spe) {
      //In case the content is plain text
      //or a group of child elements
      Text decText = encDoc.createTextNode(decbit);
      edata.getParentNode().replaceChild(decText,edata);
}
      decString = (getString((XmlDocument)encDoc));
--------
at the line with code "Document decdoc = docBuilder.parse(bais2); " an Exception occurs with message :
org.xml.sax.SAXParseException: Illegal character at end of document, <.

whereas when I debug the project the filed "decbit", contains correct data. any way, in order to the exception, the control move to "catch" block and create a Text Node but the problem is the replaced data is like this:

<id root="588588588" extension="" displayable="false" /><beneficiaryOf typeCode="BEN">
            <policyOrAccount classCode="COV" moodCode="EVN">
               <id xsi:type="II" root="855855855" extension="" displayable="false" />
               <author typeCode="AUT">
                  <carrierRole classCode="UNDWRT">
                     <id root="6548888888" extension="" displayable="false" />
                  </carrierRole>
               </author>
            </policyOrAccount>
         </beneficiaryOf>
---
as you can see, tha "<" characters are &lt; and the ">" characters are &gt;
this really exhausted me, please help me out.


thank you, any help will be appreciated

regards
Mohammad
   
Start Free Trial
[+][-]05.15.2006 at 05:09AM PDT, ID: 16681623

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 05:17AM PDT, ID: 16681671

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 05:43AM PDT, ID: 16681826

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 05:50AM PDT, ID: 16681872

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 06:33AM PDT, ID: 16682199

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 07:40AM PDT, ID: 16682726

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 08:07AM PDT, ID: 16683011

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 08:29AM PDT, ID: 16683187

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.15.2006 at 08:53AM PDT, ID: 16683403

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.24.2006 at 04:14AM PDT, ID: 16750054

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.06.2006 at 05:50AM PDT, ID: 16841892

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.06.2006 at 08:05AM PDT, ID: 16843098

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06.10.2006 at 11:46AM PDT, ID: 16878019

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Miscellaneous Programming, Extensible HTML (XHTML)
Tags: character, end, illegal
Sign Up Now!
Solution Provided By: ee_ai_construct
Participating Experts: 2
Solution Grade: B
 
 
 
Loading Advertisement...
20080716-EE-VQP-32