[JBoss-user] Un subscribe

2001-07-31 Thread Alvin Yap
___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Jetty vs. Tomcat

2001-04-19 Thread Alvin Yap
Tomcat is more robust and extensible. Jetty is lightweight and fast. Alvin Jason Dillon wrote: > Does anyone have any opinions as to which contain is more robust, easier to > use and such? > > --jason > > ___ > JBoss-user mailing list > [EMAIL PROTEC

[JBoss-user] JBoss 2.1 and Catalina-NullPointerException problem

2001-03-29 Thread Alvin Yap
I have a Jboss2.1 and Tomcat 4.0 (Catalina) on Linux 6.2 using JDK1.3 Does anybody have a fix to this problem. I have this app working on Jboss2.1 and Tomcat 3.2.1 [J2EE Deployer Default] Starting module bfrs_web.war [Auto deploy] java.lang.NullPointerException [Auto deploy] at org.jboss.contr

Re: [JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Alvin Yap
In your application.xml you should have a web module context defined. ... sample.war /sample To get to the servlet http://hostname:port/sample/servlet/ServletName Alvin Joe wrote: > what context are you deploying the web app under ? > and are you type the address

[JBoss-user] JBoss 2.1 and Catalina ( Tomcat 4.0)- JDBCRealm supported??

2001-03-23 Thread Alvin Yap
I know that JBoss 2.1 now works with Tomcat 4.0(catalina). Does anybody know if JDBCRealm is supported yet??. If not, Is there any alternative to using JDBCRealm?? Alvin ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists

Re: [JBoss-user] JBoss Embedded Tomcat error

2001-03-23 Thread Alvin Yap
Check the server.xml file in /usr/local/tomcat/conf. Based on the error you added an Interceptor that it couldn't find a class for it. Normally its mispelled or the class is not one of the jar file in the /usr/local/tomcat/lib Alvin Nallakkandi Rajeevan wrote: > Hello, > > I am having problem r

Re: [JBoss-user] JDBCRealm , please help

2001-03-22 Thread Alvin Yap
I got it working over JBoss 2.1, Tomcat 3.2 and Postgres. 1)Edit the server.xml 2)Uncomment the JDBCRealm: 3)Make sure you comment any other Realm, like SimpleRealm...and so on. To avoid conflict. 4)Define security in your web.xml 5) restart JBoss Alvin joel cordonnier wrote: > Hi all, > > D

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-22 Thread Alvin Yap
I experience this problem before i went nuts with this. This usually happens when your treating an object as a specific type but that object is not the type you expected. Try checking the type first before casting it or invoking the method to that object. Alvin Brian Elliott wrote: > I can't f