Hi!
Paul Beer schrieb:
> does anyone know why this code fails :
>
> all I want to do is output the packet .....
>
> <%@ page import="java.io.*"%>
> <%@ page import="org.w3c.dom.*"%>
> <%@ page import="org.apache.xerces.parsers.DOMParser"%>
> <%@ page import="org.xml.sax.InputSource"%>
>
> <%
> String filename = "foo.xml";
> DOMParser parser = new DOMParser(filename);
In DOM-Api there is no constructor with a string-argument.
try this:
=> DOMParser parser = new DOMParser();
>
> Document fdoc = parser.parse();
=> parser.parse(new FileInputStream(filename));
to get the document:
=> Document fdoc = parser.getDocument();
>
>
> %>
>
> the error is :
>
> D:\Java\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_xml\_Dom__IBM.java:
> 91: Wrong number of arguments in constructor.
> DOMParser parser = new DOMParser(filename);
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
I have tested this with oracle-parser, i think it should also work in your case.
Herbert Hirscher.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|