I changed the original init method to the following and am now getting a 404
error:

    public void init( ServletConfig config) throws ServletException {
        super.init( config);
        if ( config.getInitParameter( "dataFile") != null) {
            dataFile = getInitParameter( "datafile");
            loadDataFile( dataFile);
        }
    }

I guess this reaffirms that the servlet.dat file is not being found (reference
my earlier post).

Cheers!
Mark

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to