You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Michael Glavassevich (JIRA)" <xe...@xml.apache.org> on 2004/11/10 23:10:24 UTC

[jira] Closed: (XERCESJ-1028) URIs in error messages are incorrect

     [ http://nagoya.apache.org/jira/browse/XERCESJ-1028?page=history ]
     
Michael Glavassevich closed XERCESJ-1028:
-----------------------------------------

    Resolution: Incomplete

Closing as requested.

> URIs in error messages are incorrect
> ------------------------------------
>
>          Key: XERCESJ-1028
>          URL: http://nagoya.apache.org/jira/browse/XERCESJ-1028
>      Project: Xerces2-J
>         Type: Bug
>   Components: Other
>     Versions: 2.6.2
>     Reporter: Jeff Suttor
>     Priority: Minor

>
> the URI provided in error messages are incorrect.
> e.g.:
> org.xml.sax.SAXParseException: http://www.w3.org/TR/xml-schema-1#cvc-datatype-valid.1.2.1?&decimal
> this message contains incorrect URI path, fragment & query values.
> it can also be argued that the URI should in the form [path][?query][#fragment]
> is this a time to re-factor the error message formatter so it is driven by:
> - spec name, version, etc.
> - rule violated
> - clause violated
> so a more accurate URI can be constructed?
> it might also be desirable to have a level of indirection between the spec name & version v. using a URI literal in the code.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-j-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-j-dev-help@xml.apache.org


Node to String

Posted by IndianAtTech <in...@gmail.com>.
Hello All,

I can know hoe to convert Document to string using following method

	   public String domToString(Document doc) {
     try {
          StringWriter sw = new StringWriter();
          OutputFormat output = new OutputFormat("text", "ISO-8859-1", true);
          output.setPreserveSpace(true);
          XMLSerializer serial = new XMLSerializer(sw, output);
          serial.serialize(doc);
          return sw.toString();
     }
     catch (IOException e) {
          e.printStackTrace();
          return null;
     }


But I would like to know the method for convering Node to String.

please help me

thanks
Sudhakar

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-j-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-j-dev-help@xml.apache.org