___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user
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
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
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
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
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
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
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