i use javamail api in an xsp to read mails.
i use the below statement to ignore html tags in mails.
String noHTMLString = temp.replaceAll(\"\\\\<.*?\\\\>\",\"\");
However the following error is seen...
org.apache.cocoon.ProcessingException: Failed to execute pipeline.: org.xml.sax.SAXException: Attempt to output character of integral value 65533 that is not represented in specified output encoding of ISO-8859-1.
What does this mean?