Thanks Sandra, you are confirming my solution I just decieded for. I will pass on the needed values with a setter methode from the servlet to the bean. Thats how it's supposed to be.
Rainer > For me, you don't have to access to the ServletContext in your bean, > because the bean belongs to the Business Model. The data model has to be > independent > of the web. It can be shared by all applications (web or not). > It is the process which manipulates the bean (the Servlet) that must access > to the ServletContext. > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 09 September 2002 17:09 > To: Tomcat Users List > Subject: ServletContext in a Bean > > > Hi, > > how can I access the ServeltContext in a bean? > Could you give me sample: > > e.g. > > import javax.servlet.*; > > // something like that, but getServletConfig() is of course not known in a > normal bean. > ServletContext ctx = getServletConfig().getServletContext(); > String dbdriver = ctx.getAttribute(Constants.DBDRIVER); > > thanks for any help! > > Rainer > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
