I’ve a form with rendered as html where i place all my fields surrounded with xml tags.
The fields are computed for display and default formula is @ReplaceSubstring(@ReplaceSubstring(@ReplaceSubstring(@ReplaceSubString(@ReplaceSubString(Tag1;
“&”; “&”); “<”; “<”); “>”; “>”); “"”;“"”); “'”;
“'”)
I use an url to sent this form together with a stylesheet (page) to a servlet that creates a pdf file from the document. The problem is that when one of the fields contains a char like ë, ö, é the servlet crash on the welformness of the xml file.
Question ! How can i create above mentioned notes form that will contains only these characters that are allowed in an xml file ?
Must i make use of a DTD file ? Please an example ?