Re: Migrating from Struts 1.2 to recent Struts

2019-03-13 Thread Dave Newton
On Tue, Mar 12, 2019 at 5:41 PM davidrobertwoos...@gmail.com < davidrobertwoos...@gmail.com> wrote: > The application uses 270 Tiles-based JSPs. It's a huge, complex user > interface. How would you approach that? > Honestly, I wouldn't--unless there's an overwhelmingly good reason to essentially

Re: Migrating from Struts 1.2 to recent Struts

2019-03-12 Thread davidrobertwoosley
Dave, The application uses 270 Tiles-based JSPs. It's a huge, complex user interface. How would you approach that? Thanks, David. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: u

Re: RE: Migrating from Struts 1.2 to recent Struts

2019-03-12 Thread davidrobertwoosley
Thanks Yasser. I'll check them out. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: Migrating from Struts 1.2 to recent Struts

2019-03-12 Thread davidrobertwoosley
Martin, Excellent info. I may contact you directly via email. Thanks. David - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: Migrating from Struts 1.2 to recent Struts

2019-03-12 Thread Martin Gainty
ctions and existing struts1 forms within struts2 as dave mentioned your first effort should be to update all of your web interfaces hth From: Dave Newton Sent: Monday, March 11, 2019 3:02 PM To: Struts Users Mailing List Subject: Re: Migrating from Struts 1.2 to

RE: Migrating from Struts 1.2 to recent Struts

2019-03-12 Thread Yasser Zamani
ail.com> wrote: > >> I'm forced to migrate a sizable application from Struts 1.2 to >> something recent, and I don't know where to start. I understand that >> Struts 1.2 is ~ancient~ history and no longer supported in any way, >> shape or form. But it

Re: Migrating from Struts 1.2 to recent Struts

2019-03-11 Thread Dave Newton
le application from Struts 1.2 to something > recent, and I don't know where to start. I understand that Struts 1.2 is > ~ancient~ history and no longer supported in any way, shape or form. But it > must be done. > > How can I accomplish

Migrating from Struts 1.2 to recent Struts

2019-03-11 Thread davidrobertwoosley
I'm forced to migrate a sizable application from Struts 1.2 to something recent, and I don't know where to start. I understand that Struts 1.2 is ~ancient~ history and no longer supported in any way, shape or form. But it must be done. How can I accomplish such a migration? Than

Re: Required Info on Upgrading Struts 1.2.x to Struts 2.3.x

2014-06-03 Thread Paul Benedict
Struts 1 uses a DTD which doesn't allow custom elements in the configuration... or does it? I have never seen this before. Cheers, Paul On Tue, Jun 3, 2014 at 4:57 AM, Lukasz Lenart wrote: > I have no idea if it is possible or not, but you can use like this > > ${['key1','key2','key3']} > >

Re: Required Info on Upgrading Struts 1.2.x to Struts 2.3.x

2014-06-03 Thread Lukasz Lenart
I have no idea if it is possible or not, but you can use like this ${['key1','key2','key3']} 2014-06-03 11:42 GMT+02:00 Janardhana Pagadala : > Hello Lukas > > Thanks for your response but the issue is not with tag. As > mentioned in my question, I would like use custom tag , etc. > in action

Re: Required Info on Upgrading Struts 1.2.x to Struts 2.3.x

2014-06-03 Thread Janardhana Pagadala
Hello Lukas Thanks for your response but the issue is not with tag. As mentioned in my question, I would like use custom tag , etc. in action in addition to the tag. Hope the questions makes sense now. Please suggest if there is a possibility to implement such feature in Struts 2.3.x Thanks i

Re: Required Info on Upgrading Struts 1.2.x to Struts 2.3.x

2014-06-02 Thread Lukasz Lenart
2014-06-03 4:09 GMT+02:00 Janardhana Pagadala : > We would like to implement similar functionality in Struts 2.3.x to match > with that of above: > > > > > > /sample.jsp > > > > *Question:* > What is the best way to implement similar functionality in

Required Info on Upgrading Struts 1.2.x to Struts 2.3.x

2014-06-02 Thread Janardhana Pagadala
Hi, I am working on a Struts migration project from Struts 1.2.x to Struts 2.3.x and need your feedback on the below. Could you please help me on this regard? *Background:* In our application, the struts-config.xml (Struts 1.2.x) has custom "action" tags which were parsed and the cor

Re: Strategy for navigation in struts 1.2

2013-04-15 Thread Ashish
Hi What is the best strategy to redirect or forward to that calling page, i dont like to do that from java script, is there some common method which i can create which can forward to this saved path in session Ashish > On April 15, 2013 at 3:24 PM Paul Benedict wrote: > > > There's nothing wron

Re: Strategy for navigation in struts 1.2

2013-04-15 Thread Paul Benedict
There's nothing wrong with storing the search criteria in the session. On Mon, Apr 15, 2013 at 2:23 PM, Ashish wrote: > Hi > I can save it in session, just dont want to add all the search criteria's > in > session, but will have to do some thing like save only last search > criteria or > form i

Re: Strategy for navigation in struts 1.2

2013-04-15 Thread Ashish
Hi I can save it in session, just dont want to add all the search criteria's in session, but will have to do some thing like save only last search criteria or form in session, Ashish > On April 15, 2013 at 12:42 PM Eric Lentz wrote: > > > Requirement 4 seems a little (unnecessarily?) restrictive

Re: Strategy for navigation in struts 1.2

2013-04-15 Thread Eric Lentz
Requirement 4 seems a little (unnecessarily?) restrictive. You obviously need to store the information somewhere. Why not the session? If not in the session or a cache, then the database would be the next likely candidate, in my opinion. You'll have to manage it by clearing information after you u

Strategy for navigation in struts 1.2

2013-04-15 Thread Ashish
Hi I have a question about designing strategy for page navigation, this is my requirement 1. There is a add new information page which can be called from 5 different pages. 2. When the addition is successful return the calling page 3. when returning to calling page, maintain search criteria on cal

Re: Reset Form values from action class - struts 1.2

2013-04-03 Thread Dave Newton
Define "not working"- how did you implement it? Dave On Apr 3, 2013 2:40 PM, "Ashish" wrote: > Hi > What is the best way to rest form values from Action class, for example i > have > an application where users adds data from a webpage and redirected to the > same > page when data is inserted su

Reset Form values from action class - struts 1.2

2013-04-03 Thread Ashish
Hi What is the best way to rest form values from Action class, for example i have an application where users adds data from a webpage and redirected to the same page when data is inserted successfully, i tried form.reset(...) method but it is not working, is there any other way to do so Ashish

Date Validation not validating 01/01/2ee0 date in struts 1.2

2013-02-20 Thread Ashish
Hi I am trying to add date validation in validation.xml file, i have it setup as below, it validates properly data entry like 0A/01/2012 or 01/A2/2012 but it makes date 01/01/2ee3 to be a valid date which is clearly not, what am i missing dateFormat MM/dd/ datePattern${dateFormat}

Re: Questions related to commons-chain.jar after upgrading from Struts 1.2 to Struts 1.3

2012-03-21 Thread Łukasz Lenart
The simplest way is to download all libs from Struts 1.3 download page and copy all of them to WEB-INF/lib (remove all other jars) Regards -- Łukasz http://www.lenart.org.pl/ mobile +48 606 323 122, office +27 11 0838747 Warszawa JUG conference - Confitura http://confitura.pl/ -

Questions related to commons-chain.jar after upgrading from Struts 1.2 to Struts 1.3

2012-03-21 Thread joann luo
Hello, After upgrading from Struts 1.2 to Struts 1.3, I copied *commons-chain.jar*to the *WEB**-**INF**\lib* directory. I still got the following exception when I logged into the application. Note: The commons-chain.jar was *never *in the WEB-INF\lib directory when this project was running

Re: Exception occurred after upgrading from Struts 1.2 to Struts 1.3.10

2012-03-20 Thread joann luo
Hello, Dave: Could you please be more specific on what logging I need to set to DEBUG level? I am using WAS. Which console in WAS I should set the DEBUG to true for logging in this case? In the project I am working on, I turned on the debug flag for the project but that is the only exception I

Re: Exception occurred after upgrading from Struts 1.2 to Struts 1.3.10

2012-03-20 Thread Dave Newton
Have you set the logging to DEBUG level and checked the logs on startup? Dave On Tue, Mar 20, 2012 at 9:48 AM, joann luo wrote: > Hello, > > Thanks for your quick responses. > > Yes. I changed the DTD definitions in all the relevant files: > > "-//Apache Software Foundation//DTD Struts Configu

Re: Exception occurred after upgrading from Struts 1.2 to Struts 1.3.10

2012-03-20 Thread joann luo
Hello, Thanks for your quick responses. Yes. I changed the DTD definitions in all the relevant files: http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd";> http://jakarta.apache.org/struts/dtds/tiles-config_1_3.dtd"; > http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd Is th

Re: Exception occurred after upgrading from Struts 1.2 to Struts 1.3.10

2012-03-19 Thread Łukasz Lenart
Did you changed DTD definition ? Regards -- Łukasz http://www.lenart.org.pl/ mobile +48 606 323 122, office +27 11 0838747 Warszawa JUG conference - Confitura http://confitura.pl/ 2012/3/19 joann luo : >  hello, > > > I downloaded the complete Struts 1.3.10 package from > http://struts.apache.

Exception occurred after upgrading from Struts 1.2 to Struts 1.3.10

2012-03-19 Thread joann luo
hello, I downloaded the complete Struts 1.3.10 package from http://struts.apache.org/download.cgi\ *struts-1.3.10-all.zip *. I updated the existing JAR files in my application. jakarta-oro.jar commons-logging.jar common

Re: struts 1.2 html:select and submit button

2011-07-06 Thread hijayanth
Hi, Can you please let how did you address your requirement of having multiple action classes? Thanks and regards, jayanth -- View this message in context: http://struts.1045723.n5.nabble.com/struts-1-2-html-select-and-submit-button-tp3477760p4558693.html Sent from the Struts - User mailing li

Re: Labels in struts 1.2

2011-06-13 Thread Jari Fredriksson
The 3rd URL works, two first seem to be stale. -- Q: How do you play religious roulette? A: You stand around in a circle and blaspheme and see who gets struck by lightning first. signature.asc Description: OpenPGP digital signature

Re: Labels in struts 1.2

2011-06-13 Thread Jari Fredriksson
t tool. It worked like charm with Struts 1.2 when I did that. Easy-to-use cross-browser tooltips. Just include the script at the beginning of the section, and invoke Tip('Tooltip text') to show and UnTip() to hide the tooltip, from the desired HTML eventhandlers. Example: My home page No con

Labels in struts 1.2

2011-06-13 Thread Pankaj Gupta
Hi All, Need quick help. I need to display label with tool tip. But not sure, if strust 1.2 has any label UI, which can be used. Appreciate your help. Thanks, Pankaj

Re: Little help with Deployment of Struts 1.2 on JBoss 5.1.0.GA

2011-04-23 Thread HarleyDudue
Thank you for answering me... What I finally did was rebuild the project from scratch using MyEclipse. I dropped in the source files and only added jar files not provided from the initital project creation. I verified my struts-config.xml fileand I got it working. Happy Camper I am

Re: Little help with Deployment of Struts 1.2 on JBoss 5.1.0.GA

2011-04-23 Thread Nikhilesh Sovani
Hi, please let me know what all things you have already searched for or googled the exception you are getting here. Servlet.service() for servlet jsp threw exception java.lang.ClassCastException: org.apache.struts.taglib.logic.IterateTei cannot be cast to javax.servlet.jsp.tagext.TagExtraInfo Al

Little help with Deployment of Struts 1.2 on JBoss 5.1.0.GA

2011-04-23 Thread HarleyDudue
I have a task to take an OLD struts application and move it to JBoss 5.1. One the surface this sounds like a very easy thing to accomplish. GG false assumption on my part. When I point my browser to the war file, I get the following: 09:43:21,595 ERROR [[jsp]] Servlet.service() for servlet

Re: Hosting for Struts 1.2 tomcat

2010-08-20 Thread erikweber
Like whether I have complete control over the lifecycle of my data. Like, privacy. -Original Message- >From: Dave Newton >Sent: Aug 20, 2010 7:14 PM >To: Struts Users Mailing List , >erikwe...@mindspring.com >Subject: Re: Hosting for Struts 1.2 tomcat > >On Fri,

Re: Hosting for Struts 1.2 tomcat

2010-08-20 Thread Dave Newton
On Fri, Aug 20, 2010 at 7:09 PM, wrote: > However, I've got lots of serious doubts about all this cloud stuff [...] Like what? Dave

Re: Hosting for Struts 1.2 tomcat

2010-08-20 Thread erikweber
and public. But that's just my opinion. -Original Message- >From: abhishek jain >Sent: Aug 9, 2010 7:55 AM >To: Struts Users Mailing List >Subject: Hosting for Struts 1.2 tomcat > >hi, >I need shared hosting for struts 1.2 on tomcat. Would anyone recommend one, &

Hosting for Struts 1.2 tomcat

2010-08-09 Thread abhishek jain
hi, I need shared hosting for struts 1.2 on tomcat. Would anyone recommend one, also what is better VPS or shared hosting for this . I am looking for lowcost , good quality . Please advice. -- Thanks and kind Regards, Abhishek jain

Re: if else in XML via struts 1.2

2010-08-08 Thread Michael Dekmetzian
place of your xml file if you're happy with it having a jsp extension. Cheers Michael On 8/8/10 1:44 PM, abhishek jain wrote: > Hi friends, > I am using struts 1.2 on tomcat, 5.5 and apache, > > I am using some dynamic html which need an xml file. no problem till here, >

if else in XML via struts 1.2

2010-08-08 Thread abhishek jain
Hi friends, I am using struts 1.2 on tomcat, 5.5 and apache, I am using some dynamic html which need an xml file. no problem till here, but i need to change the content of that xml file. depending on some request parameter. I need to know is there a way, i can process and write some if else

Re: Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-08 Thread Nanu Khota
I tried the same code with tomcat 5.5.28 server and surprisingly... it worked absolutely fine. But got no clue of what's wrong with weblogic 8.0. PS: Sandeep, Iam working with struts 1.2, please see the subject line. NanuOn Fri, 02 Apr 2010 00:14:44 +0530 wrote>in struts 2 we don'

Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
--- Begin Message --- Hi All, I am a newbee to struts and trying some hands on it. I was just trying to develop a simple login form but getting following exception on initial run only. - SEVERE: Error c

Error creating form bean - nullpointerexception - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
Hi All, I am a newbee to struts and trying some hands on it. I was just trying to develop a simple login form but getting following exception on initial run itself. - SEVERE: Error creating form bean of cl

RE: Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread adam pinder
seems like form definition isn't in struts config file or properly defined > Date: Thu, 1 Apr 2010 11:45:42 + > To: user@struts.apache.org > Subject: Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5

Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Vivek Gupta
Hi All, I am a newbee to struts and trying some hands on it. I was just trying to develop a simple login form but getting following exception on initial run only. - SEVERE: Error creating form bean of cla

Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread nanukhota
Hi All, I am a newbee to struts and trying some hands on it. I was just trying to develop a simple login form but getting following exception on initial run only. - SEVERE: Error creating form bean of class

Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
Hi All, I am a newbee to struts and trying some hands on it. I was just trying to develop a simple login form but getting following exception on initial run only. - SEVERE: Error creating form bean of class

Re: Struts 1.2.x and File I/O

2009-12-23 Thread vineith kaul
orks > > > okay. That led me to wonder if it was just me messing up the code, or > > Struts > > > only seeing the directories on the server on which it is installed, and > > > that's what I want to know. > > > > > > Thanks,

Re: Struts 1.2.x and File I/O

2009-12-23 Thread Dan Vargas
installed, and > > that's what I want to know. > > > > Thanks, > > Dan > > -- > > View this message in context: > > http://old.nabble.com/Struts-1.2.x-and-File-I-O-tp26903855p26903855.html > > Sent from the Struts - User mailing list ar

Re: Struts 1.2.x and File I/O

2009-12-23 Thread Paweł Wielgus
hat led me to wonder if it was just me messing up the code, or Struts > only seeing the directories on the server on which it is installed, and > that's what I want to know. > > Thanks, > Dan > -- > View this message in context: > http://old.nabble.com/Struts-1.2.x-a

Struts 1.2.x and File I/O

2009-12-23 Thread davargas123
okay. That led me to wonder if it was just me messing up the code, or Struts only seeing the directories on the server on which it is installed, and that's what I want to know. Thanks, Dan -- View this message in context: http://old.nabble.com/Struts-1.2.x-and-File-I-O-tp26903855p26903855

Re: File I/O in Struts 1.2.x

2009-12-14 Thread Oscar
ding it to the server, > and another for processing, and another for downloading, or something in > between? > -- > View this message in context: > http://old.nabble.com/File-I-O-in-Struts-1.2.x-tp26779909p26779909.html > Sent from the St

File I/O in Struts 1.2.x

2009-12-14 Thread davargas123
another for processing, and another for downloading, or something in between? -- View this message in context: http://old.nabble.com/File-I-O-in-Struts-1.2.x-tp26779909p26779909.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Simple two button form - Struts 1.2.x

2009-12-10 Thread Dan Vargas
Awesome, thanks. I've gotten it to do what I need. On Thu, Dec 10, 2009 at 7:12 AM, Mark Shifman wrote: > Use EventDispatchAction or just use javascript to go to the action you want > when the button is pushed. > mas > davargas123 wrote: > >> I am putting in page that loads at the beginning of m

Re: Simple two button form - Struts 1.2.x

2009-12-10 Thread Mark Shifman
Use EventDispatchAction or just use javascript to go to the action you want when the button is pushed. mas davargas123 wrote: I am putting in page that loads at the beginning of my application, and all it has two buttons that should end up forwarding to do one of two different actions. How can I

RE: Simple two button form - Struts 1.2.x

2009-12-09 Thread Kawczynski, David
dave > -Original Message- > From: davargas123 [mailto:davargas...@gmail.com] > Sent: Wednesday, December 09, 2009 3:21 PM > To: user@struts.apache.org > Subject: Simple two button form - Struts 1.2.x > > > I am putting in page that loads at the beginning of my

Simple two button form - Struts 1.2.x

2009-12-09 Thread davargas123
else{ fwd = mapping.findForward("batch"); } return fwd; } } -- View this message in context: http://old.nabble.com/Simple-two-button-form---Struts-1.2.x-tp26716992p2671

Re: Inline downloading of file with Struts 1.2

2009-11-10 Thread Daniele Development-ML
nks, Dan On Tue, Nov 3, 2009 at 2:25 PM, Mike Baranski < list-subscripti...@secmgmt.com> wrote: > > > >-Original Message- > >From: Daniele Development-ML [mailto:daniele@googlemail.com] > >Sent: Tuesday, November 03, 2009 8:58 AM > >To: Struts U

RE: Inline downloading of file with Struts 1.2

2009-11-03 Thread Mike Baranski
>-Original Message- >From: Daniele Development-ML [mailto:daniele@googlemail.com] >Sent: Tuesday, November 03, 2009 8:58 AM >To: Struts Users Mailing List >Subject: Re: Inline downloading of file with Struts 1.2 > >Hello, > >I was wondering if any of the

Re: Inline downloading of file with Struts 1.2

2009-11-03 Thread Daniele Development-ML
within the browser window. Any suggestion/help, much appreciated! Dan On Fri, Oct 30, 2009 at 7:25 PM, Daniele Development-ML < daniele@googlemail.com> wrote: > Hello, > > I'm coding a Struts 1.2 action to download file available on the server. I > need to send bac

Inline downloading of file with Struts 1.2

2009-10-30 Thread Daniele Development-ML
Hello, I'm coding a Struts 1.2 action to download file available on the server. I need to send back the file as inline so that the browser will process it within the same window. the relevant code is : response.setContentType("application/java-archive"); response.setHeader("

checkbox in table struts 1.2

2009-10-29 Thread fea jabi
I am trying to add checkboxes in table column and unable to do so. need to send a boolean value when the checkbox is checked otherwise false. * Created a bean for each row in the table Have a bean Employee firstName lastname . Bo

Re: struts 1.2 - HttpServletRequest.getRemoteUser() returns NULL

2009-10-14 Thread Jari Fredriksson
15.10.2009 7:05, Sandeep Shenvi kirjoitti: Hi, We are developing a web application with Single Sign On (SSO) feature using struts 1.2 and are using tomcat 6.0 container for deployment. We want to achieve a scenario similar to Windows Authentication. For this we want to know the user (user

struts 1.2 - HttpServletRequest.getRemoteUser() returns NULL

2009-10-14 Thread Sandeep Shenvi
Hi, We are developing a web application with Single Sign On (SSO) feature using struts 1.2 and are using tomcat 6.0 container for deployment. We want to achieve a scenario similar to Windows Authentication. For this we want to know the user (user name who has logged in to the Windows OS) who

Re: [Struts 1.2]Validation and multiple struts-config files

2009-09-08 Thread Ashish Kulkarni
HiAny ideas? On Fri, Aug 28, 2009 at 11:42 AM, Ashish Kulkarni < ashish.kulkarn...@gmail.com> wrote: > HiIf i have 2 struts-config.xml file can i have ValidatorPlugIn tag in > both struts-config.xml file, will this work?? > > I ran into some issue trying to do so, i was getting could not find >

[Struts 1.2]Validation and multiple struts-config files

2009-08-28 Thread Ashish Kulkarni
HiIf i have 2 struts-config.xml file can i have ValidatorPlugIn tag in both struts-config.xml file, will this work?? I ran into some issue trying to do so, i was getting could not find testForm in local "en_us" kind of error when trying to add client side validation For example if i have struts

How to have a gridview like control in Struts 1.2

2009-07-20 Thread lplpp
this with ease. I have tried to look into datagrid but could not find if this was the correct approach. Plesae help me. Thanks -- View this message in context: http://www.nabble.com/How-to-have-a-gridview-like-control-in-Struts-1.2-tp24564864p24564864.html Sent from the Struts - User mailing list

Re: Struts 1.2 in Tomact 5.0 giving ERRORS...

2009-07-05 Thread pasanewa
t(PoolTcpEndpoint.java:528) >>        at >> org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) >>        at >> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685) >>        at java.lang.Thr

Re: Struts 1.2 in Tomact 5.0 giving ERRORS...

2009-07-03 Thread Nils-Helge Garli Hegvik
;%@ page language="java"%> > <%@ taglib uri="http://struts.apache.org/tags-logic"; prefix="logic" %> > > > > > THIS IS it... > > > CAN ANYONE HELP me with this??? > plzz > -- > View this message in context: > http://

Struts 1.2 in Tomact 5.0 giving ERRORS...

2009-07-03 Thread pasanewa
uot;java"%> <%@ taglib uri="http://struts.apache.org/tags-logic"; prefix="logic" %> THIS IS it... CAN ANYONE HELP me with this??? plzz -- View this message in context: http://www.nabble.com/Struts-1.2-in-Tomact-5.0-giving-ERRORS...-tp24319651p24319651.htm

Struts2 and struts 1.2 combination

2009-06-10 Thread kool
HI All Currently i am working with Struts 1.2. Now i want to integrate with struts 2.0 and struts 1.2 in one project. Is it possible to have both versions in one project or any conflict will occur. Please give me a suggestions. Thanks in adv. kool -- View this message in context: http

How to visualized the last page a user was visiting in a web application where credentials are validated with struts 1.2 ???

2009-03-02 Thread Ariel
Hi everybody: I have a web application with struts 1.2 where I make the user authenticate, so the user can't enter to the application if the credentials have not been validated, when the user is surfing by the web application and after a period of inactivity the session expires he is return

Re: JDK Requirements for Struts 1.2 and 2.x

2009-01-03 Thread Randy Burgess
1.6. Randy Burgess On Dec 18, 2008, at 2:54 AM, Chris_W wrote: I had found this pages before. My problem is, that our software-provider tells me, that neither Struts 1.2 nor Struts 2.x runs on JDK 1.6 and Weblogic 10.3 I was not able to convince them that the statement in the below

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-18 Thread Paweł Wielgus
is pages before. > My problem is, that our software-provider tells me, that neither Struts 1.2 > nor Struts 2.x runs on JDK 1.6 and Weblogic 10.3 > > I was not able to convince them that the statement in the below mentioned > documentation is a minimum requirement. > > I hoped, th

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread Chris_W
I had found this pages before. My problem is, that our software-provider tells me, that neither Struts 1.2 nor Struts 2.x runs on JDK 1.6 and Weblogic 10.3 I was not able to convince them that the statement in the below mentioned documentation is a minimum requirement. I hoped, that someone can

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread Nils-Helge Garli Hegvik
t; Hey, > > I failed to find the JDK requirements for struts 1.2 and 2.x. > > Is JDK 1.6 supported for both Struts versions? > > Thanks for your help!!! > Christian > -- > View this message in context: > http://www.nabble.com/JDK-Requirements-for-Struts-1.2-and-2.x-

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread elyes sallem
http://struts.apache.org/1.2.x/userGuide/installation.html 2008/12/17 Chris_W > > Hey, > > I failed to find the JDK requirements for struts 1.2 and 2.x. > > Is JDK 1.6 supported for both Struts versions? > > Thanks for your help!!! > Christian > -- > Vie

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread elyes sallem
to find the JDK requirements for struts 1.2 and 2.x. >> >> Is JDK 1.6 supported for both Struts versions? >> >> Thanks for your help!!! >> Christian >> -- >> View this message in context: >> http://www.nabble.com/JDK-Requirements-for-Struts-1.2-and-2.

JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread Chris_W
Hey, I failed to find the JDK requirements for struts 1.2 and 2.x. Is JDK 1.6 supported for both Struts versions? Thanks for your help!!! Christian -- View this message in context: http://www.nabble.com/JDK-Requirements-for-Struts-1.2-and-2.x-tp21053363p21053363.html Sent from the Struts

RE: struts 1.2: calling an action by javascript

2008-10-31 Thread Martin Gainty
08 02:44:49 -0700 > From: [EMAIL PROTECTED] > To: user@struts.apache.org > Subject: Re: struts 1.2: calling an action by javascript > > > Yes, you can do so by using AJAX, you need to invoke a Javascript function > that makes an AJAX call to the action. > > Thank

Re: struts 1.2: calling an action by javascript

2008-10-31 Thread Sachint
: [EMAIL PROTECTED] > -- View this message in context: http://www.nabble.com/struts-1.2%3A-calling-an-action-by-javascript-tp13510349p20262635.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe

Re: help required to install struts 1.2 plugin for eclipse 3.2

2008-09-02 Thread Hardik Shah
integration.war and use it when start for new project safewraju wrote: > > hi to all, > > I am new to eclipse, can any one help me. i need instructions for > installing struts 1.2 plugin for eclipse 3.2. waiting for you peoples > reply > > -- > Rega

[OT] Re: help required to install struts 1.2 plugin for eclipse 3.2

2008-09-01 Thread Dave Newton
--- On Mon, 9/1/08, Narasimha Raju Naidu wrote: > i need to install Struts 1.2 plugin for eclipse 3.2 That doesn't help. *What* plugin? The Struts project itself doesn't have any Eclipse plugins. There's Easy Struts, there's Struts Console, there's MyEclpise (not re

Re: help required to install struts 1.2 plugin for eclipse 3.2

2008-09-01 Thread Narasimha Raju Naidu
thanks for your reply, i need to install Struts 1.2 plugin for eclipse 3.2 On 8/31/08, Dave Newton <[EMAIL PROTECTED]> wrote: > > --- On Sun, 8/31/08, Narasimha Raju Naidu wrote: > > I am new to eclipse, can any one help me. i need > > instructions f

Re: help required to install struts 1.2 plugin for eclipse 3.2

2008-08-31 Thread Dave Newton
--- On Sun, 8/31/08, Narasimha Raju Naidu wrote: > I am new to eclipse, can any one help me. i need > instructions for installing struts 1.2 plugin for > eclipse 3.2. waiting for you peoples reply Which plugin? It should be installable like any other Eclipse plugin--you should either

help required to install struts 1.2 plugin for eclipse 3.2

2008-08-30 Thread Narasimha Raju Naidu
hi to all, I am new to eclipse, can any one help me. i need instructions for installing struts 1.2 plugin for eclipse 3.2. waiting for you peoples reply -- Regards, Narasimha Raju.Naidu Hyderabad. uni...

multiple sessions created in struts 1.2.x on 404 new request... bug? [S1]

2008-08-20 Thread whizdom
ter1 will result in a new session! I use LamdaProbe for monitoring the number of sessions, but Tomcat Manager should show that info as well... Anyone with a solution to ensure that only one session is created? Thanks. -V. -- View this message in context: http://www.nabble.com/multiple-sessions-c

Re: Is it a bug in Struts 1.2 that you can't iterate through a java.util.Set?

2008-07-31 Thread Ylva Degerfeldt
Thank you, Laurie! But I'm going to switch to Struts 2 now so that issue is not so important anymore. Thanks anyway! /Ylva On Wed, Jul 30, 2008 at 11:11 PM, Laurie Harper <[EMAIL PROTECTED]> wrote: > Ylva Degerfeldt wrote: >> >> Hi everyone, >> >> I

Re: Is it a bug in Struts 1.2 that you can't iterate through a java.util.Set?

2008-07-30 Thread Laurie Harper
Ylva Degerfeldt wrote: Hi everyone, I'm using Struts 1.2 (bundled with NetBeans 5.5.1) and I've noticed that I can't iterate through a java.util.Set using the logic:iterate tag. The code that I've tried: I get this exception: javax.servlet.ServletException: javax.serv

Is it a bug in Struts 1.2 that you can't iterate through a java.util.Set?

2008-07-30 Thread Ylva Degerfeldt
Hi everyone, I'm using Struts 1.2 (bundled with NetBeans 5.5.1) and I've noticed that I can't iterate through a java.util.Set using the logic:iterate tag. The code that I've tried: I get this exception: javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot

Re: struts 1.2: calling an action by javascript

2008-07-25 Thread dvdface
hanks & greetings from Berlin > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > you can use DWR to achieve this job -- View this message in context: http://www.nabble.com/struts-1.2%3A-

Re: struts 1.2 html:select and submit button

2008-03-18 Thread Antonio Petrelli
2008/3/18, Sonu S <[EMAIL PROTECTED]>: > 1) there is one submit button on that page and one action is associated with > that submit button. i can call the associated action class once the user > finish the form and click the submit button. When user select from list i > need to call another act

Re: struts 1.2 html:select and submit button

2008-03-17 Thread Sudhan Maharjan
HI, > > I am using struts 1.2 in my web application. I have to display one > list > > list will be build dynamically. User can select any option. base on the > user's selection page will be refreshed (need to hit the database and > display information in other fiel

struts 1.2 html:select and submit button

2008-03-17 Thread Sonu S
HI, I am using struts 1.2 in my web application. I have to display one list list will be build dynamically. User can select any option. base on the user's selection page will be refreshed (need to hit the database and display information in other fields on same page.) I need to kno

Re: struts 1.2: calling an action by javascript

2008-01-02 Thread prasad.dls
know a lot of javascript :-( > > thanks & greetings from Berlin > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- View this message in context: http://www.nabble.com/struts-1.2%3A-calling-an-actio

How to use modules without *.do servlet-mapping in Struts 1.2?

2007-12-13 Thread Mark Piper
How do I get modules to work with URLs like these: "http://server.com/webApp/module1/action1"; "http://server.com/webApp/module2/action2"; Alternatively, is it now allowed to have multiple ActionServlets in one webapp? If so, I can use that technique rather than modules. Here's what's happeni

How to get the size of uploadded file before it is transferred from client to server with html:file tag of struts 1.2?

2007-12-05 Thread William King
We can use the validate method of actionform class to check whether the size of uploadded file has exceeded the max size.but,do we really have to upload that file completely before check? if i upload a very large file,maybe several g bytes,then it taks a very long time to transfer that file from cl

How to check whether the uploaded file exists when using html:file tag of struts 1.2?

2007-12-05 Thread ang jin
when i upload file with html:file tag of struts 1.2,how can i judge whether the inputted file path is a valid one? the development enviroment is tomcat+struts+eclipse. i once want to check it in the validate method of corresponding actionform.but in debug mode,after i input a invalid file path

Re: struts 1.2: calling an action by javascript

2007-11-13 Thread Friend Here
ds, e-mail: [EMAIL PROTECTED] > -- View this message in context: http://www.nabble.com/struts-1.2%3A-calling-an-action-by-javascript-tf4725382.html#a13723779 Sent from the Struts - User mailing list archive at Nabble.com. - To u

  1   2   3   4   >