Re: problems when migrating Struts 1.0 to Struts 1.1 on WebSphere?

2006-05-17 Thread Lionel
I use struts 1.1 on a WAS 5.0.2 without any problem. I develop with WSAD 5.0.0 Emilia Ipate [EMAIL PROTECTED] a écrit So, now, in order to upgrade to Struts 1.1, we have already upgraded to JSP 1.2, Servlet 2.3 and WebSphere Application Server v5 (using as IDE: WSAD 5.1.2). So

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
Here is an example. You can make the cache values dynamic. I assume you know how to use class loaders to get your classpath dynamically, which is what Classpath.WEB_INF does. This solution involves having one folder where you store all your resources, separating them into subfolders named

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
Here is a use of the previous code, Liu. CRACKWILLOW is used instead of the usual .do. html:img src='cache.CRACKWILLOW?file=flags/great_britain.gif' height='18' border='0'/ Here is the Struts config. action path='/cache' scope='request' type='

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
That is irrelevant. You miss the point. You can run Flash dynamically by varying the content. Flash has an action script. Gainty's point is useful. The fact that Flash or JS run locally is irrelevant. In fact, I create my Flash on the backend dynamically. On 5/16/06, Dave Newton [EMAIL

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
Probably correct but a work-intensive solution. A generic solution would be better. On 5/16/06, Bart Busschots [EMAIL PROTECTED] wrote: Hi, This is probably a simple problem with relative paths, just do a view-source on the generated page to see what's going on. That or right click and 'view

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread M.Liang Liu
H,thanks a lot Dakota Jack! It costs time for me to understand your cool solution to problems of this kind. Thank you. On 5/17/06, Dakota Jack [EMAIL PROTECTED] wrote: Actually, in a real sense it was. You have to deliver the flash file to the Flash plugin, after all. That is a

RE: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread David G. Friedman
Funny, but it almost seemed like D.J wrote a fancy way of saying this: If you don't have the Flash plugin installed in your browser then it won't work What a practical answer (add sarcasm here). Regards, David / [EMAIL PROTECTED] On 5/17/06, Dakota Jack [EMAIL PROTECTED] wrote: Actually, in

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dave Newton
David G. Friedman wrote: If you don't have the Flash plugin installed in your browser then it won't work No no, it's just not knowing the difference between a technology-independent path issue, which is Struts, and a problem with the technology itself. It wouldn't have mattered what was

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
Well, you ought to try doing it on your own. That would really cost you time. ///;-) On 5/17/06, M.Liang Liu [EMAIL PROTECTED] wrote: H,thanks a lot Dakota Jack! It costs time for me to understand your cool solution to problems of this kind. Thank you. On 5/17/06, Dakota Jack [EMAIL

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-17 Thread Dakota Jack
Friendman, you are completely missing the boat. Do you know how the src parameter works in Flash? Give me a break! Don't read into my comments what you might have meant. On 5/17/06, David G. Friedman [EMAIL PROTECTED] wrote: Funny, but it almost seemed like D.J wrote a fancy way of saying

I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread M.Liang Liu
Hi,guys! I am meeting with a problem when I tried to insert a flash to my pages.Iuse Tiles plug-in and it works well. I put a flash in my header.jsp and the flash can display as expected as I typed the very url of this page.But when I put this page in my layout.jsptiles files,nothing

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread M.Liang Liu
My GOD! The same thing happened when I try to insert an image!! Help,please. On 5/16/06, M.Liang Liu [EMAIL PROTECTED] wrote: Hi,guys! I am meeting with a problem when I tried to insert a flash to my pages.I use Tiles plug-in and it works well. I put a flash in my header.jsp and

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Emmanouil Batsis
M.Liang Liu wrote: My GOD! The same thing happened when I try to insert an image!! * Have you tried accessing the URL of the image directly from your browser? What is the response? * Anything in the logs? Manos

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Bart Busschots
Hi, This is probably a simple problem with relative paths, just do a view-source on the generated page to see what's going on. That or right click and 'view image' to see what URL the image is being retrieved from. I'd wager it won't be what you're expecting and that will be the cause of

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Christian Bollmeyer
This is kind of trivial and not related to Tiles at all. Fact is, your Flash thing or even the image, if you like, are not found because their URLs are incorrect. Solution is to specify context-relative URLs like this (JSP 2.0): img src=${pageContext.request.contextPath}/myImage.jpg and the

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Martin Gainty
problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles This is kind of trivial and not related to Tiles at all. Fact is, your Flash thing or even the image, if you like, are not found because their URLs are incorrect. Solution is to specify context-relative URLs like this (JSP 2.0

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Dave Newton
Martin Gainty wrote: My cursory understanding of Flash is that it runs as a Gateway thru Jrun Container I invite you to look at http://www.adobe.com/support/documentation/en/flash/ What? Flash runs locally. Dave - To

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Wendy Bossons
If you just want to embed a flash movie, the following is an example: OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0; WIDTH=550 HEIGHT=400 id=myMovieName PARAM NAME=movie

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Dave Newton
Wendy Bossons wrote: If you just want to embed a flash movie, the following is an example: The original poster was having a (probable) relative path issue; I don't think it was a don't-know-how-to-embed-flash problem. Dave -

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread M.Liang Liu
Thanks a lot for your immediate reply which helped me a lot to resolve this problem. The solution *Christian Bollmeyer *provided is just fine;I make the image display properly;* **Bart Busschots's *advice is of great useful,I check all my webapp to make sure all the things go as expected.*

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread Dakota Jack
Using standard URLs is just a guarantee that you will keep having these sorts of problems. I use an action to deliver all images, including flash, or other resources, CSS, etc. I would suggest you do the same and you will never have to worry about this recurrent problem again. On 5/16/06,

Re: I've got a big problem:Can NOT insert flash into jsp---using struts 1.1 and Tiles

2006-05-16 Thread M.Liang Liu
*Dakota Jack,*your solution is awesome;cool. Actually I am a freshman to struts;as a result,I need your help to do the same as you. **Greatly appreciated if you send your code of the very action class which is to deliver all images or other resources. Thanks . On 5/17/06, Dakota Jack [EMAIL

RequestUtils.message in struts 1.1

2006-04-24 Thread Garner Shawn
I'm trying to get my Spanish text using the RequestUtils.message method. I get my English just fine when using the following but when the locale is set to Spanish in the action class then this doesn't work: RequestUtils.message(pageContext, Globals.MESSAGES_KEY, Globals.LOCALE_KEY, (String)

Struts 1.1 ApplicationResources.properties

2006-03-10 Thread Yariel Ramos Moreno
Hi: I have a LookupDispatchAction in my application. In the JSP mapped to this action, I need 2 submit buttons with the same name (Search) but with differents funtionalities. In my ApplicationResource.properties file I have defined 2 diferent properties with the same value: search.go=Search

RE: Struts 1.1 and IExplorer

2006-03-08 Thread Krishna, Mattam \(M.\)
, 2006 7:40 AM To: user@struts.apache.org Subject: Struts 1.1 and IExplorer Hello: I'm developing a web application using Struts 1.1 and Tiles. I have a tile for searchs consisting in a JSP with the following code: . html:form action=/search table width=100% border=0 cellpadding=0

RE: Struts 1.1 and IExplorer

2006-03-08 Thread Yariel Ramos Moreno
Hello Krishna: Here is the code for the action-mapping: action-mappings action attribute=searchForm input=/pages/search.jsp name=searchForm parameter=searchType path=/search scope=request

Struts 1.1 and IExplorer

2006-03-07 Thread Yariel Ramos Moreno
Hello: I'm developing a web application using Struts 1.1 and Tiles. I have a tile for searchs consisting in a JSP with the following code: . html:form action=/search table width=100% border=0 cellpadding=0 cellspacing=0 tr td colspan=3Buscar Noticias/td /tr

Re: Struts 1.1 and IExplorer

2006-03-07 Thread Michael Jouravlev
On 3/7/06, Yariel Ramos Moreno [EMAIL PROTECTED] wrote: When I execute my application in Mozila Firefox, pressing Enter in the input area, it works fine and forwards to showSearch correctly. But when execute it in Internet Explorer, I get the following exception: SEVERE: Servlet.service()

Is Validator 1.2 compatible with Struts 1.1

2006-02-13 Thread Kalra, Ashwani
Hi, I want to use validator 1.2 with struts 1.1. The reason is that Validator 1.2 provides facility for reducing the size of struts-validator.xml file for multiple language and countries. Another question is how do I use non-default locale with struts for printing error messages

RE: [OT] Re: Struts 1.1 issue (myEclipse+Jboss 3.2.5+SQL Server 2000)

2006-02-09 Thread Jitendra Kumar
to the server/default/lib directory. 1. Commons-pool-1.2.jar 2. Commons-dbcp-1.2.1.jar Regards, Jitendra -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 5:48 PM To: Struts Users Mailing List Subject: [OT] Re: Struts 1.1 issue (myEclipse+Jboss 3.2.5

Struts 1.1 issue (myEclipse+Jboss 3.2.5+SQL Server 2000)

2006-02-08 Thread Jitendra Kumar
I am writing this mail after spending a lot of time struggling with the stuff mentioned in subject line. My Setup 1. myEclipse IDE 2. Struts Version 1.1 3. JDK 1.5 4. Jboss 3.2.5 (Please don't ask me to go to Jboss mailing list :-( ) 5. SQL Server 2000 (This server is running on a remote win

[OT] Re: Struts 1.1 issue (myEclipse+Jboss 3.2.5+SQL Server 2000)

2006-02-08 Thread Dave Newton
Jitendra Kumar wrote: Using the above I simply want to print the records of any table in my SQL Server 2K DB. The problem: I am not able to do the above. I have tried changing some files in Jboss. I have copied some jars of DB Drivers in WEB-INF/lib folder etc.

Re: Struts-1.1 Tiles exception error page

2006-02-02 Thread Laurie Harper
I'm going to take a look at 1.2.4 migration. Vladislav Pernin Vladislav Pernin wrote: Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect user on a JSP error page when an errors occurs. I also need to send an email, that can be done from the JSP error

Re: Struts-1.1 Tiles exception error page

2006-02-01 Thread Vladislav Pernin
I just found in the 1.2.4 release note that this has been resolved. So I'm going to take a look at 1.2.4 migration. Vladislav Pernin Vladislav Pernin wrote: Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect user on a JSP error page when an errors

Re: Struts-1.1 Tiles exception error page

2006-02-01 Thread Vladislav Pernin
at 1.2.4 migration. Vladislav Pernin Vladislav Pernin wrote: Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect user on a JSP error page when an errors occurs. I also need to send an email, that can be done from the JSP error page or from an exception handler

Re: Struts-1.1 Tiles exception error page

2006-02-01 Thread Laurie Harper
? Vladislav Pernin Vladislav Pernin wrote: I just found in the 1.2.4 release note that this has been resolved. So I'm going to take a look at 1.2.4 migration. Vladislav Pernin Vladislav Pernin wrote: Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect

Re: Struts-1.1 Tiles exception error page

2006-02-01 Thread Vladislav Pernin
note that this has been resolved. So I'm going to take a look at 1.2.4 migration. Vladislav Pernin Vladislav Pernin wrote: Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect user on a JSP error page when an errors occurs. I also need to send an email

Struts-1.1 Tiles exception error page

2006-01-31 Thread Vladislav Pernin
Hi all, I'm working in an Struts-1.1 tiles environment and I need to be able to redirect user on a JSP error page when an errors occurs. I also need to send an email, that can be done from the JSP error page or from an exception handler. The global-exceptions declared in the struts

pitfalls when moving from Tomcat 5.0 to 5.5 (Struts 1.1)?

2006-01-06 Thread Holger Stratmann
Hello everybody, I have a Struts 1.1 application running in Tomcat 5.0. I THINK the transition to Tomcat 5.5 should be smooth, as a) the struts part should work pretty much in different Tomcats? b) Tomcat 5.0 to 5.5 is only a minor release, so it should be very compatible? However, I have

Struts 1.1 and Validation

2005-10-28 Thread April Francis
On Struts 1.1, does the html:cancel tag work? Example: If I click on the cancel button below, will validation be ignored? html:cancel onClick=bCancel=true; bean:message./ html:cancel I have put the above in my jsp, but the struts validation still runs when I use the cancel button. I'm

Re: Struts 1.1 and Validation

2005-10-28 Thread Martin Gainty
using html:cancel bypasses form bean validate method http://struts.apache.org/struts-taglib/tagreference-struts-html.html#cancelHTH- Original Message - From: April Francis [EMAIL PROTECTED] To: user@struts.apache.org Sent: Friday, October 28, 2005 12:30 PM Subject: Struts 1.1

Re: Struts 1.1 and Validation

2005-10-28 Thread pantichd
: Struts 1.1 and Validation Struts Users Mailing List [EMAIL PROTECTED] he.org

Re: Struts 1.1 and Validation

2005-10-28 Thread Martin Gainty
forwarding to LogonAction I hope this helps you.. Martin- - Original Message - From: April Francis [EMAIL PROTECTED] To: user@struts.apache.org Sent: Friday, October 28, 2005 4:01 PM Subject: Re: Struts 1.1 and Validation Martin Gainty mgainty at hotmail.com writes: using

Problem XHTML Struts 1.1 amp;

2005-09-30 Thread Thomas Brogaard
Hi We are changing our site to XHTML but we have a problem whith html:link. When we are validating our site it is not valid because html:link use instead of amp; Example ?distance=100kmmax=0type=0yearmin=1985 In our jsp page we have placed html:xhtml/ in the top of all out jsp pages.

Version information for Struts Commons libraries included with Struts 1.1

2005-08-26 Thread Richard Yee
Does anyone know how to determine the versions of the commons libraries that are included as part of Struts? Specifically, I need to find out the versions of the commons libraries that are part of the Struts 1.1 distribution. I am using the display tag library (www.displaytag.org) and found

Re: Version information for Struts Commons libraries included with Struts 1.1

2005-08-26 Thread Laurie Harper
Richard Yee wrote: Does anyone know how to determine the versions of the commons libraries that are included as part of Struts? Specifically, I need to find out the versions of the commons libraries that are part of the Struts 1.1 distribution. I am using the display tag library

Re: Version information for Struts Commons libraries included with Struts 1.1

2005-08-26 Thread Wendy Smoak
From: Richard Yee [EMAIL PROTECTED] Does anyone know how to determine the versions of the commons libraries that are included as part of Struts? Specifically, I need to find out the versions of the commons libraries that are part of the Struts 1.1 distribution. Scroll down to the What's

Re: Version information for Struts Commons libraries included with Struts 1.1

2005-08-26 Thread Laurie Harper
Wendy Smoak wrote: From: Richard Yee [EMAIL PROTECTED] Does anyone know how to determine the versions of the commons libraries that are included as part of Struts? Specifically, I need to find out the versions of the commons libraries that are part of the Struts 1.1 distribution. Scroll down

[PARTIALLY SOLVED] RE: handleConfigException in Struts 1.1

2005-08-24 Thread Pilgrim, Peter
: +44-(0)207-883-4497 -Original Message- From: Pilgrim, Peter [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 09:51 To: Struts User Apache (E-mail) Subject: handleConfigException in Struts 1.1 (I still need the source code for Struts 1.1) My real problem is a Struts 1.1

handleConfigException in Struts 1.1

2005-08-23 Thread Pilgrim, Peter
(I still need the source code for Struts 1.1) My real problem is a Struts 1.1 application ( my client does not want to upgrade 1.2. ) deployed on a WebLogic 8.1 Server. The application fails to deploy because of a parsing error. Has anyone come across this type of stack trace before? 22

Re: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Nicolas De Loof
I've put it on http://loof.free.fr/jakarta-struts-1.1-src.zip Hope it will help you. Nico. Pilgrim, Peter a écrit : Can anyone tell me where I can download the full Struts 1.1 source code other than http://archive.apache.org/dist/struts/ which is being blocked by my clients corporate

RE: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Pilgrim, Peter
First Boston, Floor 15, 5 Canada Square, London E14 4QJ, United Kingdom Tel: +44-(0)207-883-4497 -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 09:53 To: Struts Users Mailing List Subject: Re: [URGENT] Struts 1.1 Source Download I've

Re: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Emmanouil Batsis
List Subject: Re: [URGENT] Struts 1.1 Source Download I've put it on http://loof.free.fr/jakarta-struts-1.1-src.zip Hope it will help you. Nico. Pilgrim, Peter a écrit : Can anyone tell me where I can download the full Struts 1.1 source code other than http

Re: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Emmanouil Batsis
: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 09:53 To: Struts Users Mailing List Subject: Re: [URGENT] Struts 1.1 Source Download I've put it on http://loof.free.fr/jakarta-struts-1.1-src.zip Hope it will help you. Nico. Pilgrim, Peter a écrit : Can anyone tell me where I can

[URGENT] Struts 1.1 Source Download

2005-08-23 Thread Pilgrim, Peter
Can anyone tell me where I can download the full Struts 1.1 source code other than http://archive.apache.org/dist/struts/ which is being blocked by my clients corporate security ? -- Peter Pilgrim :: J2EE Software Development Operations/IT - Credit Suisse First Boston, Floor 15, 5 Canada

Re: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Ed Griebel
:[EMAIL PROTECTED] Sent: 23 August 2005 09:53 To: Struts Users Mailing List Subject: Re: [URGENT] Struts 1.1 Source Download I've put it on http://loof.free.fr/jakarta-struts-1.1-src.zip Hope it will help you. Nico. Pilgrim, Peter a écrit : Can anyone tell me where I

RE: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Pilgrim, Peter
PROTECTED] Sent: 23 August 2005 15:15 To: Struts Users Mailing List Subject: Re: [URGENT] Struts 1.1 Source Download You know, you could have just gone here: http://archive.apache.org/dist/struts/struts-1.1/ -- James Mitchell Software Engineer / Open Source Evangelist Consulting / Mentoring

Re: [URGENT] Struts 1.1 Source Download

2005-08-23 Thread Martin Gainty
Sent: Tuesday, August 23, 2005 10:30 AM Subject: RE: [URGENT] Struts 1.1 Source Download That is not the point. The secsoft is triggering on the contents of the JAR or zip file. In other word said corporate software is reading the entire mistakenly (hash) matching on a word, and saying No way

problem with retaining form bean values - Struts 1.1

2005-08-05 Thread Shyam Anand
Hi, I'm using Struts 1.1 for my web application. I have a problem with retaining my form bean values in the following scenario: I have a JSP page with portions displayed in sequence based on user action. I have 3 buttons on the page and parts of the JSP page are displayed when the user clicks

RE: Marking fields having errors in struts 1.1

2005-07-04 Thread Kalra, Ashwani
Thanks Wendy, But I am working withd 1.1 , I think I have to customize the tags of 1.1, Or can I use struts 1.2 html tags in 1.1? Has any one faced this situation? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 05, 2005 9:50 AM To: Struts Users Mailing

Re: from struts 1.1 to struts 1.2.7 on JDev 10 g

2005-06-28 Thread Metin Erksan
I want to use struts 1.2.7. Now it works with struts 1.1 I downloaded struts 1.2.7 and extract it in a temp folder, and copied all files to /jdev/jakarta_struts/ folder. When I want to run my old application(employee), it gives me some of errors like that: Error(2

from struts 1.1 to struts 1.2.7 on JDev 10 g

2005-06-27 Thread EROL TEZCAN
Hi All, I am using JDev 10g. Now I want to use struts 1.2.7. Now it works with struts 1.1 I downloaded struts 1.2.7 and extract it in a temp folder, and copied all files to /jdev/jakarta_struts/ folder. When I want to run my old application(employee), it gives me some of errors like

RE: Can struts-1.1 support multiple configurations and multiple resources

2005-06-14 Thread Venkat Reddy Valluri
=com.sub.examp.SubResources key=sub /message-resources But again I got some problem with validation files. Can struts-1.1 support multiple validation files? Thank you Manfred --Venkat -Original Message- From: Manfred Wolff [mailto:[EMAIL PROTECTED] Sent: Tue 6/14/2005 1:12

Can struts-1.1 support multiple configurations and multiple resources

2005-06-13 Thread Venkat Reddy Valluri
Hi Can struts-1.1 support multiple configurations and multiple resources. Can some body please throw some light on this. I need it very urgent Thanks in advance --Venkat - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Can struts-1.1 support multiple configurations and multiple resources

2005-06-13 Thread Manfred Wolff
Yes it can with multiple module support. http://struts.apache.org/userGuide/configuration.html#dd_config_modules Manfred Venkat Reddy Valluri wrote: Hi Can struts-1.1 support multiple configurations and multiple resources. Can some body please throw some light on this. I need it very

RE: Can struts-1.1 support multiple configurations and multiple resources

2005-06-13 Thread Venkat Reddy Valluri
-Original Message- From: Manfred Wolff [mailto:[EMAIL PROTECTED] Sent: Mon 6/13/2005 1:47 PM To: Struts Users Mailing List Cc: Subject:Re: Can struts-1.1 support multiple configurations and multiple resources Venkat I think you don't have to deal with suffixes

Re: Can struts-1.1 support multiple configurations and multiple resources

2005-06-13 Thread Manfred Wolff
. (It is just displaying property but not value) Thank you very much --Venkat -Original Message- From: Manfred Wolff [mailto:[EMAIL PROTECTED] Sent: Mon 6/13/2005 1:47 PM To: Struts Users Mailing List Cc: Subject:Re: Can struts-1.1 support multiple

Re: Source code for Struts 1.1

2005-03-29 Thread Keng Onn
Thanks for all the replies! I've found and downloaded the source code. Btw, just to confirm, coz there are 6 folders within, namely 1. conf 2. contrib 3. doc 4. legacy 5. src 6. web The source code should be inside src/share issit? Coz there're another 7 folders within src, namely i) example,

Source code for Struts 1.1

2005-03-27 Thread Keng Onn
Hi, Does anyone know how I can get a copy of the Struts 1.1 source code? It's to help in debugging a web-app I'm working on which is developed using Struts 1.1. I've looked at the Apache website, but all it offers is the Struts 1.2.4 source / binaries / lib :( Regards, Keng Onn

Re: Source code for Struts 1.1

2005-03-27 Thread Saulo de Oliveira
anyone know how I can get a copy of the Struts 1.1 source code? It's to help in debugging a web-app I'm working on which is developed using Struts 1.1. I've looked at the Apache website, but all it offers is the Struts 1.2.4 source / binaries / lib :( Regards, Keng Onn

Re: Source code for Struts 1.1

2005-03-27 Thread Antony Paul
/repos/asf/struts/core/branches/STRUTS_1_1_BRANCH/ regards, Eugênio Saulo On Mon, 28 Mar 2005 12:17:19 +0800, Keng Onn [EMAIL PROTECTED] wrote: Hi, Does anyone know how I can get a copy of the Struts 1.1 source code? It's to help in debugging a web-app I'm working on which is developed

Re: Struts 1.1 UTF-8 problem

2005-01-10 Thread Guillaume Cottenceau
Koon Yue Lam kisstech 'at' gmail.com writes: Hi, here is the situation: Tomcat 5.25 MySQL 4.1 Struts 1.1 when I use Struts form to get some form data submited by a webpage, it is encode in latin but not utf-8. I have already set the page encoding to UTF-8 in my JSP. I need to new

Struts 1.1 UTF-8 problem

2005-01-09 Thread Koon Yue Lam
Hi, here is the situation: Tomcat 5.25 MySQL 4.1 Struts 1.1 when I use Struts form to get some form data submited by a webpage, it is encode in latin but not utf-8. I have already set the page encoding to UTF-8 in my JSP. I need to new a String specific the encoding to UTF-8 in order to save

RE: use EL in Struts 1.1

2004-10-28 Thread Kris Schneider
, not the contributed struts-el tags. Regards, David -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 11:41 PM To: 'Struts Users Mailing List' Subject: RE: use EL in Struts 1.1 Hai Am using Tomcat5 Its supporting JSP2 right

Re: use EL in Struts 1.1

2004-10-28 Thread Janelle Smith
isELIgnored=false % Remember to use the standard struts tags, not the contributed struts-el tags. Regards, David -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 11:41 PM To: 'Struts Users Mailing List' Subject: RE: use EL in Struts 1.1 Hai Am using

Re: use EL in Struts 1.1

2004-10-28 Thread Erik Weber
-el tags. Regards, David -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 11:41 PM To: 'Struts Users Mailing List' Subject: RE: use EL in Struts 1.1 Hai Am using Tomcat5 Its supporting JSP2 right Regards, Rajmahendra R. Hegde GK Bharani Software Pvt

use EL in Struts 1.1

2004-10-27 Thread Rajesh
Hai all, is it possible to use EL in Struts 1.1 ? Struts-EL how to use with Struts 1.1. Regards, Rajmahendra R. Hegde GK Bharani Software Pvt. Ltd. There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies

use EL in Struts 1.1

2004-10-27 Thread Rajesh
Hai all, is it possible to use EL in Struts 1.1 ? Struts-EL how to use with Struts 1.1. Regards, Rajmahendra R. Hegde GK Bharani Software Pvt. Ltd. There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies

Re: use EL in Struts 1.1

2004-10-27 Thread dmu2201
is it possible to use EL in Struts 1.1 ? Yes it is. Just insert this in the top of your JSP page: %@ page isELIgnored=false % Enjoy... Claus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
. -- C.A.R. Hoare -Original Message- From: dmu2201 [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 2:01 PM To: Struts Users Mailing List Subject: Re: use EL in Struts 1.1 is it possible to use EL in Struts 1.1 ? Yes it is. Just insert this in the top

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
. -- C.A.R. Hoare -Original Message- From: dmu2201 [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 2:01 PM To: Struts Users Mailing List Subject: Re: use EL in Struts 1.1 is it possible to use EL in Struts 1.1 ? Yes it is. Just insert this in the top

Re: use EL in Struts 1.1

2004-10-27 Thread dmu2201
Hi Rajesh In layout page in a tile page am passing a querystring(parameter) as ?CategoryId=3 If i need to display can i just add it as img src=images/category${request.parameter.CagegoryId}.gif width=120 height=40 I'm afraid not since the method signature is request.getParameter(String) and

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
Mailing List Subject: Re: use EL in Struts 1.1 Hi Rajesh In layout page in a tile page am passing a querystring(parameter) as ?CategoryId=3 If i need to display can i just add it as img src=images/category${request.parameter.CagegoryId}.gif width=120 height=40 I'm afraid not since

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
Mailing List Subject: Re: use EL in Struts 1.1 Hi Rajesh In layout page in a tile page am passing a querystring(parameter) as ?CategoryId=3 If i need to display can i just add it as img src=images/category${request.parameter.CagegoryId}.gif width=120 height=40 I'm afraid not since

Re: use EL in Struts 1.1

2004-10-27 Thread dmu2201
Rajesh wrote: Hai Claus, The code img src=images/category${cagegory.cagegoryId.gif} width=120 height=40 / Is not parsed and directly appairs in the html source code. You would have to use the struts html tags. I forgot to mention that, sorry. try html:img

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
PM To: Struts Users Mailing List Subject: Re: use EL in Struts 1.1 Rajesh wrote: Hai Claus, The code img src=images/category${cagegory.cagegoryId.gif} width=120 height=40 / Is not parsed and directly appairs in the html source code. You would have to use the struts html tags. I forgot

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
PM To: Struts Users Mailing List Subject: Re: use EL in Struts 1.1 Rajesh wrote: Hai Claus, The code img src=images/category${cagegory.cagegoryId.gif} width=120 height=40 / Is not parsed and directly appairs in the html source code. You would have to use the struts html tags. I forgot

Re: use EL in Struts 1.1

2004-10-27 Thread dmu2201
Rajesh wrote: :) My Boss :0 How not working for me then Should i add any taglib ??? Yeah you have to use the HTML and Bean taglibs: %@ taglib uri=/WEB-INF/tlds/struts-html.tld prefix=html % %@ taglib uri=/WEB-INF/tlds/struts-bean.tld prefix=bean % replace the uri with the relative path to

RE: use EL in Struts 1.1

2004-10-27 Thread David G. Friedman
] Sent: Wednesday, October 27, 2004 4:27 AM To: 'Struts Users Mailing List' Subject: use EL in Struts 1.1 Hai all, is it possible to use EL in Struts 1.1 ? Struts-EL how to use with Struts 1.1. Regards, Rajmahendra R. Hegde GK Bharani Software Pvt. Ltd. There are two ways of constructing

RE: use EL in Struts 1.1

2004-10-27 Thread Karr, David
- From: Rajesh [mailto:[EMAIL PROTECTED] Hai all, is it possible to use EL in Struts 1.1 ? Struts-EL how to use with Struts 1.1. Regards, Rajmahendra R. Hegde GK Bharani Software Pvt. Ltd. There are two ways of constructing a software design. One way is to make it so

RE: use EL in Struts 1.1

2004-10-27 Thread Rajesh
that there are no obvious deficiencies. -- C.A.R. Hoare -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 12:44 AM To: Struts Users Mailing List Subject: RE: use EL in Struts 1.1 Are you using

RE: use EL in Struts 1.1

2004-10-27 Thread David G. Friedman
, 2004 11:41 PM To: 'Struts Users Mailing List' Subject: RE: use EL in Struts 1.1 Hai Am using Tomcat5 Its supporting JSP2 right Regards, Rajmahendra R. Hegde GK Bharani Software Pvt. Ltd. There are two ways of constructing a software design. One way is to make it so simple

Re: use EL in Struts 1.1

2004-10-27 Thread Erik Weber
the standard struts tags, not the contributed struts-el tags. Regards, David -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 11:41 PM To: 'Struts Users Mailing List' Subject: RE: use EL in Struts 1.1 Hai Am using Tomcat5 Its supporting JSP2 right Regards

Re: Struts 1.1 iterate woes

2004-10-04 Thread Victor Grazi
That works, thanks. But does anyone have a Struts EL version? I prefer to go that route. Thanks Victor ___ Sent with SnapperMail www.snappermail.com .. Original Message ... On Sun, 3 Oct 2004 18:27:11 -0500 Hubert Rabago [EMAIL PROTECTED] wrote: I have to admit I always have trouble

Struts 1.1 iterate woes

2004-10-03 Thread Victor Grazi
We are trying to use logic:iterate in a JSP to access items in a list stored in the Form Bean by the Action class but we can't seem to get the syntax right. I am getting an error meessage from PropertyUtils that displays the index as '${index}', which indicates that that struts el expression is

Re: Struts 1.1 iterate woes

2004-10-03 Thread Addy Kapur
I have used the following syntax and it works. logic:iterate name=BForm property=bVO.lines id=bAmount indexId=idx html:hidden property=%=bVO.bLine[+idx+].name%/ html:hidden property=%=bVO.bLine[+idx+].id%/ html:hidden

Re: Struts 1.1 iterate woes

2004-10-03 Thread Hubert Rabago
I have to admit I always have trouble dealing with the iterate tag. I recently rediscovered how easy it is to do these iterations using the nested tags. Have you tried them? Maybe something like this would work for you: html:form action=/test nested:iterate property=list

Re: Struts 1.1 iterate woes

2004-10-03 Thread Victor Grazi
Thanks Addy, but I am not clear on your syntax. What is your bVO.lines? Remember my list is in my form. Also what is bLine? Not sure where my variables correspond Regards Victor .. Original Message ... On Sun, 3 Oct 2004 15:55:20 -0400 Addy Kapur [EMAIL PROTECTED] wrote: I have used the

RE: Struts 1.1 iterate woes

2004-10-03 Thread Karr, David
If ${index} is not evaluating, then this is not a Struts problem. It's an issue with the container you're using and your configuration of it. For instance, you appear to say you're using Struts-EL. Do you have the correct taglib directives to use Struts-EL as opposed to Struts? What container

How can I know the version of common-validator.jar included in struts 1.1

2004-09-14 Thread Chris
Howdy, I want to download and the common-validator.jar 's source code , so I want to know the common-validator 's version to download the right source. But can not get the version number by examine struts1.1's binary distro. Could anybody give me a hint? Regards Chris

<    1   2   3   >