security excetion : sealing violation ....while using XSLT
Ajit Kanada
Ranch Hand
Joined: Jan 23, 2001
Posts: 95
posted
0
Hi I m using jdk1.2.2 and jaxp1.1 While running the code i get security exception sealing violation I m unable to find the clues even on java web site.. here is my code.. import javax.xml.parsers.*; import org.xml.sax.*; import java.io.*; import org.w3c.dom.*; import javax.xml.transform.dom.*; import javax.xml.transform.*; import javax.xml.transform.stream.*; public class ParseWSDL { static Document document; public static void main(String args[]) { DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
try { DocumentBuilder builder = factory.newDocumentBuilder(); document = builder.parse(new File("ajit.xml")); Element e=document.getDocumentElement(); System.out.println("element..."+e.toString()); TransformerFactory trf=TransformerFactory.newInstance(); Transformer transformer= trf.newTransformer(); DOMSource source= new DOMSource(document); //Transform tree to xml File newxml = new File("newxml.xml"); //FileInputStream os = new FileInputStream (newxml); StreamResult result = new StreamResult(newxml); transformer.transform(source,result);
}catch(Exception e){System.out.println("Exception is : "+e);} }//main }//ParseWSDL
can somebody help... i m not finding the reason Thanx in advance Ajit
Thankx
Ajit
Rosalinde Casalini
Greenhorn
Joined: Jul 13, 2001
Posts: 5
posted
0
HI, I had that same error once, it was actually caused because there was more than one DOM implementation on my classpath. I had XML4j before JAXP. I took XML4j out of my classpath and the error went away. I hope this helps. Rosalinde
Ajit Kanada
Ranch Hand
Joined: Jan 23, 2001
Posts: 95
posted
0
Thanx rose The problem was with classpath only..I removed unwanted classpath.. Tnanx again Ajit