It looks like the problem is in this snippet of code:

On 4/11/07, Thomas Polliard <[EMAIL PROTECTED]> wrote:

Check if you placed pam.conf under /WEB-INF/classes/ --- I think
that's where Properties files are loaded from.

        private String pamConfigFile = "pam.conf"; // Static file for all 
modules

I think it is unable to locate the pam.conf, so it's probably throwing
File not found --- and setting pam to null as here:


        private Pam() {
                try {
                        pamProperties.load(new FileInputStream(pamConfigFile));
                } catch (IOException ioe) {
                        System.out.println("File not found");
                        this.instance = null;
                }

Or perhaps some other class is not being loaded.

-Rashmi

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to