Re: XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-27 Thread Jan
I'm sorry, the reason for having all those error messages was that I forgot to put serializer-.jar and xalan-.jar into / WEB-INF/lib. Best regards Jan -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goo

Re: XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-23 Thread Jan
Hi, I made further investigations. The strange thing about this error is the fact that AccessControlException occurs for my project's src directory. The path, which the error message specifies, is even an absolute windows path. However, the resource files, which I open inside the program, are loca

Re: XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-21 Thread emurmur
This seems very similar to issue 4267. The issue is the GWT is setting a system property, overriding the default transformer factory. This causes the appengine server to get the wrong transformer factory. The exception you are getting is not exactly the same as the bug, but the circumstances are

Re: XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-21 Thread cokol
as already states by cause "Caused by: java.security.AccessControlException: access denied " you are not allowed to access the filesystem neither for read nor for write - I remember there was a workaround for this issue, like putting the resource into classpath or such, then you can get the stream

Re: XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-21 Thread lineman78
>From what I can tell it is failing while compiling the stylesheet. I would suggest taking app engine out of the loop altogether first and just so it in a static main to make sure it is compiling. If it works as a static main than it is probably the file IO. To test this I recommend to try just

XSL Transformation, AccessControlException, NoClassDefFoundError and SyntheticRepository

2010-07-21 Thread Jan
Hi, I would like to use an xsl transformation inside an HttpServlet. The code is essentially the following: File xslfile = new File("test.xsl"); TransformerFactory factory = TransformerFactory.newInstance(); factory.setAttribute( "debug", true ); Transformer transformer = factory.newTransformer(n