[ANN] Struts 2.0.11.2 General Availability Release with Important Security Fix

2008-07-15 Thread Rene Gielen
Apache Struts 2.0.11.2 is now available from . This release is a fast track security fix release, including a security fixed version 2.0.5 of XWork, which corrects a serious vulnerability in ParametersInterceptor allowing malicious users to remote

Re: struts menu problem

2008-07-15 Thread nauke .
Hi, Thanks for replying. It occurs in firefox too. the customer for this will predominantly use IE so will have to get it working for IE in the end anyway :( :( :( On Wed, Jul 16, 2008 at 4:04 PM, Lukasz Lenart <[EMAIL PROTECTED]> wrote: > Try with other browser than IE, it looks like a common p

Re: struts menu problem

2008-07-15 Thread Lukasz Lenart
Try with other browser than IE, it looks like a common problem in IE with layering. Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Submit a struts form using javascript

2008-07-15 Thread Lukasz Lenart
> I am trying to submit two forms at once. Khe? As I know, it isn't possible. If you send them to the same action, just use one form for all the fields. If you send them to separated actions (different action attribute), you have to made two request at the same time, but there isn't something like

Re: struts2 jsp s:set question

2008-07-15 Thread Lukasz Lenart
> In struts1.x, there is tag like "bean:define". Anything like in struts2? The problem is in OGNL, which is using ValueStack, it's totally separated from common request objects. I don't understand why you want to access variable in <% %> ? It's is good for constants and not for logic. As I show yo

Re: an issue with my Action class - help me

2008-07-15 Thread Narayana S
Thanks Dave and Lukasz, i got the concept, and solved the issue. Thank you very much. On Tue, Jul 15, 2008 at 4:47 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- On Tue, 7/15/08, Narayana S <[EMAIL PROTECTED]> wrote: > > I am new to struts 2. my page is having a list which > >

Re: Struts tags ID generation

2008-07-15 Thread Wes Wannemacher
Sure, specify your own id attribute... -Wes On Wed, 2008-07-16 at 15:45 +1000, Phan Le wrote: > Thanks for the response Wes, I do use maven to build. > Is there anyway that I can force struts NOT to auto-generate IDs for > me? any properties? > Thanks > > > On 16/07/2008, at 3:15 PM, Wes Wann

Re: Struts tags ID generation

2008-07-15 Thread Phan Le
Thanks for the response Wes, I do use maven to build. Is there anyway that I can force struts NOT to auto-generate IDs for me? any properties? Thanks On 16/07/2008, at 3:15 PM, Wes Wannemacher wrote: Struts 2 will create an id for you when using it's built-in tags. I've never seen it quite

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Chris Pratt
The Struts 2 Tag Libraries are completely written around OGNL and FreeMarker, which makes it hard to remove either of those technologies from the stack. I have written some tags, not based on the Struts 2 component support, that safely allow both JSTL and OGNL EL's and don't rely on FreeMarker. T

RE: struts2 file (how to define files of type)

2008-07-15 Thread Nicole Luneburg
oh bummer that sucks :( I just read that comment from the link you sent me: "Current browsers generally ignore the ACCEPT attribute." Grrr Thanks for showing me that, I won't give up just yet so fingers crossed! Maybe there's a workaround hehe! Nicole -Original Message- From: Wes Wanne

Re: struts2 file (how to define files of type)

2008-07-15 Thread Wes Wannemacher
I could be wrong, but I don't think there is a reliable method to accomplish what you're looking for... http://htmlhelp.com/reference/html40/forms/input.html#file Although it looks like it's part of the spec, I think browsers ignore attempts at setting "accept" On Wed, 2008-07-16 at 14:06 +09

Re: Struts tags ID generation

2008-07-15 Thread Wes Wannemacher
Struts 2 will create an id for you when using it's built-in tags. I've never seen it quite as long as yours... Perhaps you built from a maven archetype and might have passed in some parameters wrong? When you leave it up to struts, it will generate unique ids and it will work w/o intervention. It

Re: 'include' struts.xml stuff is broken?

2008-07-15 Thread Wes Wannemacher
When you use an include, the entire included document is parsed and added to the configuration. This means that the included document must work as if it were a stand-alone configuration file. You'll have to not only create well-formed struts xml files, but package configuration as well. If you're g

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Oleg Mikheev
Chris Pratt wrote: I proposed a method of enabling JSTL EL safely a while ago, but I haven't heard anything (or had any time to actually do anything about it myself). But if they had to get rid of one of two ELs why did they decide to keep OGNL? Isn't JSTL more popular and more standard? Oleg

struts2 file (how to define files of type)

2008-07-15 Thread Nicole Luneburg
Hi all, Got another prob that I've also been trying to fix for a while ... I have a file upload tag like: I want to be able to specify what types of files are shown in the File Upload dialogue's "Files of type" field. Right now it just says "All Files". I want to limit this to say *.csv files.

Struts tags ID generation

2008-07-15 Thread Phan Le
Hi there, I am new to this mailing list and currently experiencing strange behavior when rendering ids for HTML elements. I have something like this in my HTML code class="fieldWrap" id="wwctrl_com.mycompany.profile:profile-app:war: 0.0.1-SNAPSHOT"> I didn't specify any id in my tag Any

Re: struts menu problem

2008-07-15 Thread nauke .
Hi, I don't suppose anyone knows why this issue is occurring ... ? Thanks On Mon, Jul 14, 2008 at 4:30 PM, nauke. <[EMAIL PROTECTED]> wrote: > Hi! > > I'm using struts version 2.0.11. > I am using struts menu, which works provided it is not on top of a table > ... > Please see screenshot of iss

'include' struts.xml stuff is broken?

2008-07-15 Thread Dave Belfer-Shevett
This seems like it should work, but I'm getting all sorts of hassles, and the documentation page for this, naturally, provides no examples of what the include file should look like. My struts.xml has... http://struts.apache.org/dtds/struts-2.0.dtd";>

RE: Problem from defining JavaBean as an attribute inside ActionForm

2008-07-15 Thread Chandramouli P
Its working now. Thank you very much for the replies. The problem was that the naming convention (it was like sStreet, sCity and the getter/setters were getStreet, getCity etc.)of my attributes and I did not initialize the inside bean in the ActionForm. Thanks & Regards, Chandra. > To: use

Re: Submit a struts form using javascript

2008-07-15 Thread Dave Newton
--- On Tue, 7/15/08, rapsy <[EMAIL PROTECTED]> wrote: > I am trying to submit two forms at once. Is that even possible? I guess I don't really see how that would work. Not sure why you'd try to do that in the first place, but you'd probably have better luck (a) using a single form, or (b) copyi

Re: Submit a struts form using javascript

2008-07-15 Thread rapsy
I am trying to submit two forms at once. The first form is being submitted by "onclick" event which calls javascript form.submit() and the second form is submitted by submit button itself when it is clicked. The first form submission is failing i.e when I try to retrieve the values of the first

Re: DateTimePicker

2008-07-15 Thread nauke .
Hi Pablo, This works for me ... I hope it helps. At the top of my JSP page I have this: Then for the actual datepicker I have: My problems with it that I'm just living with are: 1) When I visit the JSP page, if the myDate value is not already populated, an exception is thrown in my logs (no

Re: ActionSupport.input()-- what's it for?

2008-07-15 Thread Dave Newton
--- On Tue, 7/15/08, Brad A Cupit <[EMAIL PROTECTED]> wrote: > Anybody know what the input() method on ActionSupport is for? > > It doesn't seem to be defined by any interfaces. I was > hoping that it was called whenever there was a validation > error, but that doesn't seem to be the case. It's

ActionSupport.input()-- what's it for?

2008-07-15 Thread Brad A Cupit
Hi, Anybody know what the input() method on ActionSupport is for? It doesn't seem to be defined by any interfaces. I was hoping that it was called whenever there was a validation error, but that doesn't seem to be the case. Here's the method definition: public String input() throws Exception {

Re: about iterating values

2008-07-15 Thread Laurie Harper
hns wrote: HI Thanks for reply but session is appropriate for large size map stored in it? it can works fine? It certainly *can* work. Whether the session is the best place to keep this data depends on the size of the list, how much it varies (if at all) between users, how often it changes,

Re: struts2 jsp s:set question

2008-07-15 Thread Harden ZHU
Ok, Thanks, In struts1.x, there is tag like "bean:define". Anything like in struts2? On Tue, Jul 15, 2008 at 1:18 PM, Lukasz Lenart <[EMAIL PROTECTED]> wrote: > Try > > <% Company cmp = request.getAttribute("company"); %> > <%= cmp.formatName("aa") %> > > but this is ugly ;-( > > Better solution

Re: struts2 jsp s:set question

2008-07-15 Thread Lukasz Lenart
Try <% Company cmp = request.getAttribute("company"); %> <%= cmp.formatName("aa") %> but this is ugly ;-( Better solution is to develop some custom tag. Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [

View State

2008-07-15 Thread Francisco Spaeth
Hello... Is there any way to create a view state like ASP.Net does to retain action properties and load them before execute action methods? I do it with serialization but it is a little bit a manual work :). Thanks in advance. Francisco Spaeth

Re: struts2 jsp s:set question

2008-07-15 Thread Harden ZHU
So Is there anyway that I can expose the OGNL variable to jsp and have direct access like <%=company.formartName("aa")%>? Thanks. On Tue, Jul 15, 2008 at 1:23 AM, Lukasz Lenart <[EMAIL PROTECTED]> wrote: > Hi, > > s:set tag [1] put variable in given OGNL scope, try to use > scope=request or you

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread Ian Roughley
I can't remember the framework used now (customer code), but it was displaying dynamically generated code. The random property is not your problem - s2 is reporting the problem, but should be continuing execution (have you debugged/logged to check this?). If you want to stop the error message

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread prashanth2
I see the error on my console, my app never got halt. Struts Two wrote: > > What was meant is: > Does you applicaiton functionsas expected despite the exception you see on > ur console or the exception brings your application (or some > functionality) to a halt. > > - Original Message

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread prashanth2
I tried removing the height and width attributes as URL parameters, but the problem is JQuery internally uses a variable 'random', so s2 complains ParametersInterceptor exception. Great to hear tht u have a working sample, could u pl tell me, was that u were displaying dynamic content or static co

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread Ian Roughley
I've used lightbox successfully without problem. If this is the error message it looks like you are passing the height and width attributes as URL params and they are being applied against the action (hence the error). I bet (I don't have the code anymore) these are instead meant to be passed

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread Struts Two
What was meant is: Does you applicaiton functionsas expected despite the exception you see on ur console or the exception brings your application (or some functionality) to a halt. - Original Message From: prashanth2 <[EMAIL PROTECTED]> To: user@struts.apache.org Sent: Tuesday, July 15,

Re: Validator plugin error

2008-07-15 Thread danipruebas
OMG, this is an EPIC FAIL : ) Yes, i have saved and referenced it in WEB-INF. Best regards, - Original Message - From: "Lukasz Lenart" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, July 15, 2008 7:23 PM Subject: Re: Validator plugin error As I remember, there is

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread prashanth2
I dont understand what u asked, anyways iam getting the below exception, and thickbox/lightbox never opened for me. Jul 2, 2008 3:39:54 PM com.opensymphony.xwork2.interceptor.ParametersInterceptor setParameters SEVERE: ParametersInterceptor - [setParameters]: Unexpected Exception caught setting

Re: Struts2 application doesn't work with Firefox 3

2008-07-15 Thread thogau
Thanks for the link Dave, I can't test it right now but at least I have something to show to my customers. Frankly, I don't really get the 'why' it's not working and I don't get eather why it's not failing in 100% of requests... I simply hope the concerned folks will fix this so as I don't have to

Re: Validator plugin error

2008-07-15 Thread Lukasz Lenart
As I remember, there is a bug with this, out dtd to WEB-INF and add reference to it http://www.developerdotstar.com/community/node/472 Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Validator plugin error

2008-07-15 Thread danipruebas
Hi again, After updating all the dependencies and changing the DTD for the validation.xml and validation-rules.xml: http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd";;> I get the following warning: file cannot be validated as the host "jakarta.apache.org" is currently unreachable I s

Re: Javascript validation error

2008-07-15 Thread Lukasz Lenart
It should be rendered just before your validations, it's called Static JavaScript [1], check if you has it. [1] http://struts.apache.org/1.3.8/struts-taglib/tagreference.html#html:javascript Regards -- Lukasz http://www.lenart.org.pl/ --

Re: Submit a struts form using javascript

2008-07-15 Thread Lukasz Lenart
> I am using struts 1.1 and having problem submitting first form from inside > the second form. > What happens when the first form is submitted from the second form using > javascript? Does it call the 'execute" method of first form? I don't understand exactly what you mean, when you talk about "i

Submit a struts form using javascript

2008-07-15 Thread rapsy
I am using struts 1.1 and having problem submitting first form from inside the second form. What happens when the first form is submitted from the second form using javascript? Does it call the 'execute" method of first form? For example: Here is the code: In the above code, "firstForm" is

Re: Controlling GET variables

2008-07-15 Thread Tom Frost
That's what I needed! Thank you :) Tom Lukasz Lenart wrote: > > Hi, > > I'm not sure what you want to achieve, but maybe you should take a > look at s:url tag [1], you can define parameters as you want. > > [1] http://struts.apache.org/2.1.2/docs/url.html > > > Regards > -- > Lukasz > ht

Javascript validation error

2008-07-15 Thread Dimitris Mouchritsas
Hi all, I'm trying to use javascript validation with validator, as well as server side validation. Server side validation works just great. But when I try to use client side validation I get a validateRequired not found error. This is my jsp: and this is the result produced f

Re: Validator plugin error

2008-07-15 Thread Lukasz Lenart
> 15-jul-2008 15:06:33 org.apache.commons.digester.Digester fatalError > GRAVE: Parse Fatal Error at line -1 column -1: Premature end of file. > org.xml.sax.SAXParseException: Premature end of file. You should also change dtd headers for validator-rules.xml and validations.xml to reflect new commo

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread Dave Newton
DOES IT ACTUALLY NOT WORK OR DOES IT JUST LOG THE EXCEPTION<< --- On Tue, 7/15/08, prashanth2 <[EMAIL PROTECTED]> wrote: > From: prashanth2 <[EMAIL PROTECTED]> > Subject: Re: Struts2 and Jquery problem with LightBox or thickbox > To: user@struts.apache.org > Date: Tuesday, July 15, 2008, 9:17 A

Re: Struts2 and Jquery problem with LightBox or thickbox

2008-07-15 Thread prashanth2
CAN SOMEBODY HELP ME, HOW CAN I CREATE A LIGHT OR THICK BOX>> prashanth2 wrote: > > I tried to implement thickbox functionality in a jsp ,to display iframe in > a thickbox. If I use a simple a href using a jsp,thickbox works fine, but > if i use s:url with *.action as the url ,and if i pass heig

Re: Validator plugin error

2008-07-15 Thread Dave Newton
--- On Tue, 7/15/08, Dani <[EMAIL PROTECTED]> wrote: > Should I update the depencies of commons-validator 1.3.1. > as shown in this link? Well yes; you can't just update a library and assume that it will work without its dependencies. Dave --

Re: Validator plugin error

2008-07-15 Thread Dani
Lukasz Lenart escribió: Check this http://issues.apache.org/struts/browse/STR-2862?focusedCommentId=37312#action_37312 Maybe either you have duplicated commons-validator.jar or in wrong version? Regards I have updated commons-validator.jar to latest version 1.3.1 replacing the jar file in

Re: S2: web.xml servlet/filter-mappings

2008-07-15 Thread Alberto A. Flores
Also, please remember that the order of the in web.xml is VERY important. Don Brown wrote: Could you post more information? Struts should only be responding to URI's that contain configured extensions via the struts.action.extension setting, which defaults to "action". Don On Tue, Jul 15, 2

Re: Struts 2 Ajax DEBUG: widget ID collision on ID: xxx Problem!?

2008-07-15 Thread netslow
I have the same problem. And, as I think, it causes the following error: "WARNING: Parameters: Invalid chunk ignored". I have a lot of files, and I won't post them for now. Any ideas? Noob2k8 wrote: > > Hi, > > ive got a small problem with a simple Ajax example. > > My whole app is too big s

Re: DateTimePicker

2008-07-15 Thread ManiKanta G
I would suggest Struts2JSCalendar plug-in, which has lot of features,which is working fine for me. http://code.google.com/p/struts2jscalendarplugin/ Regards, ManiKanta Pablo Vázquez Blázquez wrote: Hello, I have several problems with DateTimePicker widget used for selecting times (type="time

DateTimePicker

2008-07-15 Thread Pablo Vázquez Blázquez
Hello, I have several problems with DateTimePicker widget used for selecting times (type="time") a) If no time is in the text input, I can´t write (without using the widget) any. I can use the widget, but I also would like to be able to write it by myself. b) If a time value is in the inp

Re: Validator plugin error

2008-07-15 Thread Lukasz Lenart
Check this http://issues.apache.org/struts/browse/STR-2862?focusedCommentId=37312#action_37312 Maybe either you have duplicated commons-validator.jar or in wrong version? Regards -- Lukasz http://www.lenart.org.pl/ - To unsub

Re: Validator plugin error

2008-07-15 Thread Dani
Lukasz Lenart escribió: Hi, Try to comment such entry for Validator plugin and check again, do you have any logs from your container? Maybe the problem is elsewhere? Regards The validator-rules.xml & validations.xml are located under the correct path /WEB-INF/, as specified in the struts

Re: an issue with my Action class - help me

2008-07-15 Thread Dave Newton
--- On Tue, 7/15/08, Narayana S <[EMAIL PROTECTED]> wrote: > I am new to struts 2. my page is having a list which > is dynamically generated by action, so while calling > the jsp page itself from a menu, I am calling URL > "/mymodule1/EditEmployee.action", which is mapped to > EditEmplyeeAction.

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Jeromy Evans
Oleg Mikheev wrote: Hi And, where can I find the changes between Struts 2 and 2.1? http://cwiki.apache.org/S2WIKI/troubleshooting-guide-migrating-from-struts-20x-to-21x.html Release notes and migration guides are also a good start: 2.1.2: http://struts.apache.org/2.1.2/docs/version-notes-21

Re: [S2] downloadaction class

2008-07-15 Thread Riccardo Mollame
Great! It looks obvious but, as you've probably noticed, I'm a kind of Struts newbie... :-( Thanks once again.     Riccardo - Messaggio originale - Da: ManiKanta G <[EMAIL PROTECTED]> A: Struts Users Mailing List Inviato: Martedì 15 luglio 2008, 12:05:48 Oggetto: Re: [S2] downl

Re: S2: web.xml servlet/filter-mappings

2008-07-15 Thread Don Brown
Could you post more information? Struts should only be responding to URI's that contain configured extensions via the struts.action.extension setting, which defaults to "action". Don On Tue, Jul 15, 2008 at 7:01 PM, Mikkel Lindhard <[EMAIL PROTECTED]> wrote: > Hello list > > I have an web-applic

Re: an issue with my Action class - help me

2008-07-15 Thread Lukasz Lenart
Hi, I'm supposing that you have actions mapped by methods in action class (execute(), update(), etc.) If so, to disable validation for particularly methods, annotated them with @SkipValidation Regards -- Lukasz http://www.lenart.org.pl/ -

Re: [S2] downloadaction class

2008-07-15 Thread ManiKanta G
My pleasure. You can use any variable from the returning action class as with case of remaining results, as below text/csv inputStream name="contentDisposition">filename="${fileName}" 1024 true

Re: [S2] downloadaction class

2008-07-15 Thread Riccardo Mollame
Thanks pal, it's been very kind of you: but is the name of the file hardcoded in the conf file?!? I'll try something ASAP and, eventually, abuse one more time of your kindness (let's hope not!! ;-))... My best.    Riccardo - Messaggio originale - Da: ManiKanta G <[EMAIL PROTECTED]> A

an issue with my Action class - help me

2008-07-15 Thread Narayana S
Hi, I am new to struts 2. my page is having a list which is dynamically generated by action, so while calling the jsp page itself from a menu, I am calling URL "/mymodule1/EditEmployee.action", which is mapped to EditEmplyeeAction.java. first time when i am generating the page I am generat

S2: web.xml servlet/filter-mappings

2008-07-15 Thread Mikkel Lindhard
Hello list I have an web-application which use both Struts 2 and Axis 2. Before struts 2.1 i didn't have a problem using the following configuration in web-xml AxisServlet /services/* struts2 /*

Re: struts2 jsp s:set question

2008-07-15 Thread Lukasz Lenart
Hi, s:set tag [1] put variable in given OGNL scope, try to use scope=request or you can try to use [1] http://struts.apache.org/2.1.2/docs/set.html Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [EMAIL

Re: Controlling GET variables

2008-07-15 Thread Lukasz Lenart
Hi, I'm not sure what you want to achieve, but maybe you should take a look at s:url tag [1], you can define parameters as you want. [1] http://struts.apache.org/2.1.2/docs/url.html Regards -- Lukasz http://www.lenart.org.pl/ ---

Re: Extending Struts Controls - problem

2008-07-15 Thread Lukasz Lenart
Hi, Maybe this will help http://annaskawinska.blogspot.com/2008/04/extending-struts2-theme.html Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: Validator plugin error

2008-07-15 Thread Lukasz Lenart
Hi, Try to comment such entry for Validator plugin and check again, do you have any logs from your container? Maybe the problem is elsewhere? Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: [EMAIL PROTECT

Re: [S2] downloadaction class

2008-07-15 Thread ManiKanta G
Yes, it is even pretty simple in S2. You can use result of type 'stream' for that action configuration. Use a InputStream to read the content you want to provide as the download, and specify the same name in the result config, as below text/csv

Re: messages_(locale).properties

2008-07-15 Thread Lukasz Lenart
Hi, To specify custom file names for your messages, add them to struts.properties [1], just the main name, without lang suffix struts.custom.i18n.resources=messages, somemessages You should always have default messages.properties bundle, move messages_en.properties to messages.properties for exa

RE: Struts 2 Indexed Properties

2008-07-15 Thread YAQ
We're using Struts2, but I was using Struts1/JSTL tags. I've tried using Struts2 tags and it renders the same HTML anyway. I've been debugging through the code and it seems to be having a problem picking up the entry x-work conversion properties. It throws a null pointer in the log file, then ca

[S2] downloadaction class

2008-07-15 Thread Riccardo Mollame
Can anyone tell me if DownloadAction (or something simlar) is still supported in S2? Any help appreciated. Thanks. Ric Posta, news, sport, oroscopo: tutto in una sola pagina. Crea l'home page che piace a te! www.yahoo.it/latuapagina --

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Chris Pratt
I proposed a method of enabling JSTL EL safely a while ago, but I haven't heard anything (or had any time to actually do anything about it myself). As far as the documentation, there is only one set of documentation in the Wiki and it always covers the latest version, so all the documentation avai

struts2 jsp s:set question

2008-07-15 Thread Harden ZHU
Hi, I have a "Company" object as follow and setAttribute("company", company) in action. When do follow in jsp <%=company.formartName("aa")%> And company.formartName("aa") in jsp throw exception. Do I did something wrong? Thanks Here is Company.java == public class Com

Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Oleg Mikheev
Hi Are there any plans to re-enable JSTL EL in custom tags which was disabled starting from Struts 2.0.10? And, where can I find the changes between Struts 2 and 2.1? Any 2.1 documentation available yet? Thanks, Oleg - To unsu