DvB wrote: > > I tried to run a jsp page on my testing box with mozilla and tomcat and > got errors about not being able to find javax.sql and sun.jdbc.rowset, > among others. After searching, I figured out that these packages are > part of the j2ee... or so I concluded from what I found. > > My question: is there a package (official or unofficial) for debian that > includes the above packages? I have the unofficial j2sdk1.3 and j2re1.3 > installed already.
It's fairly debatable whether these belong in an installable package; they are packages which are needed by _your_ application you are developing, not the application server itself. So probably the appropriate thing to do is to put the relevant jar files in WEB-INF/lib within your web archive (.WAR). This, of course, is also dependant on which JDK you are running; if you are using j2sdk 1.4, then javax.sql and related packages are part of the standard platform; if you are running 1.2.2 then you need to get the JDBC 2.0 Optional Package. I don't recall what package you need for 1.3. Check out: http://java.sun.com/products/jdbc/download.html Regards Tom