Re: Classloader issues?

2003-08-18 Thread Johann Uhrmann
Stefan Bodewig wrote: On Mon, 18 Aug 2003, Johann Uhrmann <[EMAIL PROTECTED]> wrote: Ant complains about not being able to load the JspC class because the class javax.servlet.ServletContext is referenced by it and cannot be found. Most probably org.apache.jasper.JspC is on your system classpath

Re: build.xml snippet used from code

2003-08-18 Thread Adam Hardy
Hi Dominique what engine are you talking about in ant? Do you mean the xml parser in ant itself and its ability to read build files? Or is there another task out there? Adam On 08/14/2003 04:36 PM Dominique Devienne wrote: I personally find JAXB both cumbersome (need to write a schema) and too

Re: Classloader issues?

2003-08-18 Thread Johann Uhrmann
Antoine Levy-Lambert wrote: As a workaround, can you put the jar files that jspC needs in the classpath before starting ant ? Antoine That might be a workaround, but it is difficult to handle. E.g. that script could not be called via the ant task by another build script. Furthermore, every develope

Re: Classloader issues?

2003-08-18 Thread Stefan Bodewig
On Mon, 18 Aug 2003, Johann Uhrmann <[EMAIL PROTECTED]> wrote: > Ant complains about not being able to load the JspC class because > the class javax.servlet.ServletContext is referenced by it and > cannot be found. Most probably org.apache.jasper.JspC is on your system classpath. In that case, th

Re: Classloader issues?

2003-08-18 Thread Antoine Levy-Lambert
As a workaround, can you put the jar files that jspC needs in the classpath before starting ant ? Antoine - Original Message - From: "Johann Uhrmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 18, 2003 11:34 AM Subject: Classloader issues? > Hello, > > I have some tr

Classloader issues?

2003-08-18 Thread Johann Uhrmann
Hello, I have some trouble in defining an additional task in the following snippet of my build.xml: Ant complains about not being able to load the JspC class because the class javax.servlet.ServletContext is referenced by it and cannot be found. Howev