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:

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
ing from Struts 1.2 to recent Struts > >Kind of depends what you're migrating it to. Roughly speaking you copy your >business logic as-is and rewrite the web interface side of things. > > >On Mon, Mar 11, 2019 at 2:16 PM davidrobertwoos...@gmail.com < >davidrobertwoos...@gmail

Re: Migrating from Struts 1.2 to recent Struts

2019-03-11 Thread Dave Newton
tion 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 migratio

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? Thanks, David

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

2014-06-03 Thread Lukasz Lenart
2014-06-03 4:09 GMT+02:00 Janardhana Pagadala jrpagad...@gmail.com: We would like to implement similar functionality in Struts 2.3.x to match with that of above: action name=index1 class=com.test.struts2.action.MyAction tag1 key1=value1 key2=value2 key3=value3 tag2

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 param tag. As mentioned in my question, I would like use custom tag tag1, tag2 etc. in action in addition to the param tag. Hope the questions makes sense now. Please suggest if there is a possibility to implement such feature in

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 param like this param name=key1${['key1','key2','key3']}/param 2014-06-03 11:42 GMT+02:00 Janardhana Pagadala jrpagad...@gmail.com: Hello Lukas Thanks for your response but the issue is not with param tag. As mentioned in my question,

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 lukaszlen...@apache.org wrote: I have no idea if it is possible or not, but you can use param like this

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 corresponding

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

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

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 ericle...@outfastsource.com wrote: Requirement 4 seems a little

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 ashi...@samarthinfo.com 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

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 pbened...@apache.org wrote:

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

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 ashi...@samarthinfo.com 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

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 constant constant-namedateFormat/constant-name

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

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: !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.3//EN http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd; !DOCTYPE tiles-definitions PUBLIC

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 joannlu...@gmail.com wrote: Hello, Thanks for your quick responses. Yes. I changed the DTD definitions in all the relevant files: !DOCTYPE struts-config PUBLIC

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

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.ziphttp://apache.mirrors.hoobly.com/struts/binaries/struts-1.3.10-all.zip *. I updated the existing JAR files in my application. jakarta-oro.jar commons-logging.jar

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 joannlu...@gmail.com:  hello, I downloaded the complete Struts 1.3.10 package from

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

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: Labels in struts 1.2

2011-06-13 Thread Jari Fredriksson
13.6.2011 13:53, Pankaj Gupta kirjoitti: 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. I have used something called wz_tooltip.js, a javascript tool. It worked like charm with Struts

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

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

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

Re: Hosting for Struts 1.2 tomcat

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

Re: Hosting for Struts 1.2 tomcat

2010-08-20 Thread Dave Newton
On Fri, Aug 20, 2010 at 7:09 PM, erikwe...@mindspring.com 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
Like whether I have complete control over the lifecycle of my data. Like, privacy. -Original Message- From: Dave Newton davelnew...@gmail.com Sent: Aug 20, 2010 7:14 PM To: Struts Users Mailing List user@struts.apache.org, erikwe...@mindspring.com Subject: Re: Hosting for Struts 1.2

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

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: if else in XML via struts 1.2

2010-08-08 Thread Michael Dekmetzian
-namexmlservlet/servlet-name url-pattern/path/to/xmlfile.xml/url-pattern /servlet-mapping Of course you can also use a jsp file in 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

Struts upgrade from 1.2 to 1.3.10 gone wrong

2010-05-26 Thread Søren Blidorf
Hi. I have upgraded my Struts application from 1.2 to 1.3.10. With minor problems at first it finally worked. Suddenly it stopped working and I guess it must be after restart of the service. I guess it is a problem with versions of the jar file, but I am not sure. Does anybody have

Upgrade from 1.2 to 1.3x

2010-05-25 Thread Søren Blidorf
Hi. I am upgrading my struts app to 1.3.10 from 1.2 In my web.xml I have configured taglib like this: taglib taglib-uri/WEB-INF/struts-bean.tld/taglib-uri taglib-location/WEB-INF/struts-bean.tld/taglib-location /taglib taglib taglib-uri/WEB-INF/struts-html.tld

Re: Upgrade from 1.2 to 1.3x

2010-05-25 Thread Struts Two
Look at the following page for migration from 1.2 to 1.3: http://wiki.apache.org/struts/StrutsUpgradeNotes12to13 - Original Message From: Søren Blidorf so...@nolas.dk To: struts-u...@jakarta.apache.org Sent: Tue, May 25, 2010 6:23:51 AM Subject: Upgrade from 1.2 to 1.3x Hi. I am

SV: Upgrade from 1.2 to 1.3x

2010-05-25 Thread Søren Blidorf
- Fra: Struts Two [mailto:struts...@yahoo.ca] Sendt: 25. maj 2010 14:56 Til: Struts Users Mailing List Emne: Re: Upgrade from 1.2 to 1.3x Look at the following page for migration from 1.2 to 1.3: http://wiki.apache.org/struts/StrutsUpgradeNotes12to13 - Original Message From: Søren

Re: SV: Upgrade from 1.2 to 1.3x

2010-05-25 Thread Mark Shifman
...@yahoo.ca] Sendt: 25. maj 2010 14:56 Til: Struts Users Mailing List Emne: Re: Upgrade from 1.2 to 1.3x Look at the following page for migration from 1.2 to 1.3: http://wiki.apache.org/struts/StrutsUpgradeNotes12to13 - Original Message From: Søren Blidorf so...@nolas.dk

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.nbsp;But got no clue of what's wrong with weblogic 8.0.nbsp;PS:nbsp;Sandeep, Iam working with struts 1.2, please see the subject line.nbsp;NanuOn Fri, 02 Apr 2010 00:14:44 +0530 wrotegt;in struts 2 we

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

2010-04-01 Thread Nanu Khota
struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.2//EN http://struts.apache.org/dtds/struts-config_1_2.dtdgt; lt;struts-configgt;nbsp; lt;data-sources /gt;nbsp; lt;form-beans gt;nbsp;nbsp;nbsp; lt;form-bean name=loginForm type=com.siemens.struts.form.LoginForm /gt; nbsp

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

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

2010-04-01 Thread Vivek Gupta
-//Apache Software Foundation//DTD Struts Configuration 1.2//EN http://struts.apache.org/dtds/struts-config_1_2.dtd struts-config data-sources / form-beans form-bean name=loginForm type=com.siemens.struts.form.LoginForm / /form-beans global-exceptions / global-forwards / action

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 From: nanukh...@rediffmail.com

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

2010-04-01 Thread Nanu Khota
struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.2//EN http://struts.apache.org/dtds/struts-config_1_2.dtdgt; lt;struts-configgt;nbsp; lt;data-sources /gt;nbsp; lt;form-beans gt;nbsp;nbsp;nbsp; lt;form-bean name=loginForm type=com.siemens.struts.form.LoginForm /gt

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

2010-04-01 Thread Nanu Khota
encoding=UTF-8? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.2//EN http://struts.apache.org/dtds/struts-config_1_2.dtd; struts-config data-sources / form-beans form-bean name=loginForm type=com.siemens.struts.form.LoginForm / /form-beans

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.html

Re: Struts 1.2.x and File I/O

2009-12-23 Thread Paweł Wielgus
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.html Sent from

Re: Struts 1.2.x and File I/O

2009-12-23 Thread Dan Vargas
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 archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org

Re: Struts 1.2.x and File I/O

2009-12-23 Thread vineith kaul
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.html Sent from the Struts - User mailing list archive at Nabble.com

File I/O in Struts 1.2.x

2009-12-14 Thread davargas123
, 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 Struts - User mailing list archive at Nabble.com

Re: File I/O in Struts 1.2.x

2009-12-14 Thread Oscar
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 Struts - User mailing list archive at Nabble.com

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

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 mark.shif...@yale.edu 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

Simple two button form - Struts 1.2.x

2009-12-09 Thread davargas123
this message in context: http://old.nabble.com/Simple-two-button-form---Struts-1.2.x-tp26716992p26716992.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr

RE: Simple two button form - Struts 1.2.x

2009-12-09 Thread Kawczynski, David
] 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 application, and all it has two buttons that should end up forwarding to do one of two different actions. How

Re: Inline downloading of file with Struts 1.2

2009-11-10 Thread Daniele Development-ML
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 Users Mailing List Subject: Re: Inline downloading of file with Struts 1.2 Hello, I

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 back the file as inline so

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 more experience people have suggestion

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(Content-disposition

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 .

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

2009-10-15 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

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
with this??? plzz -- View this message in context: http://www.nabble.com/Struts-1.2-in-Tomact-5.0-giving-ERRORS...-tp24319651p24319651.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e

Struts 1.2 in Tomact 5.0 giving ERRORS...

2009-07-03 Thread pasanewa
% %@ taglib uri=http://struts.apache.org/tags-logic; prefix=logic % logic:forward name=login/ 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.html Sent from

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 % logic:forward name=login/ 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

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 returned

Re: JDK Requirements for Struts 1.2 and 2.x

2009-01-03 Thread Randy Burgess
with 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

DisplayTag 1.2 released

2008-12-29 Thread Paul Benedict
If you are an avid fan of DisplayTag, you should know that version 1.2 was just released! http://displaytag.sourceforge.net/1.2/ Paul - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-18 Thread Paweł Wielgus
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 elyes sallem
http://struts.apache.org/1.2.x/userGuide/installation.html 2008/12/17 Chris_W christian.wu...@deutsche-leasing.com 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

Re: JDK Requirements for Struts 1.2 and 2.x

2008-12-17 Thread Nils-Helge Garli Hegvik
...@deutsche-leasing.com wrote: 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
here for struts 2.x http://struts.apache.org/2.x/index.html,you have juste to look for in google, and you find the answer 2008/12/17 elyes sallem elyes.sal...@gmail.com http://struts.apache.org/1.2.x/userGuide/installation.html 2008/12/17 Chris_W christian.wu...@deutsche-leasing.com Hey

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: 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: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-12 Thread Ariel
! Hernán J. González http://hjg.com.ar/ Hie everybody: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings Ariel

Re: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-12 Thread Néstor Boscán
to Struts 1. Suerte! Hernán J. González http://hjg.com.ar/ Hie everybody: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings

How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-07 Thread Ariel
Hie everybody: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings Ariel

Re: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-07 Thread Musachy Barroso
Very On Fri, Nov 7, 2008 at 11:31 AM, Ariel [EMAIL PROTECTED] wrote: Hie everybody: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings Ariel -- Hey you

Re: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-07 Thread stanlick
: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings Ariel

Re: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-07 Thread Néstor Boscán
, Ariel [EMAIL PROTECTED] wrote: Hie everybody: I have a project working with struts 1.2 version, I would want to know How traumatic is to migrate from struts version 1.2 to struts version 2.0 ??? Thanks in advance. Greetings Ariel

Re: How traumatic is to migrate from struts version 1.2 to struts version 2.0 ???

2008-11-07 Thread hernan gonzalez
and almost done. It was quite a job, but rather satisfying (each ActionForm deleted...is a pleasure), I'd really hate to have to go back to Struts 1. Suerte! Hernán J. González http://hjg.com.ar/ Hie everybody: I have a project working with struts 1.2 version, I would want to know How

Re: struts 1.2: calling an action by javascript

2008-10-31 Thread Sachint
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, e-mail: [EMAIL PROTECTED] For additional

RE: struts 1.2: calling an action by javascript

2008-10-31 Thread Martin Gainty
: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. Thanks, Sachin Ingo Villnow wrote: Hello, i

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 -- Regards, Narasimha Raju.Naidu Hyderabad. uni

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 for installing struts 1.2 plugin

[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 really a plugin), there may

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 check

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

  1   2   3   4   5   >