Re: [S2.1] url action mapping problem (restful)

2007-10-26 Thread Don Brown
The code has been checked into XWork, but since the upcoming Struts 2.1.0 release will depend on XWork 2.1.0 and not XWork 2.1.1 (which trunk will be when it is released next), the feature won't be available until Struts 2.1.1. Basically how it works is you define your namespace to be: @Namespace(

Re: [struts] What actually processes a JSP file?

2007-10-26 Thread Dale Newfield
I believe there are lots of ways that JSP engines work. Here's how the one in tomcat works: In my app I have a file named login.jsp. Inside $CATLINA_HOME (at work/Catalina/localhost/myapp/org/apache/jsp) it automatically creates login_jsp.java Which it then compiles to login_jsp.class Which it

Re: Struts 1.2.7 custom validator problem

2007-10-26 Thread Laurie Harper
John Doe wrote: Hi, I have Struts 1.2.7 application and I need to write custom validator for my form. I've wrote struts tutorial at http://struts.apache.org/1.2.7/userGuide/dev_validator.html and have tried to do the same. But my validator is not working. Here is my class method : public class

any struts 2 unit testers out there?

2007-10-26 Thread Session A Mwamufiya
Hi All, Would someone let me know whether it's possible to tweak something so that JUnit test code can run on an action method that calls the ActionSupport method getText() to fetch string resources from a package.properties file. As it stands, I keep getting a null exception when getText() is

Re: XML configuration and performance

2007-10-26 Thread Chris Pratt
On 10/26/07, Laurie Harper <[EMAIL PROTECTED]> wrote: > Tomás Pollak wrote: > > These files are pretty stable now, so having to pay the price to parse the > > XML every time seems unnecessary. I was wondering if there is an approach to > > configure a Struts application using code instead of XML fi

Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread Laurie Harper
That looks OK; perhaps you didn't deploy the filter class correctly? You need to go through your Tomcat logs and find out what prevented it from starting up. L. enthucoder wrote: Hi, I am testing a Servlet Filter usage. And somehow, my application doesn't even start in Tomcat 5.5. Please hel

[OT]Re: Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread sriharsha . chevuru
Okay, I thought, i missed out on that.. Here is the trace if anybody still wants to look at it : Oct 26, 2007 2:46:48 PM org.apache.catalina.core.ApplicationContext log INFO: HTMLManager: list: Listing contexts for virtual host 'localhost' Oct 26, 2007 2:46:49 PM org.apache.catalina.core.Applicat

[OT] Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread Dave Newton
--- enthucoder <[EMAIL PROTECTED]> wrote: > I am testing a Servlet Filter usage. And somehow, my > application doesn't even start in Tomcat 5.5. You should consider asking this on a general-purpose JEE programming list/news group, as this isn't Struts-related. When you do, it would make sense to

Re: ADF Faces with Struts 2 -JSf plugin

2007-10-26 Thread Laurie Harper
robin bajaj wrote: I have a fairly strong Struts 1.x background but suffered a lot in one of the recent projects because of the lack of some controls ( I didn't find using Dojo etc. that easy). I am currently working on a new project using Oracle ADF Faces and I am really very impressed by t

Re: What actually processes a JSP file?

2007-10-26 Thread Dave Newton
--- jamestastic <[EMAIL PROTECTED]> wrote: > The problem is I'm trying to integrate Struts2 into > an application which has a different servlet container > already embedded in it. What do you mean, a "different servlet container"? What Java app server are you using that doesn't process JSP files?

Re: Adding S2 into existing servlet project

2007-10-26 Thread Laurie Harper
You've configured your application to send all requests through Struts: > > struts2 > /* > It *might* be enough to move this mapping after all your existing servlet mappings. Alternatively, you'll need to pick a unique prefix (e.g. /struts/*) or use suffix mapping (e.

Re: XML configuration and performance

2007-10-26 Thread Laurie Harper
Tomás Pollak wrote: Hello all, I am currently working on a development project for a web system using Struts 1.2.9. It is a fairly large system that has been under development for more than three years now. During the code-test-and-debug cycle we are forced to restart the server several times,

Re: Invalid field value(due to type coversion) in Struts2

2007-10-26 Thread Laurie Harper
sagarlotiya wrote: Hi Problem in Struts2. I have problem when using OGNL to set the Object directly on Model. For e.g. e.g. Final html which is rendered by struts2 Dermetology Orthopedic_dept Art of Fashion MBA here i am trying to set the Object of "Department" directly

Re: Invalid field value(due to type coversion) in Struts2

2007-10-26 Thread Laurie Harper
sagarlotiya wrote: Hi Problem in Struts2. I have problem when using OGNL to set the Object directly on Model. For e.g. e.g. Final html which is rendered by struts2 Dermetology Orthopedic_dept Art of Fashion MBA here i am trying to set the Object of "Department" directly

Re: Multiselect tags

2007-10-26 Thread Laurie Harper
Stephen de Vries wrote: Are there any examples of how to write Actions for the multiselect tags such as only explains how to use the tags themselves, but not what the action or model should look like and whether any conversion is required between the two. I have already trawled through nabb

Re: Manual definet attribute in <s:textfield?

2007-10-26 Thread Laurie Harper
Igor Vlasov wrote: Hello I want to add a user defined HTML attribute to . How can I do this? if i write I rec

Re: realtime updatable list ..

2007-10-26 Thread Laurie Harper
Giovanni Azua wrote: hi all, I have at "application scope level" a list of data received as event from a system outside the Struts 2 web app. I then have my struts application with a JSP page that shows to the user the list using displaytag when the user chooses to have an overview of such li

Re: Jstl and struts

2007-10-26 Thread Laurie Harper
Zhang, Larry (L.) wrote: This might be an old topic, but should we completely rule out using struts tag and move to jstl tag? JSTL is preferred over Struts1's tags where there is overlap (mostly for the logic: taglib). For Struts 1 and 2, though, there is lots of functinoality in the taglibs

Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread enthucoder
Hi, I am testing a Servlet Filter usage. And somehow, my application doesn't even start in Tomcat 5.5. Please help me in debugging, where I am going wrong. Here is what did: SampleFilter.java package app; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class Sam

ADF Faces with Struts 2 -JSf plugin

2007-10-26 Thread robin bajaj
I have a fairly strong Struts 1.x background but suffered a lot in one of the recent projects because of the lack of some controls ( I didn't find using Dojo etc. that easy). I am currently working on a new project using Oracle ADF Faces and I am really very impressed by the out-of-the-box fun

Re: What actually processes a JSP file?

2007-10-26 Thread jamestastic
The problem is I'm trying to integrate Struts2 into an application which has a different servlet container already embedded in it. This servlet container, when it receives the forward() from the ServletDispatcherResult, looks for a servlet to handle the new request. I now see this new servlet sh

Re: What actually processes a JSP file?

2007-10-26 Thread Wes Wannemacher
On 10/26/07, jamestastic <[EMAIL PROTECTED]> wrote: > > But Tomcat doesn't directly know about ValueStacks. It seems there must be > some Struts2 component which handles this part. Not to mention all the > Struts2 helper classes for processing Struts2 markup in JSP files. You're right, tomcat do

Re: What actually processes a JSP file?

2007-10-26 Thread Chris Pratt
On 10/26/07, jamestastic <[EMAIL PROTECTED]> wrote: > > org.apache.jasper.servlet.JSPServlet looks interesting. > > Could the RequestDispatcher be invoking a JSPServlet to compile a JSP on the > fly, then populate it according to my ValueStack? > Yes, Jasper is a very common JSP Servlet (but it's

Re: What actually processes a JSP file?

2007-10-26 Thread jamestastic
org.apache.jasper.servlet.JSPServlet looks interesting. Could the RequestDispatcher be invoking a JSPServlet to compile a JSP on the fly, then populate it according to my ValueStack? jamestastic wrote: > > But Tomcat doesn't directly know about ValueStacks. It seems there must > be some Str

Re: What actually processes a JSP file?

2007-10-26 Thread Chris Pratt
The JSP is processed by your servlet container, but it delegates to the tag libraries whenever it encounters a custom tag. The OGNL Value Stack access happens (mostly) in the Struts 2 tag library. (*Chris*) On 10/26/07, jamestastic <[EMAIL PROTECTED]> wrote: > > It looks like there's a Servlet

Re: [FRIDAY] OGNL Viewer

2007-10-26 Thread stanlick
But I wanted it in 3D! Musachy Barroso wrote: > > "I would pay a couple large" > > btw where is my cash? :) > > musachy > > On 10/26/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: >> in 2.1, add debug=browser to your url (and make sure that you have the >> dojo plugin installed). By default

Re: Struts2 version 2.1

2007-10-26 Thread Jim Cushing
It's been on the main Maven repository since Tuesday: http://repo1.maven.org/maven2/org/apache/struts/struts2-core/2.0.11/ So, Maven 2 users should be able to update to it without problem. And if you're not using Maven, you should be! (Just kidding! I don't mean to start a build tool war).

Re: What actually processes a JSP file?

2007-10-26 Thread jamestastic
It looks like there's a ServletHolder which tells a servlet to process the JSP file. I just can't figure out what that servlet is. Hmm... jamestastic wrote: > > Digging down into the code, I'm trying to figure out exactly what > class(es) open a .jsp file, and populate it with values from t

Re: What actually processes a JSP file?

2007-10-26 Thread jamestastic
But Tomcat doesn't directly know about ValueStacks. It seems there must be some Struts2 component which handles this part. Not to mention all the Struts2 helper classes for processing Struts2 markup in JSP files. After my Action has completed, I've traced the ServletDispatcherResult to call dis

Re: What actually processes a JSP file?

2007-10-26 Thread Wes Wannemacher
Your app server (tomcat, WAS, etc.) compiles/serves the JSP files. The request is dispatched to the app server eventually. -W On 10/26/07, jamestastic <[EMAIL PROTECTED]> wrote: > > Digging down into the code, I'm trying to figure out exactly what class(es) > open a .jsp file, and populate it wit

Re: [Struts 2] Internationalization

2007-10-26 Thread Andriy Kharchuk
Rename narrative_fr_FR.properties to narrative_fr.properties. 2007/10/19, ChristopherAngel <[EMAIL PROTECTED]>: > > > I've developed a web app using Struts2 - I need to make it display > different > languages based on the locale of the browser but I'm having a little > difficulty getting it to w

Form based User Authentication in struts 2

2007-10-26 Thread Leena Borle
Hi, I have added "Form Based" Tomcat Authentication for my struts-2 application. It works foine if I have just the login form in my login.jspas, However I wan to add link to registration page in the same login page , e.g. ">Register If I add this line to the login.j

Re: Tutorials about "struts2 + ibatis + SQLmap"

2007-10-26 Thread Emi Lu
OK, I looked at the constructor of "org.springframework.jdbc.support.incrementer.PostgreSQLSequenceMaxValueIncrementer" class which has only two param Updated it to: it worked ! -e Can someone tell me how to setup for postgresql "org.springframework.jdbc.support.incr

What actually processes a JSP file?

2007-10-26 Thread jamestastic
Digging down into the code, I'm trying to figure out exactly what class(es) open a .jsp file, and populate it with values from the OgnlValueStack. Any ideas? -- View this message in context: http://www.nabble.com/What-actually-processes-a-JSP-file--tf4698875.html#a13432429 Sent from the Struts

Re: Tutorials about "struts2 + ibatis + SQLmap"

2007-10-26 Thread Emi Lu
Hello, Can someone tell me how to setup for postgresql "org.springframework.jdbc.support.incrementer.PostgreSQLSequenceMaxValueIncrementer" in applicationContext-ibatis.xml file please? Here I tried, but failed! Thanks a lot! -e

Re: [FRIDAY] OGNL Viewer

2007-10-26 Thread Tom Schneider
Musachy is is our javascript expert! I would demand a Web 2.0 compliant viewer with animation, fade-in/out and other whizbang features. :) Tom newton.dave wrote: > > --- Musachy Barroso <[EMAIL PROTECTED]> wrote: >> "I would pay a couple large" >> >> btw where is my cash? :) > > You're rich

Re: onchange submit action

2007-10-26 Thread Brian Relph
A few more minutes of experimenting and i answered my own question ... anyone else who wonders, instead of using i used and then changed the action for the form tag to be "template!view" On 10/26/07, Brian Relph <[EMAIL PROTECTED]> wrote: > > > So I have a with action = "template" and on t

onchange submit action

2007-10-26 Thread Brian Relph
So I have a with action = "template" and on this form i have several submit buttons, with methods = "save", "restore", and "preview". I also have some links with href action urls - example: Finally, i have a select box, and i would like the select box to submit the form to the "vie

Re: [FRIDAY] OGNL Viewer

2007-10-26 Thread Dave Newton
--- Musachy Barroso <[EMAIL PROTECTED]> wrote: > "I would pay a couple large" > > btw where is my cash? :) You're rich! It'd also be pretty short work to take the stack and create a Graphviz file, too. d. - To unsubscribe, e-

Re: [S2]Datasource is null in JasperReports integration

2007-10-26 Thread j alex
I guess you need to have reportData as a field in the Action and do setReportData(reportData) in execute() after populating it. On 10/26/07, carmi_cd <[EMAIL PROTECTED]> wrote: > > > i'm new in integrating JasperReports and Struts 2..my problem is its > always > saying that my datasouce is > nul

[FRIDAY] OGNL Viewer

2007-10-26 Thread Musachy Barroso
"I would pay a couple large" btw where is my cash? :) musachy On 10/26/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > in 2.1, add debug=browser to your url (and make sure that you have the > dojo plugin installed). By default it will display #context and you > will be able to drill down on fie

Re: [S2] Problem while retrieving data from JSP

2007-10-26 Thread kaouki
Ok, but I don't understand... ^^ Here is my Action: public class CatalogueAction extends ActionSupport { private Catalogue catalogue; (...) @RequiredStringValidator(message = "Titre obligatoire", fieldName = "catalogue.titre") public String save() { if (logger.isInfoEnabled()) {

Re: OGNL Viewer

2007-10-26 Thread Musachy Barroso
in 2.1, add debug=browser to your url (and make sure that you have the dojo plugin installed). By default it will display #context and you will be able to drill down on fields. If you want to change the display root object then add object=%21ognlexpr to your url. See WW-2070 for details. regards

Re: Config problems ?

2007-10-26 Thread something something
hello serge, I am sending you a sample pseudo code just check if everything is correct. public class FirstApplication extends Action { public ActionForward execute( ActionMapping mapping, ActionForm form,

OGNL Viewer

2007-10-26 Thread stanlick
Is there a command to show the value stack as a graphical tree? I would pay a couple large for that picture this morning. -- Scott [EMAIL PROTECTED]

Re: Struts2 version 2.1

2007-10-26 Thread Dave Newton
The release has been submitted for mirroring (Tue) although I didn't see it anywhere except apache servers as of last night, but I didn't look around on all the mirrors, either. --- David Harland <[EMAIL PROTECTED]> wrote: > Do you know what has happened to 2.0.11? It seems to > have stalled. >

Re: [S2] Problem while retrieving data from JSP

2007-10-26 Thread Dave Newton
You don't have to put the values not on the form in hidden fields: if you have the ID then you re-attach the Hibernate object, set the new values that were on the form, and update. Unless you keep the actual object in session (whether you do it via ScopedModelDriven or not isn't relevant), or neve

Re: Struts2 version 2.1

2007-10-26 Thread David Harland
Do you know what has happened to 2.0.11? It seems to have stalled. --- Ted Husted <[EMAIL PROTECTED]> wrote: > On 10/25/07, someone> wrote: > > Hi, > > > > Having been a long time developer with Struts, I > love working with Struts 2x. So far it has > >been a pleasure and you guys have done a gre

Re: [S2] Problem while retrieving data from JSP

2007-10-26 Thread kaouki
I would like to find a better way to do that ... if it is possible ... Because I would have the same probleme with all my beans (Hibernate entities). If I want to render an entity bean E in my view (with 4 or 5 properties, nested beans or not), and the user updates 2 properties and submits the fo

Re: Struts2 redirect-action params with ognl-expression values

2007-10-26 Thread Dave Newton
Is the "id" attribute included in the form upload post via a hidden form field or other means? d. - Original Message > From: Andvar Woo <[EMAIL PROTECTED]> > To: Struts Users Mailing List > Sent: Friday, October 26, 2007 6:17:22 AM > Subject: Struts2 redirect-action params with ognl-ex

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
>From this point of view I can not properly investigate the problem. May be run in debug mode and analyse when and where method "update" is called. or make manually a NUllPointerError and see the stack trace. zul;jami wrote: > > yes that is what i did I use only > >login.jsp

Re: Struts2 version 2.1

2007-10-26 Thread Ted Husted
On 10/25/07, someone> wrote: > Hi, > > Having been a long time developer with Struts, I love working with Struts 2x. > So far it has >been a pleasure and you guys have done a great job. It seems like all the things I did not >like about Struts have been address in Struts2. > Do you know when 2.1 w

Struts 1.2.7 custom validator problem

2007-10-26 Thread John Doe
Hi, I have Struts 1.2.7 application and I need to write custom validator for my form. I've wrote struts tutorial at http://struts.apache.org/1.2.7/userGuide/dev_validator.html and have tried to do the same. But my validator is not working. Here is my class method : public class GroupIdValidator {

RE: Struts2 redirect-action params with ognl-expression values

2007-10-26 Thread LEONARD Julien (Consulting for ACCOR Hotels)
Did you try this ? ModNews ${id} Julien -Message d'origine- De : Andvar Woo [mailto:[EMAIL PROTECTED] Envoyé : vendredi 26 octobre 2007 12:17 À : Struts Users Mailing List Objet : Struts2 redirect-action params with ognl-expression values Hi.all. Recently,I'v encount

Struts2 redirect-action params with ognl-expression values

2007-10-26 Thread Andvar Woo
Hi.all. Recently,I'v encounter a problem. The problem comes as follows: *First invoke a MdfNews Action with a news id param to init some variables,then goes* *to a newsModify.jsp page ,something like http://www.comanyName.com/news/MdfNews.action?id=123* /WEB-INF/template/newsinfo/newsModify.j

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
yes that is what i did I use only login.jsp login.jsp /pages/main.jsp /pages/dashboard.jsp BUt still update is fired on login. Igor Vlasov wrote: > > If you use only > > >login.jsp >login.jsp >/pages/main.jsp >/pages/dashboard.j

Re: [s2] Problems with lazy loading (open session in view approach)

2007-10-26 Thread lbastil
Just found the problem cause: what was not mentioned: in the requests initiated by the remote divs the model is retrieved from session. For the model no hibernate session is attached, so non of the not already loaded lazy loading fields are available. Seems we have to: a) attach session manuall

Re: struts2 validation - wildcard mappings and the submit tag "method" parameter

2007-10-26 Thread Igor Vlasov
use @SkipValidation annotation for methods, which you do not need to validate. This affects on StrutsValidationFramework For validate() method you must manually analyse the situation and skip its executing. Lindell, Andrew wrote: > > The problem I'm having is getting validation to run when t

Re: Validation Best Practices?

2007-10-26 Thread Igor Vlasov
I use validate() method from ActionSupport for complex bussines validation.(it works in WorkFlowInterceptor). Sometime, for trivial fields, i can use Struts ValidationFramework.(it works after ParameterInterceptor) Sean Kleinjung-2 wrote: > > Hey, > > I have a question concerning where val

Re: [S 1.3]IncludeAction or any other Alternative?

2007-10-26 Thread Igor Vlasov
Try to use servletFilter from servlet specification with apropriate mapping enthucoder wrote: > > I have a requirement, where on each page load, I hit some Servlet or > Action (Can be modified accordingly). Should i use a IncludeAction here or > there is a better or elegant way to achieve th

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
If you use only login.jsp login.jsp /pages/main.jsp /pages/dashboard.jsp the update action called when login_update.jspa is called or press on zul;jami wrote: > > After deleting the second binding also I got the same error. > > > > Igor Vlasov wrote: >

Re: Audit trail - implementation strategies

2007-10-26 Thread wild_oscar
Well, I'm using Hibernate for persistance, so I guess the implementation would be somehow different. Nevertheless, I'm looking at this solution. For my understanding, with this approach you monitor the CRUD transactions (via JPA/Toplink features) and audit each CRUD event individually, correct?

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
After deleting the second binding also I got the same error. Igor Vlasov wrote: > > You have to delete second binding... > > zul;jami wrote: >> >> I have not deleted.instead I gave >> >> >>login.jsp >>login.jsp >>/pages/main.jsp >> >> >> /pages/das

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
You have to delete second binding... zul;jami wrote: > > I have not deleted.instead I gave > > >login.jsp >login.jsp >/pages/main.jsp > > > /pages/dashboard.jsp > > > But still update is fired when logging in. > What do you mean by . > Both m

[s2] Problems with lazy loading (open session in view approach)

2007-10-26 Thread lbastil
In our application we need to lazy load fields in the view. We have configured springs OpenSessionInViewFilter. If we use lazy loading from a normal JSP View, everything works fine. But on our View we also have AJAX tabbedpane with remote div's. Now the problem is: within the content of this r

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
I have not deleted.instead I gave login.jsp login.jsp /pages/main.jsp /pages/dashboard.jsp But still update is fired when logging in. What do you mean by . Both methods return SUCCESS only. Igor Vlasov wrote: > > Are you sure that you delete

Default scope in struts-*.xml files

2007-10-26 Thread Alexandre VICTOOR
Hello Lately I was playing with MultipartRequest parsers. In the file struts-default.xml, the beans of type "MultipartRequest" have a scope specified: scope="default" In this file, only these beans have a scope specified. Apparently, "default" is not the default scope at all... About that, I t

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
Are you sure than you delete: /pages/dashboard.jsp When call login_input.jspa then "input" method called When call login.jspa then "execute" method called. zul;jami wrote: > > After changing my struts.xml as you said > also my action fires execute and also update. >

Config problems ?

2007-10-26 Thread Serge Mathieu
Hi every one, I have installed Struts 1.3.8 used the struts-blank-1.3.8.war to create a first project, it run on an Apache Tomcat 5.0 with a JDK1.4.2_08. When I first try the app with the /Welcom.do url from the struts-blank app, no problem (this Welcom.do is just an url that forward directly to js

Re: struts-tiles migration issues

2007-10-26 Thread Antonio Petrelli
2007/10/26, Hans Hedung <[EMAIL PROTECTED]>: > > > > value="/WEB-INF/conf/tiles-defs.xml, /WEB-INF/conf/tiles-defs-store.xml, > /WEB-INF/conf/tiles-defs-admin.xml, /WEB-INF/conf/tiles-defs-report.xml, > /WEB-INF/conf/tiles-defs-person.xml"/> > > > Doh! It seems all ok! Try to lower to DEBU

RE: struts-tiles migration issues

2007-10-26 Thread Hans Hedung
This is the tiles-part. > Date: Thu, 25 Oct 2007 20:52:44 +0200> From: [EMAIL PROTECTED]> To: user@struts.apache.org> Subject: Re: struts-tiles migration issues> > 2007/10/25, Hans Hedung <[EMAIL PROTECTED]>:> > 2.> > No you're absolutely correct about that.> >> > In the was 5.1 log I

[S2]Datasource is null in JasperReports integration

2007-10-26 Thread carmi_cd
i'm new in integrating JasperReports and Struts 2..my problem is its always saying that my datasouce is null so it displays a pdf file with all the labels in it without anything on the detail part..my datasource is an ArrayList of Personnel object, i name it reportData. here is part of my code..

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
After changing my struts.xml as you said also my action fires execute and also update. I do not want to fire update.Pls help Igor Vlasov wrote: > > I use > >login.jsp >login.jsp >/pages/main.jsp >/pages/dashboard.jsp > > > > > zul;jami wrote: >> >> I h

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
I use login.jsp login.jsp /pages/main.jsp /pages/dashboard.jsp zul;jami wrote: > > I have two methods in action extending actionsupport in struts2. > WHen I login it should execute only the execute method.BUT > it also fires update another method which I want to

Re: Problem while setting object directly from tag

2007-10-26 Thread Igor Vlasov
The list property targets to "model" with data for rendering