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

2012-10-01 Thread Aum Strut
Mon, Oct 1, 2012 at 6:09 PM, Lukasz Lenart wrote: > 2012/10/1 Aum Strut : > > i was thinking about a way like Spring DI used to do something like > > > > > > > > > > > > It would be more convient to have injection like this way. > > Just an

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

2012-10-01 Thread Aum Strut
i was thinking about a way like Spring DI used to do something like It would be more convient to have injection like this way. On Mon, Oct 1, 2012 at 3:28 PM, Lukasz Lenart wrote: > 2012/10/1 Aum Strut : > > Only information i was having that all provider classes wil

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

2012-10-01 Thread Aum Strut
contact ( ) is there any way to do this with S2 internals? Thanks On Mon, Oct 1, 2012 at 3:10 PM, Lukasz Lenart wrote: > 2012/9/30 Aum Strut : > > How can i pass this information to the container to get the instance > > of the class passed at run time? > > First of all you

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

2012-09-30 Thread Aum Strut
ring value) { > this.constant = constant; > } > > public initialization() { > provider = container.getInstance(MyCustomClass.class, constant); > } > > HTH, > Gabriel > > > 2012/9/30 Aum Strut : > > Hi All, > > > > I am working on a requirement where i

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

2012-06-28 Thread Aum Strut
I think any other action extends BaseAction can use "property" directly > without calling any other method. > Is that what you want? > > > > > > Best Regards, > Sam Song > Cognizant Technology Solutions > > From: Aum Strut > > Date: 2012-06-29 00:36 >

Re: Using Base Action for application (struts2)

2012-06-28 Thread Aum Strut
Best Regards, > > *Sam Song* > > *Cognizant Technology Solutions <http://www.cognizant.com/>* > > *From:* Aum Strut > *Date:* 2012-06-29 00:05 > *To:* Struts Users Mailing List > *Subject:* Using Base Action for application (struts2) > Hi All, > > I a

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 wrote: > Thanks for the reply. > > Based on my experimentation it appears these threads are started by the > Struts framew

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 > Instead hardcoded result you can use expression > > > ${actionFrame} > > > And create a BaseAction (as a base action for all your actions) with > getActionFrame() which will return > "/templates/application/applicationfram

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 "applicationframe

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 action2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter action2 /* REQUEST FORWARD INCLUDE ERROR

Re: Alternate for actionRedirect

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

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: Dynamically passing Templates name in struts.config file

2011-03-12 Thread aum strut
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 wrote: > > Hi All, > > > > In my application

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 and i have following en

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: 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 5

Re: Multiple Submit Buttons problem in Struts2

2011-01-04 Thread aum strut
ail.com] > > >>> Sent: Sunday, January 02, 2011 5:20 PM > > >>> To: Struts Users Mailing List > > >>> Subject: Re: Multiple Submit Buttons problem in Struts2 > > >>> > > >>> How about something like this? > > >

Re: Multiple Submit Buttons problem in Struts2

2011-01-03 Thread aum strut
11 at 5:20 PM, wrote: > > > How about something like this? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Scott > > > > On S

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 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 w

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
My point was that the boolean approach mentioned in the document was in my opinion is better and same was mentioned in the document sinnce it was not coupling the form tightly with action. On Sat, Jan 1, 2011 at 9:44 PM, Dave Newton wrote: > On Sat, Jan 1, 2011 at 11:13 AM, aum strut wr

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
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 wrote: > > > i was just refreing the following document > > http://struts.apache.org/2.0.14/docs/multiple-submit-buttons.html > >

Re: Multiple Submit Buttons problem in Struts2

2011-01-01 Thread aum strut
ert "Import" to a true or false value. > > Dave > > On Sat, Jan 1, 2011 at 9:53 AM, aum strut wrote: > > > Hi All, > > > > Trying to work with multiple submit buttons within a single form in > struts2 > > applicatio

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 he

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 wrote: > 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 struts and I need to i

Re: Generic Question about Struts2 Interceptor

2010-10-12 Thread aum strut
eMessageInterceptor to handle 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 wrote: > > I am truely agree but can give me some example

Re: Generic Question about Struts2 Interceptor

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

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 presp

Re: Need Help For Struts2 Debugging

2010-06-03 Thread aum strut
n it all at > once, so pick some piece that you can 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 wrote: > > DO any one have other way to do this job done??? > > P

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 wrote: > Anyone knows how to submit a bug report for struts 2? > > This email with

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 config

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 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 have

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 one

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 t

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 wrote: > On 05/19/2010 09:31 AM, aum strut wrote: > >> Hi All, >> >> i am not sure is this a good place to ask

The Apache Software Foundation Receives Approval for Sale to Oracle Corporation

2010-05-18 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 i

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 Newf

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 wrote: > Comm

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. " rel="stylesheet" type="text/css"/>* On Tue, Apr 13, 2010 at 4:29 PM, Upasana Sharma wrote: > Hi > > I am new to Struts. I am trying to develop a project. The jsp pages that > are > relevant are arranged in res

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 wrote: > Yes ! > > > On Tue, Apr 6, 2010 at 11:15 PM, Krunal Dhamelia > wrote: > > Hi All, > > > > I am new to Struts 2 and wanted to use latest versions of Spring a

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 wrote: > Hi, > > > If the same property is set in struts.xml and struts.properties which one > takes precedence? also, is there any documentation where this is explained

Renaming struts.xml file

2010-03-14 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 wrote: > aum strut wrote: > >> Our requirement is to use good authentication frame

Re: Struts2 and Security

2009-06-22 Thread aum strut
without using spring at all, but as suggested if we can use it by including only some libraries than this is not a bad choice at all. Thanks Dustin for detailed explanation, we are surely going to dig in to this frame work. On Mon, Jun 22, 2009 at 3:38 PM, Dave Newton wrote: > aum strut wr

Re: Struts2 and Security

2009-06-21 Thread aum strut
the > appfuse framework. http://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 ha

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 i am using the f

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 wrote: > H

Re: Sending XML data from action to YUI

2009-01-19 Thread aum strut
ansformation!! (if you don't > configure a stylesheet you get 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 wrote: > > > > Has either of you tried the XSLT

Re: Sending XML data from action to YUI

2009-01-19 Thread aum strut
... > > ... > > and the result is ready to be used. > musachy > > > On Mon, Jan 19, 2009 at 11:40 AM, aum strut 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
ects into xml. > > musachy > > On Mon, Jan 19, 2009 at 2:27 AM, aum strut 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 f

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 which

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 URL

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 u

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 b

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 we

Re: Struts2 Data Transfer is not working

2008-11-11 Thread aum strut
5:54 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, > >

Struts2 Data Transfer is not working

2008-11-11 Thread aum strut
Hi all, I am using Model Driven approach for transfering my form data to the bean object.i have a form(JSP Page) where i have divided the form in three sections. and based on the name of these sections i have created 3 Bean classes(PO) for storing the data.Additonally i have created one more PO cl

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 call

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

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 tha

Re: Struts 2 actions executing twice

2008-10-15 Thread aum strut
mit the form and your > form will also 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

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 <[EMA

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 construct

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: Struts2 Data Transfer

2008-10-09 Thread aum strut
no result defined 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, >

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
e.coyote.http11.Http11Protocol$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

Re: Struts2 Data Transfer

2008-10-09 Thread aum strut
eld1() on implicitly as in > .getModel().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 >>

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
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 to transfer data fr

Re: Struts2 Data Transfer

2008-10-08 Thread aum strut
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: &

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 informa

Re: Action Execute Being called 2 times

2008-08-04 Thread aum strut
gt; In the action class you are not using modeldriven as you said in the > first email. > > 2008/8/4 aum strut <[EMAIL PROTECTED]>: > > Hi, > > > > I tried all things and its again not working still action is getting > called > > 2 times for each call

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 Fri,

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 w

Re: not working

2008-07-20 Thread aum strut
e or are you just > 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.js

Re: not working

2008-07-19 Thread aum strut
ssing 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 stru

not working

2008-07-19 Thread aum strut
Hi all, i am trying to include a jsp page using struts2 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 any menu option

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 w

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: >

Re: Clearing form value

2008-04-20 Thread aum strut
gt; > On Mon, Apr 21, 2008 at 5:44 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 > > >

Re: Clearing form value

2008-04-20 Thread aum strut
> the same action 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 i

Re: Clearing form value

2008-04-19 Thread aum strut
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 > &g

Re: Clearing form value

2008-04-18 Thread aum strut
action defined as being "prototype" > scope. Since actions are instantiated 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]> wr

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

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 value

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+jasp

Re: [OT] Re: Struts2 and 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

Re: [OT] Re: Struts2 and tag

2008-04-05 Thread aum strut
> Indicates the classloader couldn't 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. > &

Re: [OT] Re: Struts2 and tag

2008-04-05 Thread aum strut
s unable to find the class. myself 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:

Re: Struts2 and tag

2008-04-05 Thread aum strut
(*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]>

Struts2 and 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* ArrayList getItemCodeList() { *return* itemCodeList; } i am trying to use the display table 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 P

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 and

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 > > M

Re: Calling Action on form load

2008-03-28 Thread aum strut
ession for s:selection. > > list="%{#session.mySelectionList}" listKey="value" > listValue="label" /> > > Hope this helps, > > Jane > > -Original Message- > From: aum strut [mailto:[EMAIL PROTECTED] &g

Re: Calling Action on form load

2008-03-27 Thread aum strut
t; > Regards, > Randy Burgess > Sr. Web Applications Developer > Nuvox Communications > > > > > From: aum strut <[EMAIL PROTECTED]> > > Reply-To: Struts Users Mailing List > > Date: Thu, 27 Mar 2008 22:04:04 +0530 > > To: Struts Users Mailing List

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 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 is like t

Re: Exception in running application

2008-03-21 Thread aum strut
AIL 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 w

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: type:com.ope

  1   2   >