Recently I have tried IBM JDK1.3 to run my tomcat and everything seems ok.
However, when I wanted to pre-load a servlet from a package, I found that
the behavior of IBM��s JDK & Sun��s JDK are different where IBM��s only
works with <package>.<class> while Sun��s is <package>/<class>. Can anyone
advise which is correct?  

*** Cut from my web.xml ***

1)      Using Sun��s JDK

        <servlet>
                <servlet-name>
                        MyInit
                </servlet-name>
                <servlet-class>
                        Pkg/MyInit <------------------diff in here
                </servlet-class>
                <load-on-startup>
                        1
                </load-on-startup>
        </servlet>

2)      Using IBM��s JDK
<servlet>
        <servlet-name>
                MyInit
        </servlet-name>
        <servlet-class>
                Pkg.MyInit  <------------------diff in here
        </servlet-class>
        <load-on-startup>
                1
        </load-on-startup>
</servlet>

Thanks

Kenneth

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

Reply via email to