Re: How to get instance of the given dependency using Container

2012-10-01 Thread Aum Strut
the contact ( ? extends MyClass ) is there any way to do this with S2 internals? Thanks On Mon, Oct 1, 2012 at 3:10 PM, Lukasz Lenart lukaszlen...@apache.orgwrote: 2012/9/30 Aum Strut aum.str...@gmail.com: How can i pass this information to the container to get the instance of the class passed

Re: How to get instance of the given dependency using Container

2012-10-01 Thread Aum Strut
...@apache.orgwrote: 2012/10/1 Aum Strut aum.str...@gmail.com: Only information i was having that all provider classes will have to extends MyClass and there are not any specific set of classes which implements MyClass. So i was trying to make the provider inside my plugin a more generic

Re: How to get instance of the given dependency using Container

2012-10-01 Thread Aum Strut
to add any further dependencies. Any suggestion as how to achieve this? Thanks On Mon, Oct 1, 2012 at 6:09 PM, Lukasz Lenart lukaszlen...@apache.orgwrote: 2012/10/1 Aum Strut aum.str...@gmail.com: i was thinking about a way like Spring DI used to do something like bean type

Re: How to get instance of the given dependency using Container

2012-09-30 Thread Aum Strut
/ @Inject(value=my.constant) public void setConstant(String value) { this.constant = constant; } public initialization() { provider = container.getInstance(MyCustomClass.class, constant); } HTH, Gabriel 2012/9/30 Aum Strut aum.str...@gmail.com: Hi All, I am working

Re: Re: Using Base Action for application (struts2)

2012-06-28 Thread Aum Strut
, Sam Song Cognizant Technology Solutions From: Aum Strut Date: 2012-06-29 00:36 To: samsongbest CC: Struts Users Mailing List Subject: Re: Using Base Action for application (struts2) I am not sure what you mean by constructor method?? u mean prepare method?? On Thu, Jun 28, 2012

Re: Help with problem: ThreadLocal left after stopping tomcat

2012-03-11 Thread Aum Strut
Tom, If the issue still persist, i suggest you to open a JIRA ticket with information about your use-case as it might be still be a bug On Wed, Mar 7, 2012 at 7:47 PM, Tom K tkim...@yahoo.com wrote: Thanks for the reply. Based on my experimentation it appears these threads are started by the

Re: using property/constant placeholder in struts config file

2011-12-18 Thread aum strut
Thanks Łukasz, that's a perfect approach 2011/12/18 Łukasz Lenart lukasz.len...@googlemail.com Instead hardcoded result you can use expression action name=welcome class=welcomeAction result${actionFrame}/result /action And create a BaseAction (as a base action for all your actions)

using property/constant placeholder in struts config file

2011-12-17 Thread aum strut
Hi All, While working in one application i came across a requirement where i need to define a constant in struts.xml file and want to use in my application.Here is the use case in our application the layout is fixed and we are using a same template throughout the application say

using action in welcome file list

2011-12-13 Thread aum strut
Hi All, I am trying to user struts2 action in my welcome file list of web.xml here is the entry filter filter-nameaction2/filter-name filter-classorg.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter/filter-class /filter filter-mapping

Alternate for actionRedirect

2011-12-04 Thread aum strut
Hi All, Currently i am working with OAuth in my web-app, So i am redirecting my user to the third party system (gmail/yahoo) and once they authenticate thereself with those system ,these system will redirect back user to my App at a specified callback URL Things are working fine except that when

Re: Alternate for actionRedirect

2011-12-04 Thread aum strut
/m_cucchiara G+ :https://plus.google.com/107903711540963855921 Linkedin:http://www.linkedin.com/in/mauriziocucchiara Maurizio Cucchiara On 4 December 2011 09:17, aum strut aum.str...@gmail.com wrote: Hi All, Currently i am working with OAuth in my web-app, So i am redirecting my

Dynamically passing Templates name in struts.config file

2011-03-12 Thread aum strut
Hi All, In my application i have a single ApplicationFrame.jsp which takes care of the overall look and feel of the application,from my action classes i am setting the name of working template and this dynamic template name is being used in the ApplicationFrame as follows s:include

Re: Dynamically passing Templates name in struts.config file

2011-03-12 Thread aum strut
results and see if that helps. http://struts.apache.org/2.x/docs/result-configuration.html http://struts.apache.org/2.x/docs/parameters-in-configuration-results.html Dave On Sat, Mar 12, 2011 at 12:49 PM, aum strut aum.str...@gmail.com wrote: Hi All, In my application i have a single

Struts2 and Validation issue

2011-02-16 Thread aum strut
Hi All, I am trying to user Validation framework with Struts2 but struck at a point,here are the details. I am developing a import service which includes various steps like 1) Showing number of import options 2) Showing number of elgible files for the import (Import type selected in step one)

Re: Multiple Submit Buttons problem in Struts2

2011-01-04 Thread aum strut
=customer_save value=Save/ s:submit action=customer_print value=Print/ /s:if /s:form Scott On Sat, Jan 1, 2011 at 8:53 AM, aum strut aum.str...@gmail.com wrote: Hi All, Trying to work with multiple submit buttons within a single form in struts2 application

Re: Initialize and inject resources per application - S2

2011-01-04 Thread aum strut
Struts2 has its own Object creation way an Object factory which is responsible for creating all framework required objects like Actions,Interceptors Results etc. And its flexible enough if you want to let spring do this for Struts2 you can always do that by using Spring with struts2 On Wed, Jan

Re: Multiple Submit Buttons problem in Struts2

2011-01-03 Thread aum strut
key=domain.zip / s:submit action=customer_cancel value=Cancel/ s:submit action=customer_save value=Save/ s:submit action=customer_print value=Print/ /s:if /s:form Scott On Sat, Jan 1, 2011 at 8:53 AM, aum strut aum.str...@gmail.com wrote: Hi All, Trying to work

Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
Hi All, Trying to work with multiple submit buttons within a single form in struts2 application but not able to work. here is the jsp code i am using tr td class=buttoninput type=submit value=Import name=destinationImport class=button/td

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
how to convert Import to a true or false value. Dave On Sat, Jan 1, 2011 at 9:53 AM, aum strut aum.str...@gmail.com wrote: Hi All, Trying to work with multiple submit buttons within a single form in struts2 application but not able to work. here is the jsp code i am using tr

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
documentation that's 4+ years old you can't necessarily rely on it being accurate. Dave On Sat, Jan 1, 2011 at 10:29 AM, aum strut aum.str...@gmail.com wrote: i was just refreing the following document http://struts.apache.org/2.0.14/docs/multiple-submit-buttons.html since it was mentioned

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
, aum strut aum.str...@gmail.com wrote: agree! but i still believe coupling the form value with action component is never a good idea.. so still believe the first approach was was better. So... is there another way to achieve what you want? Dave

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
agree!!! On Sat, Jan 1, 2011 at 10:20 PM, Dave Newton davelnew...@gmail.com wrote: And *my* point is that perhaps there's another way you can solve your problem and eliminate the tight coupling between form and action. Dave On Sat, Jan 1, 2011 at 11:16 AM, aum strut aum.str...@gmail.com

Re: E-Commerce website using struts

2010-12-12 Thread aum strut
if taking about struts2 here it is http://www.shopizer.com/ On Fri, Dec 10, 2010 at 11:40 AM, ashish chawre ashish.chawr...@gmail.comwrote: Hi, Is any body having any idea about the source/example of any ecommerce website implementation using struts? I am looking to implement a checkout using

Generic Question about Struts2 Interceptor

2010-10-12 Thread aum strut
Hi All, I have a generic question about Struts2Interceptor,since Struts2 is itself in term of Interceptor and most of the required interceptors are there placed. My question is how many of us are using custom Interceptor which are there in production enviornment.my idea is to get some broad

Re: Generic Question about Struts2 Interceptor

2010-10-12 Thread aum strut
interceptor stacks). Don't fear interceptors, they are your friends. On Tue, Oct 12, 2010 at 12:17 PM, aum strut aum.str...@gmail.com wrote: Hi All, I have a generic question about Struts2Interceptor,since Struts2 is itself in term of Interceptor and most of the required interceptors

Re: Generic Question about Struts2 Interceptor

2010-10-12 Thread aum strut
preserving message in cookies when not using sessions Interceptors are the place I will normally handle any cross-cutting concerns. On Tue, Oct 12, 2010 at 1:26 PM, aum strut aum.str...@gmail.com wrote: I am truely agree but can give me some example where you have applied them just to get

Re: Need Help For Struts2 Debugging

2010-06-04 Thread aum strut
conceptualize (one of the interceptors or results for instance) and work through it. -Wes On Wed, May 26, 2010 at 7:22 AM, aum strut aum.str...@gmail.com wrote: DO any one have other way to do this job done??? Please share their ideas On Tue, May 25, 2010 at 5:46 PM, aum strut aum.str

Re: bug reports

2010-06-01 Thread aum strut
You need to create a ticket in JIRA https://issues.apache.org/jira/browse/WW create a new issue in JIRA with the details about the incident along with Test cases if any. On Wed, Jun 2, 2010 at 6:44 AM, Alex Zeng alex.z...@datam.co.nz wrote: Anyone knows how to submit a bug report for struts 2?

Re: How to Configure a DataSource in Struts 2.X

2010-05-31 Thread aum strut
There is no direct support for Data source in struts2 and as for your point action classed are a mean of Model and its never preferred to use such configuration at this level. On Mon, May 31, 2010 at 5:30 PM, VR Venugopal Rao venugopal.vell...@cmcltd.com wrote: Dear All, How do we configure

Re: Need Help For Struts2 Debugging

2010-05-26 Thread aum strut
DO any one have other way to do this job done??? Please share their ideas On Tue, May 25, 2010 at 5:46 PM, aum strut aum.str...@gmail.com wrote: Alex i am some what agree.. but i am wondering how the Struts2 Development team is doing this..i am sure they are not following the things as you

Need Help For Struts2 Debugging

2010-05-25 Thread aum strut
Hi All, I am in process to explore internals of Struts2.Can any one suggest me how can i move ahead. All i need to know how framework internally called its different component and for this i guess i need to download the source code but how and what to do next i am confused.. can any one point me

Re: Need Help For Struts2 Debugging

2010-05-25 Thread aum strut
Alex i am some what agree.. but i am wondering how the Struts2 Development team is doing this..i am sure they are not following the things as you have mentioned. I am sure that must be some easy way to some one who wants to get knowledge about that internal working structure of struts2 id any

The Apache Software Foundation Receives Approval for Sale to Oracle Corporation

2010-05-19 Thread aum strut
Hi All, i am not sure is this a good place to ask about such question but since many here are involved with Apache from so long while browsing Apache community site i came across this blog post,though this has been posted on April 1st but still not sure whats the truth?? can any one have better

Re: The Apache Software Foundation Receives Approval for Sale to Oracle Corporation

2010-05-19 Thread aum strut
Manos i have alreay mentioed this in my post... but since it was on community site so i prefer to confirm it... On Wed, May 19, 2010 at 12:49 PM, Manos Batsis manos_li...@geekologue.comwrote: On 05/19/2010 09:31 AM, aum strut wrote: Hi All, i am not sure is this a good place to ask about

Re: struts action related query

2010-04-21 Thread aum strut
i am also agree with Dale you have two option either to develop your own solution using AJAX or can use third party solution i myself using YUI for the development but lately we are trying jquery and its really good to work with it. Choice is all urs... On Wed, Apr 21, 2010 at 12:23 PM, Dale

Re: Struts vs SpringMVC

2010-04-15 Thread aum strut
Well we using Spring is our most of projects but to be honest we are using it for IOC,AOP and yes for other stuff but as per MVC is concerned Struts is our first choice.. we are on way to migrate our 25% of projects to Struts2 from struts1. On Fri, Apr 16, 2010 at 8:48 AM, Cimballi

Re: Struts project structure in eclipse

2010-04-13 Thread aum strut
* we are using below mentioed like approach and its working in our case. link href=s:url value=/yourcss.css/ rel=stylesheet type=text/css/* On Tue, Apr 13, 2010 at 4:29 PM, Upasana Sharma sharma...@gmail.com wrote: Hi I am new to Struts. I am trying to develop a project. The jsp

Re: Which Spring and Hibernate versions are compatible

2010-04-07 Thread aum strut
Yes we can use it.. we are using it one of our project which is ready to go t production. On Wed, Apr 7, 2010 at 8:49 AM, Cimballi cimballi.cimba...@gmail.comwrote: Yes ! On Tue, Apr 6, 2010 at 11:15 PM, Krunal Dhamelia nkle...@gmail.com wrote: Hi All, I am new to Struts 2 and wanted

Re: struts.xml vs struts.properties which takes a precedence?

2010-03-26 Thread aum strut
struts.properties http://struts.apache.org/2.0.11/docs/strutsproperties.html On Fri, Mar 26, 2010 at 8:03 AM, Bhaarat Sharma bhaara...@gmail.com wrote: Hi, If the same property is set in struts.xml and struts.properties which one takes precedence? also, is there any documentation where

Renaming struts.xml file

2010-03-15 Thread aum strut
Hi Friends, Is it possible to rename and change the position of struts.xml configuration file in a simple web application. If yes, then please also mention the steps. Thanks, aum

Re: Struts2 and Security

2009-06-23 Thread aum strut
Thanks Dave for the details, as my self also not very much known about the spring so may be we have to look in to this and in the draft in more details. On Tue, Jun 23, 2009 at 5:54 PM, Dave Newton newton.d...@yahoo.com wrote: aum strut wrote: Our requirement is to use good authentication

Re: Struts2 and Security

2009-06-22 Thread aum strut
: aum strut wrote: my main point was also this we were about to choose Spring Security but as we are not going to use Spring in our application so we were just a bit confused (:) ) if we can use this frame work even without using Spring?? You want to use Spring Security without Spring

Re: Struts2 and Security

2009-06-21 Thread aum strut
://appfuse.org. aum strut wrote: Hi All, We are on the way to develop a new application using struts2. Currently we are analysing the area of authentication and authorization, we do have some options of using the following frame work for these 1) Acegi 2)JAAS my point

Struts2 and Security

2009-06-19 Thread aum strut
Hi All, We are on the way to develop a new application using struts2. Currently we are analysing the area of authentication and authorization, we do have some options of using the following frame work for these 1) Acegi 2)JAAS my point is that we any one in the list is using any of the security

No Action mapped for namespace

2009-03-01 Thread aum strut
HI All, i am facing action mapping problem and unable to figure it out where ia m doing wrong. i have a login.jsp page where there are only 2 fileds a loinid and password field i am using AJAX call for user login below is the code from my login.jsp page s:form name=Login id=Login tdtable

Re: Problem with MyEclipse+JDBC Driver

2009-02-12 Thread aum strut
This Error generally comes when the compilation JRE and running JRE are not same, have you developed the code used in the Struts application and in java application on same enviornment?? and which version of struts you are using?? On Fri, Feb 13, 2009 at 9:51 AM, Narasimha Raju Naidu

Re: Sending XML data from action to YUI

2009-01-19 Thread aum strut
the objects into xml. musachy On Mon, Jan 19, 2009 at 2:27 AM, aum strut aum.str...@gmail.com wrote: Hi All, I developing ajax based application using struts 2.0.11 for ajax we are using YUI for making ajax based call and currently its working fine for me.For one case i need to send XML

Re: Sending XML data from action to YUI

2009-01-19 Thread aum strut
/ /result-types ... and the result is ready to be used. musachy On Mon, Jan 19, 2009 at 11:40 AM, aum strut aum.str...@gmail.com wrote: Thats what i came up with.. any one have any idea where i can find a good starter so that i can write my own result type

Re: Sending XML data from action to YUI

2009-01-19 Thread aum strut
a identity transform). Si quieres ser más positivo, pierde un electrón Miguel Ruiz Velasco S. On Mon, Jan 19, 2009 at 21:11, dusty dustin_pea...@yahoo.com wrote: Has either of you tried the XSLT result type? I have not and I am curious about how well it works. aum strut wrote

Sending XML data from action to YUI

2009-01-18 Thread aum strut
Hi All, I developing ajax based application using struts 2.0.11 for ajax we are using YUI for making ajax based call and currently its working fine for me.For one case i need to send XML created in my business logic to the front end The call will be created using YUI API and it must get XML

Custm interceptor Problem

2008-12-14 Thread aum strut
Hi All, I am developing custom inteceptor so that unauthorized user can not access the resources using struts2. i am following the below mentioed approach 1) when user login process succeed i am putting user object in the session 2) For all other request when user try to hit the direct action

Validating Autocompleter using javascript

2008-12-10 Thread aum strut
Do any one have any suggestion regarding this problem or do i need to drop down the idea of using autocompleter??? Hi all, i am struck in a simple problem but not able to proceed as i m unable to find any solution for this. I am using struts2 UI tags and in order to validate the user input i am

Validating Autocompleter using javascript

2008-12-09 Thread aum strut
Hi all, i am struck in a simple problem but not able to proceed as i m unable to find any solution for this. I am using struts2 UI tags and in order to validate the user input i am using javascript for validation(Currently not in a position to use validation frame work). everything was going ok

Struts2 XML Handling

2008-11-29 Thread aum strut
HI All, I need to send XML data from my action. Curently in one of action i need to send JSOn data from the action and for this i am using JSON Plugin for sending JSOn data from my action to the frontend. Now i have to send XML data from my action.Do any one have any information about how can

Re: Struts2 Data Transfer is not working

2008-11-11 Thread aum strut
PM, Nils-Helge Garli Hegvik [EMAIL PROTECTED]wrote: I'm guessing your POs in User are null. Line 15 in TestAction should tell you what. Nils-H On Tue, Nov 11, 2008 at 12:52 PM, aum strut [EMAIL PROTECTED] wrote: Hi all, I am using Model Driven approach for transfering my form data

Re: Struts2+YUI

2008-10-17 Thread aum strut
HI All, DO any one have any clue about this probelm...??? i am really stuck here. On Thu, Oct 16, 2008 at 3:33 PM, shekher awasthi [EMAIL PROTECTED]wrote: Hi All, I am trying to integrate struts2 with YUI ,but facing some problems with this. I want that when my action get called by

Re: Struts2+YUI

2008-10-16 Thread aum strut
No i want to get this arraylist using YUI Ajax functionality i have a drop down in my jsp page and i am calling the ajax function with onChange event the code which i have used for calling my action class is working fine and even i am able to hot my action class using YUI APIbut what i want is

Re: Struts2+YUI

2008-10-16 Thread aum strut
sorry for using another mail box for posting the question i am geting some problem in my ID while posting the question in the mail listso i have used my alternative ID. On Thu, Oct 16, 2008 at 4:31 PM, aum strut [EMAIL PROTECTED] wrote: No i want to get this arraylist using YUI Ajax

Re: Struts 2 actions executing twice

2008-10-15 Thread aum strut
Hi, i faced this issue a lot while developing some sample application in which my action was getting called twice, but i was using javascript for submitting the action and when i removed javascript for submitting form the problem just disappears On Thu, Oct 16, 2008 at 3:07 AM, Dave Newton

Re: Struts 2 actions executing twice

2008-10-15 Thread aum strut
be submitted as well through the normal mechanism. Returning false from your handler tells the page not to submit. I don't think this is the OP's issue, but thought I would chime in. -Wes On Thu, 2008-10-16 at 09:27 +0530, aum strut wrote: Hi, i faced this issue a lot while developing some

object backed data transfer in struts2

2008-10-11 Thread aum strut
Hi all, i am developing an application in struts2 and trying to used object backed data transfer method in struts2 i have created a bean namely address where i have declared all the properties. Now i want that my struts2 intercepter will fill this beans by itself when it called,below is the code

Re: object backed data transfer in struts2

2008-10-11 Thread aum strut
yes everything is there at its place.. still unable to figure it out the reason :( On Sat, Oct 11, 2008 at 11:00 PM, Lukasz Lenart [EMAIL PROTECTED] wrote: can anybody suggest me what is the likely cause of this exception.Thanks in advanve Does AddressBean has default constructor? And

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
at 3:46 AM, Laurie Harper [EMAIL PROTECTED] wrote: Just do what Dave outlined in his previous reply. You need getter/setters in your action for each bean ([gs]etBean1(), [gs]etBean2() to correspond with Dave's JSP sample code) and everything should work. Have you tried it? L. aum strut

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
i even made getter and setter method for one of my beans namely Person but when i am using these getter /setter method in the action calss for the beans i am getting exception while the GetModel() i mean the model driven approach is working fine.. On Thu, Oct 9, 2008 at 1:16 PM, aum strut

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
().getBean1().setField1(). L. aum strut wrote: Yes Dave , There is a sigle form(Page) for this with different sections in it for registration.i only want that the data from this single page should go to different (2 in my case) beans depends upon the fields i have defined in the respective beans

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
$Http11ConnectionHandler.process(* Http11Protocol.java:581*) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(*JIoEndpoint.java:447*) at java.lang.Thread.run(Unknown Source) On 10/9/08, aum strut [EMAIL PROTECTED] wrote: Thaks laurie this was exactly i was looking for... i will try this way and it seems

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
for the result named input. That probably means that the Action is encountering a validation error or the like, causing it to return input. On Thu, Oct 9, 2008 at 1:21 PM, aum strut [EMAIL PROTECTED] wrote: Hi All, i tried to follow the the way suggested by Laurie i followed the below

Re: Struts2 Data Transfer

2008-10-08 Thread aum strut
in the UserLogin Beans while the Address section should get populated in the Address Bean when my Registration Action get called once user will hit the Register Button. Thanks -aum On Tue, Oct 7, 2008 at 10:59 PM, Dave Newton [EMAIL PROTECTED] wrote: --- On Tue, 10/7/08, aum strut wrote: i need

Struts2 Data Transfer

2008-10-07 Thread aum strut
Hi All, Sorry if i am asking a very basic question. i need to transfer data from the user registration page to the java beans to be used for inserting values in the data base. i have created two seperate beans for this 1) for storing user address field and second is for storing user login

Re: Action Execute Being called 2 times

2008-08-04 Thread aum strut
Hi, I tried all things and its again not working still action is getting called 2 times for each call to this Register Action i am attaching the Register.jsp,Struts.xml as well as the action class please have a look at it and point me where i am doing the mistake. Thanks in Advance -aum On

Action Execute Being called 2 times

2008-08-01 Thread aum strut
Hi All, While developing an application in struts2 i am facing a strange problem with one of my action namely RegsitrationAction. i have a jsp page for user registration where there are certain fields for the user to be filled for the registration purpose. i have created a UserProfile bean class

Re: s:include not working

2008-07-20 Thread aum strut
are missing a taglib directive. Your include is using a relative page, are all the pages at the same depth? -Chase On Sat, Jul 19, 2008 at 4:22 AM, aum strut [EMAIL PROTECTED] wrote: Hi all, i am trying to include a jsp page using struts2 s:include tag but itdosen't seems to be working

Re: s:include not working

2008-07-20 Thread aum strut
copying pasting the same include statement in every single page? -Chase On Sun, Jul 20, 2008 at 1:20 AM, aum strut [EMAIL PROTECTED] wrote: Hi Chase, Is there any relation with the depth because when i put index.jsp page and HElloWorld.jsp page in the same folder, it starts to include

s:include not working

2008-07-19 Thread aum strut
Hi all, i am trying to include a jsp page using struts2 s:include tag but itdosen't seems to be working in my way. i have a menu.jsp page where i have written a code for the menu for my application. i have included this menu.jsp page in my index.jsp page were it is working fine.When i click on

Re: Struts 2 in action

2008-07-03 Thread aum strut
Hi Bharat, Its a Gud deal go ahead. i almost went through all the books in the market with title Struts2 but it is best go for it boss.. --aum On Thu, Jul 3, 2008 at 11:34 PM, bhaarat Sharma [EMAIL PROTECTED] wrote: buy it, i shall then. Thanks guys! I've also scammed over Ian

Re: Building First strut

2008-04-24 Thread aum strut
Wes is right without information about the version its very hard to put any comments on this, On 4/25/08, Wes Wannemacher [EMAIL PROTECTED] wrote: Which version of struts are you using? Struts 1 and Struts 2 are very different. -Wes On Thu, 2008-04-24 at 17:48 -0700, Vinay Nagrik wrote:

Re: Clearing form value

2008-04-21 Thread aum strut
ok i got that thks for helping me out On 4/21/08, Nils-Helge Garli Hegvik [EMAIL PROTECTED] wrote: By redirect I mean using the redirect action result type. Nils-H On Mon, Apr 21, 2008 at 6:40 AM, aum strut [EMAIL PROTECTED] wrote: Nils can u just describe a bit wat u mean here

Re: Clearing form value

2008-04-20 Thread aum strut
within the same request, I would say this is expected behavior. I would consider doing a redirect after the post instead. Nils-H On Sat, Apr 19, 2008 at 12:06 PM, aum strut [EMAIL PROTECTED] wrote: i am not using Spring at all.here is the code for my configuration and action class my

Re: Clearing form value

2008-04-20 Thread aum strut
AM, aum strut [EMAIL PROTECTED] wrote: Nils though i have achieved this using javascript my problem was that i can not redirect as i have to enter multipal records at a given time On 4/20/08, Nils-Helge Garli Hegvik [EMAIL PROTECTED] wrote: Considering you're

Re: Clearing form value

2008-04-19 Thread aum strut
Garli Hegvik [EMAIL PROTECTED] wrote: It would be a lot easier helping if you show us some configuration files and code Nils-H On Sat, Apr 19, 2008 at 6:59 AM, aum strut [EMAIL PROTECTED] wrote: yes you are right not providing complete information in one mail is really not good i

Clearing form value

2008-04-18 Thread aum strut
Hi all, a little point which i want to know. i have a form by which we can add billing detais in the database form is working fine, it is adding the value to the database as expected, the problem whcih i am facing is even after successfully submitting the values, it is not clearing the form

Re: Clearing form value

2008-04-18 Thread aum strut
currently i am using struts-2.0.11.1 On 4/19/08, Dave Newton [EMAIL PROTECTED] wrote: Which version of Struts? --- aum strut [EMAIL PROTECTED] wrote: Hi all, a little point which i want to know. i have a form by which we can add billing detais in the database form is working fine

Re: Clearing form value

2008-04-18 Thread aum strut
on each request (normally) it's not typical to see this behavior without some effort on your part or mis-configuration. Dave --- aum strut [EMAIL PROTECTED] wrote: currently i am using struts-2.0.11.1 On 4/19/08, Dave Newton [EMAIL PROTECTED] wrote: Which version of Struts

JasperReports in Struts2

2008-04-17 Thread aum strut
Hi Friends, I have tried jasperreports in simple web application using jsp, servlets, it works fine. Now I need to implement jasperreports in struts2 application but its not working. Currently it is displaying blank report. Please guide me in this regard. Any gud reference related to

Struts2 and display:table tag

2008-04-05 Thread aum strut
Hi All, I want to use display tag for displaying the data i have put the displaytag.jar file in the lib folder. i have an action class which is returnig the required data in an array list * public* ArrayListItemTypeBean getItemCodeList() { *return* itemCodeList; } i am trying to use the

Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
$Worker.run(*JIoEndpoint.java:447*) at java.lang.Thread.run(Unknown Source but if i will remove this tag lib directive %@ taglib uri=http://displaytag.sf.net; prefix=display % from the JSP pag everything is working fine. --aum On 4/5/08, Dave Newton [EMAIL PROTECTED] wrote: --- aum strut [EMAIL

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
also trying to use the display tag first time with struts2 and i am also not sure abot how to configure it with struts2. On 4/5/08, Dave Newton [EMAIL PROTECTED] wrote: --- aum strut [EMAIL PROTECTED] wrote: here is the exception which i am facing java.lang.NoClassDefFoundError: *org/apache

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
find a class (which one, you may ask?). Looks like commons.lang couldn't find the UnhandledException class. Please make sure you have all displaytag dependencies. You may want to consider using maven2 to avoid these problems. On Sat, Apr 5, 2008 at 1:52 PM, aum strut [EMAIL PROTECTED] wrote

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
thanks dave for the help iwill look in to this and will try to find out the clue On 4/5/08, Dave Newton [EMAIL PROTECTED] wrote: --- aum strut [EMAIL PROTECTED] wrote: i am using my eclipse for the development everything was working ine before i tried to use the display tag

Re: New to Struts

2008-04-01 Thread aum strut
documentation is the best place to get started... keep one thing do not read only try them side by side. below are some of the others link which might help you. http://www.wantii.com/wordpress/?p=9 http://www.roseindia.com i hope these are the perfect starter. -aum On Tue, Apr 1, 2008 at 4:33

Eroor Message display

2008-03-30 Thread aum strut
Hi all, i am facing a problem while validating the login form.. i have to validate it in two ways: 1) Have to check if the requiredinput fields are filled and are in line with the laid procedure. for this i am using the server side validation.i have developed a xml for validating the fields

Re: Calling Action on form load

2008-03-28 Thread aum strut
--aum On 3/27/08, Randy Burgess [EMAIL PROTECTED] wrote: Use the s:action tag. http://struts.apache.org/2.x/docs/action.html Regards, Randy Burgess Sr. Web Applications Developer Nuvox Communications From: aum strut [EMAIL PROTECTED] Reply-To: Struts Users Mailing List

Re: Calling Action on form load

2008-03-28 Thread aum strut
Jane your solutions is working fine... was doing a small mistake from my end.. thanks for helping me out.. -aum On 3/28/08, aum strut [EMAIL PROTECTED] wrote: Hi Jane, what i m doing in my action class i am putting the list in the session like this MapString, ArrayListString session

Calling Action on form load

2008-03-27 Thread aum strut
Hi all, is it possible to call an action in struts2 everytime when the page get loaded if yes how it is possible. my problem is i am using s:select tag and using a list to pupulate this drop down this list is coming from the action which i m calling before the page is being displayed. the folw

Re: Calling Action on form load

2008-03-27 Thread aum strut
Burgess Sr. Web Applications Developer Nuvox Communications From: aum strut [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org Date: Thu, 27 Mar 2008 22:04:04 +0530 To: Struts Users Mailing List user@struts.apache.org Subject: Calling Action on form load Hi all

Exception in running application

2008-03-21 Thread aum strut
Hi All, i am running an application, everythingis working fineapplication is running fine... but in the console it is giving an exception...although the application is running fine.. below is the console output: SEVERE: Exception starting filter struts2 Unable to load bean:

Re: Exception in running application

2008-03-21 Thread aum strut
PROTECTED] wrote: Hi, Please make sure that the you are placing the xwor2 jar in lib folder and not in Referenced Lib package(if u r using MyEclipse IDE) and specifiy the opensymphony URI in web.xml. Thanks. aum strut wrote: Hi All, i am running an application, everythingis

Re: Exception in Validation

2008-03-16 Thread aum strut
i am using myeclipse for the development purpose and putting the file in the same folderwhere action class mean .java class is placed.. its neithergiving me any error or exception nor doing any validation On 3/16/08, Lukasz Lenart [EMAIL PROTECTED] wrote: Hi, How do you start your project?

Re: Exception in Validation

2008-03-16 Thread aum strut
yes it is there in the same folder structure is 1)WebRoot\WEB-INF\classes\TestExample-validation where as my class file for the action is in 2)WebRoot\WEB-INF\classes\aum and if i will put it in the aum folder it is giving error.while it is neithergiving any error nor performing validation

Re: Exception in Validation

2008-03-16 Thread aum strut
) while without this file it is running perfectly file. --aum On 3/16/08, Dave Newton [EMAIL PROTECTED] wrote: --- aum strut [EMAIL PROTECTED] wrote: structure is 1)WebRoot\WEB-INF\classes\TestExample-validation where as my class file for the action is in 2)WebRoot\WEB-INF

  1   2   >