Howdy,

>Not sure if anyone can help me with this here, but worth a shot.

This sort of thing should be marked as [OFF-TOPIC] in the subject if
you're going to post if to the list at all.

>        public void init(ServletConfig config) throws ServletException
{

Override the init() method, the version with the config parameter,
instead of this version.

>                        xsltSource = new
>                        StreamSource(context.getResourceAsStream("/Web-
>Inf/viewStudentDetails.xsl"));//-------I think this is the problem
line, it
>is LINE 35 ----------//

Print out what getResourceAsStream() produces.  Make WEB-INF capitalized
in the argument, as this is case sensitive.

>                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

Yikes ;)  I dislike JdbcOdbc bridges but we'll leave that for now.

>                        ResultSetBuilder(rs);

Print out the result set contents just to verify them.

>xOutputter.output(doc, System.out);

Do you get any output to System.out?

>java.net.MalformedURLException
>        at java.net.URL.<init>(URL.java:613)
>        at java.net.URL.<init>(URL.java:476)
>        at java.net.URL.<init>(URL.java:425)

But the root causes was a TransformerConfigurationException it appears,
from the bottom of your output, right?

Yoav Shapira
Millennium ChemInformatics



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to