RE: Problem while opening file in Action servlet

2003-03-19 Thread Mohan Radhakrishnan
Hi, If your problem is that you need to check if that file is there or not , then this might help if( getServlet(). getServletContext().getResourceAsStream( resource ) == null ){ logger_.debug(Not found );

Re: Problem while opening file in Action servlet

2003-03-19 Thread Laurent de Menditte
:23 PM Subject: RE: Problem while opening file in Action servlet Hi, If your problem is that you need to check if that file is there or not , then this might help if( getServlet(). getServletContext().getResourceAsStream( resource ) == null ){ logger_.debug(Not found ); } else