nested JSTL and Struts tags...

2002-11-08 Thread petra staub
How is it possible to do the following: I open a page, sending the parameter id='us'. I want now to create a form, where the id parameter is used to create an indexed input field. I can do this, if I do not use the the struts tags, similar to: I then get, what I want: Am I right, that this is

RE: Application Context Access

2002-08-26 Thread petra staub
No, currently I use no struts related taglib only "pure" JSTL. But maybe someone can simply explain me, what is actually going on... ;) if i have following mapping in web.xml action /do/* i thought that *only* url which meet this pattern are processed by the action servlet, such

Re: Application Context Access

2002-08-26 Thread petra staub
concerning my own question: so far i realized that it has to do with my mapping somehow. before i had mapped *.do to my actionservlet and then images/someimg.gif worked and now, as i switched over to use /do/ for mapping, it doesn't work anymore with images/someimg.gif and i have to use MyApp/ima

Re: BeanUtils

2002-08-26 Thread petra staub
concerning my own question: so far i realized that it has to do with my mapping somehow. before i had mapped *.do to my actionservlet and then images/someimg.gif worked and now, as i switched over to use /do/ for mapping, it doesn't work anymore with images/someimg.gif and i have to use MyApp/ima

BeanUtils

2002-08-26 Thread petra staub
hi, I know this is a struts-maillist but as the beanutils are commonly used with struts (and I didnt get any feedback in the commons-user list) I dare to ask my question here. :) i recently came over the very useful classes of the BeanUtils package. however, i have some problems... for testing,

Application Context Access

2002-08-26 Thread petra staub
I dont understand the following: I have a struts application, lets call it MyApp, which actions call jsp pages under MyApp/WEB-INF/pages. additionally, I have images stored in the root of my application (MyApp/images). Why cant I access the images in MyApp using the relative path /images? If I

logging, log4j

2002-07-16 Thread petra staub
hi, i am using for my own classes log4j for logging. unfortunately, not only my classes start producing output, but also struts classes, mostly the RequestProcessor: 3945 INFO struts.action.RequestProcessor - Processing a 'GET' for path '/home' how can I get only the logging from my classes?