Sharing session beetwen HTTP and HTTPS

2004-06-17 Thread Jose Ramon Diaz
Hi all, We are triying to switch application state from HTTPS to HTTP. We want to use SSL connection only for login page. We execute a redirect if the user comes from SSL connection to the HTTP action without SSL. But the session is lost. We are using Oracle 9iAS, and we ha

RE: Theoretical debate

2004-06-17 Thread mike
There is a LOT MORE to JSF than that. The event structure is important. At 07:56 PM 6/17/2004, souravm wrote: Hi All, My understanding is JSF is nothing but an improved implementation of Struts' philosophy where all Struts'' internals are made transparent to the end user. So what end user gets is

Re: Integrating displaytag with struts

2004-06-17 Thread Ron Grabowski
--- Hari Saptoadi <[EMAIL PROTECTED]> wrote: > Hi all. > i want to use displaytag for replace logis:iterate tag > is it "name" in display:table tag have same function with > "property" in logic:iterate ? > if not, how can i set data that i want to display in my jsp ? > The front page of th

RE: Theoretical debate

2004-06-17 Thread Prasad, Kamakshya
Hi, This is a very good detail explanation given by Hans Bergsten Looking through all the other threads dealing with this question, I see that most of the points have already been mentioned but let's see if I can give you a more conclusive answer. I describe this in more detail in the book, but

RE: Theoretical debate

2004-06-17 Thread souravm
Hi All, My understanding is JSF is nothing but an improved implementation of Struts' philosophy where all Struts'' internals are made transparent to the end user. So what end user gets is - the same functionality of Struts but with lesser coding. In that way I find JSF to be logical extension of

Re: Forms/JSP

2004-06-17 Thread Chris Cranford
I failed to point out the point of all this :-) I could also have a third form: public class SearchForm extends CheckboxPagedForm It too has an action mapping with a forward to its own JSP but that JSP again includes the common JSP body content and uses the define tiles put variables to deter

Re: Forms/JSP

2004-06-17 Thread Chris Cranford
I just realized something I could do. The jsp I forward to has a tiles definition like the following: The test-body.jsp then has the following statements at the top: Then when I'm working with my form: I can al

RE: Displaying image data from the database

2004-06-17 Thread Siena, Christina \(.\)
Sorry that my last email was badly formatted so I am reposting it again. Hope its more readable. -Original Message- From: Siena, Christina (.) Sent: Thursday, June 17, 2004 7:15 PM To: [EMAIL PROTECTED] Subject: Displaying image data from the database I've been using a solution that I f

R: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone - Dev
We tested the site with Mozilla, too...(btw I use firefox as default browser) But unfortunately the stats says that 95% of the internet users use IE. So, from a commercial point of view if Mozilla doesn't see all graphic enrichments... The important is that the user can read the contents and naviga

Displaying image data from the database

2004-06-17 Thread Siena, Christina \(.\)
I've been using a solution that I found by searching the struts user archive to display image data from the database. I've developed a page that displays at most two images on one page (one is referred as the "global" image and the other the "local" image in the code shown below). Most of the tim

R: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone - Dev
Hey guys, I'm just a developer, not the editor of the website :-) Anyway, in a near future they will add more languages Simone - Simone Chiaretta www.piyosailing.com/S Any sufficiently advanced technology is indistinguishable from magic "Life is short, play hard" > -

RE: Problems with tiles...

2004-06-17 Thread David Friedman
Why are you doing a tiles:getAsString inside the tiles:put in your JSP? I use it as a normal tag, not within a tiles:put block. Just my $.02 worth. Regards, David -Original Message- From: Thiago Souza [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 1:40 PM To: [EMAIL PROTECTED]

Re: tomcat 5 breaks my tiles

2004-06-17 Thread Mark Lowe
I've been using tiles quite happily with tc5. But i never use get. I always use useAttribute and then just el to display stuff. <%@ page isELIgnored="false" %> <%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles" %> ${foo} could be a solution for you. On 18 Jun 2004, at 00:28, Matt Bathj

tomcat 5 breaks my tiles

2004-06-17 Thread Matt Bathje
Hey all. I'm attempting to upgrade my application to tomcat 5 from tomcat 4.1. Most stuff is working fine, but we have a few places where the tile is defined in tiles-defs.xml as blank, meaning: This worked fine in tomcat 4, but in the tomcat 5 version, when the jsp page tries to use that part

bean:message and null or empty keys

2004-06-17 Thread Daniel Lipofsky
I have this problem with bean:message. I would like it to output nothing if the key is null or empty. I tried these 2 forms: But I get ???en_US.null??? or ???en_US.??? for these. If I set null="true" in my message resources they throw exceptions instead. Also if myProp is an Integer the fir

Re: Theoretical debate

2004-06-17 Thread Mark Lowe
I've been playing with JSF recently. If the standard sun version had file upload support The Form, Action JSP is all very well and good but there are certain limitations to this, for example to be able to plug a non webapp front on the model you have to have a bunch of util classes that man

RE: Theoretical debate

2004-06-17 Thread Linck, Ken
Maybe its old school but I always thought true object oriented design involved encapsulation of data AND behavior together whenever possible. The trick is to know how to model correctly it to maximize encapsulation. One tries not to expose more than necessary. In order to expose as little as poss

RE: Theoretical debate

2004-06-17 Thread Robert Taylor
> In Struts, although you aren't FORCED to, what you GENERALLY do is create > three different Action classes like addItemAction, removeItemAction and > totalPriceAction, and each is called in response to a form submission. > > But isn't it kind of odd that your object model isn't following what

Re: Bug in when embedding another ?

2004-06-17 Thread Bill Siggelkow
c:choose tags are not allowed to be nested per the JSTL spec. Instead, use the logic capabilities of EL in the "test". c:choose can only contain one or more "when" tags and, optionally, an "otherwise" tag. Bill Siggelkow Konrad wrote: Hello. I'm using standard-1.0.4.jar taglib and was wondering

RE: Theoretical debate

2004-06-17 Thread Brian Lee
I think struts' concept of separating your actions from your data is admirable and should be followed. The concept of your value/transfer objects (basically the form) also having business logic sounds acceptable at first but rapidly becomes a nightmare when you try to use the same value/transfer

RE: Theoretical debate

2004-06-17 Thread mike
+1 I personally do not find what you have to or can do with Struts much of a problem at all. I like the freedom the separation gives me. It is rather like the defensive idea of Aaron Nitzovitch in chess. If you just defend a square or piece as much as required, all the defensive pieces are

Re: getMessageResources in webLogic?

2004-06-17 Thread Jacob Weber
Sure. This is some code that's executed at startup, in a ServletContextListener: import org.apache.struts.util.MessageResources; MessageResources testResources = MessageResources.getMessageResources("com.mycompany.www.config.TestResources "); String message = testResources.getMessage("testMessage"

RE: Theoretical debate

2004-06-17 Thread Hubert Rabago
> From: Frank Zammetti [mailto:[EMAIL PROTECTED] > Most likely you would have a ShoppingCart class with a number of methods in it, > things like addItem(), removeItem(), totalPrice(), etc. I follow this design on my applications, on the *business logic* tier. On that tier (whether I imple

Re: Theoretical debate

2004-06-17 Thread Ron Grabowski
> In Struts, although you aren't FORCED to, what you GENERALLY do is > create > three different Action classes like addItemAction, removeItemAction > and > totalPriceAction, and each is called in response to a form > submission. Most (if not all) the Actions in my current application extend Look

RE: Theoretical debate

2004-06-17 Thread Hookom, Jacob
Just a follow up note on my blabber below, when using struts, you have to educate developers on the lifecycle and what all the parts are to the struts equation-- when a form gets reset, when it's validated, how to switch struts modules, etc. Just take a look at this past week's user group question

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Guillermo Meyer
Brazil? What is Brasil? I think Argentina must be in this site. Simone, I think that the portal should have at least a section of Diego Armando Maradona, who was, is and will be the greatest soccer player of the history! Cheers! Guillermo -Original Message- From: Daniel H. F. e Silva [mai

RE: Theoretical debate

2004-06-17 Thread Hookom, Jacob
I completely agree with what Crysalis is trying to push, also a framework called VRaptor (vraptor.org) also pushes the same idea of moving away from the procedural weight that Struts promotes. Look at JSF, do you have actions? No, JSF just updates your POJO beans and calls methods on them. Why ha

RE: Theoretical debate

2004-06-17 Thread Amin Lalji
I recently downloaded IBATIS in order to use it for some object persistence... interestingly, their JPetStore implementation used a similar idea, although it was all struts based: Essentially, each "method" you want to call is actually mapped within the Action Mapping... so if you wanted to "sea

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Daniel H. F. e Silva
Hi Simone, Good job. Looks a very interesting soccer portal, but i agree with my brazilian mate. Where is all the content deserved by the 5 times world champions? A soccer website is not a real soccer website without content about the best soccer players in the Earth: brazilian players. By t

Theoretical debate

2004-06-17 Thread Frank Zammetti
Last night I was Googling for something and I stumbled across the Crysalis framework. I was actualyl intrigued by the underlying premise of it and I wanted to see what others thought about it. In a nutshell and in my own words, Crysalis (http://chrysalis.sourceforge.net/) has the underlying id

prob in database connectivity

2004-06-17 Thread gitanjali
Hi All, I m trying to do connectivity in my application using data source option given by struts but it is not working.can any body tell me the exact way to do connectiveity. thnx in advance. Anjali Yahoo! India Matrimony: Find your partner online.

Re: Action Mapping in the struts-config.xml When There Is No Form

2004-06-17 Thread Bill Siggelkow
Hmmm -- you seem to be missing the "type" attribute that specifies the action class. Caroline Jen wrote: I often have to call a servlet which extends Action; but, I do not have a form submitted. The action mapping in the struts-config.xml gives me problem when I leave out the 'name' attribute; fo

RE: Forms/JSP

2004-06-17 Thread Linck, Ken
I have never seen any good strategy crossing oo-concepts like inheritance and user interface patterns. I always end up back at the containment approach(Breaking your interfaces into smallest re-usable pieces). If I had the time I would collaborate with you. If you have some kind of white paper

Bug in when embedding another ?

2004-06-17 Thread Konrad
Hello. I'm using standard-1.0.4.jar taglib and was wondering if there's a bug when trying to use a tag inside of another tag? The following is causing an error in my Struts application: Some content... (Multiple locations) More conte

Re: Forms/JSP

2004-06-17 Thread mike
Hello, Chris, I sent out a note some time back on this saying that I think we should all collaborate and build something this is new on this issue. This is a major recurrent issue. The current solutions all "suck" to some extent either in bloating the session and creating difficulty with multi

Action Mapping in the struts-config.xml When There Is No Form

2004-06-17 Thread Caroline Jen
I often have to call a servlet which extends Action; but, I do not have a form submitted. The action mapping in the struts-config.xml gives me problem when I leave out the 'name' attribute; for example: I really do not have a form for this action. What should I do?

Re: Forms/JSP

2004-06-17 Thread Chris Cranford
Any thoughts anybody? - Original Message - From: "Chris Cranford" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, June 17, 2004 12:17 PM Subject: Forms/JSP I have created a form hierarchy as follows: public class CheckboxPagedForm extends ActionF

RE: Problems with tiles...

2004-06-17 Thread Thiago Souza
It's there! =) The tag is processed... When I see the source in the browser, it shows me an empty page (and yes, there is something written in blank.jsp) ... -Original Message- From: Ricardo Cortes [mailto:[EMAIL PROTECTED] Sent: quinta-feira, 17 de junho de 2004 15:01 To: Struts U

RE: Problems with tiles...

2004-06-17 Thread Thiago Souza
It's there! =) The tag is processed... When I see the source in the browser, it shows me an empty page (and yes, there is something written in blank.jsp) ... -Original Message- From: Ricardo Cortes [mailto:[EMAIL PROTECTED] Sent: quinta-feira, 17 de junho de 2004 15:01 To: Struts U

RE: Problems with tiles...

2004-06-17 Thread Ricardo Cortes
I'll bet you haven't included the Tiles tag library at the top of your JSP: <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %> -Original Message- From: Thiago Souza [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 1:40 PM To: [EMAIL PROTECTED] Subject: Problems with tiles

Problems with tiles...

2004-06-17 Thread Thiago Souza
Hi ppl, Why this isn't rendering? in master.jsp in item.content.jsp (defined for "content-layout") The definition used The "/tiles/bla

Problems with tiles...

2004-06-17 Thread Thiago Souza
Hi ppl, Why this isn't rendering? in master.jsp in item.content.jsp (defined for "content-layout") The definition used The "/tiles/bla

Re: Rendering Images

2004-06-17 Thread mike
At 09:31 AM 6/17/2004, Niall Pemberton wrote: Firstly, I found this like helpfull: http://www.mnot.net/cache_docs/ Niall, Thanks, Niall, this was very helpful. You information led me to the granddaddy of all information on this: http://www.ietf.org/rfc/rfc2616.txt. This document tells it

RE: Specifying JAAS permission on a per-action basis

2004-06-17 Thread Eric Dahnke
Just authenticate() and hasRole() methods on our user object and utilizing the session. I think the java community added too much functionality to the container level authentication earlier on, and people have become increasingly tempted to use that (the whole Realms thing) for application level

RE: Specifying JAAS permission on a per-action basis

2004-06-17 Thread Eric Dahnke
> -Original Message- > From: Adam Lipscombe [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 17, 2004 11:02 AM > To: 'Struts Users Mailing List' > Subject: RE: Specifying JAAS permission on a per-action basis > > Many thanks Eric - its easy when you know how :-) > > > I am interested t

How to handle a table with an unknown number of rows

2004-06-17 Thread DGraham
So, I can't get my head around this.  Is it possible for an ActionForm to model an HTML table with an unknown number of rows? The context is that I have a page that displays the raw results of a query.  One of the fields is always editable by the user, so I need to be able to submit a form to pe

Re: [SOLVED] Re: Struts alternative to using request.getParameterValues in an actionform?

2004-06-17 Thread atta-ur rehman
You're welcome, Asif! Now you why didn't I copy-pasted some code for you ;) ATTA - Original Message - From: "Asif Rahman" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, June 17, 2004 8:17 AM Subject: [SOLVED] Re: Struts alternative to using reque

Re: Rendering Images

2004-06-17 Thread Niall Pemberton
Firstly, I found this like helpfull: http://www.mnot.net/cache_docs/ I'm not expert, but my understanding is that you need to decide how long you are happy for the stuff to be cached (a day, a week, a month) and set the "Expires" and "Cache-Control" headers. Something like... response.se

Forms/JSP

2004-06-17 Thread Chris Cranford
I have created a form hierarchy as follows: public class CheckboxPagedForm extends ActionForm public class MaintenanceForm extends CheckboxPagedForm I did this because there are form-specific attributes for the maintenance form, but we have multiple forms which are going to need to leverage t

problems using requiredif

2004-06-17 Thread Alcÿffffe1ntara
Hi, I have some problem using requiredif, the problem is the following: I have 1 Dynamic form and two JSPs that send information (these JSPs differs in any fields) two one action, I'm trying to get that depends on the value of one field (tipPersona = 0/1)require and mask any fields. this works w

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone-dev
I don't like MS for the same motivation as you: OpenSource is better... fortuantely the MONO framework is opensource and hopefully application written for the MS.NET framework will run on the Mono too I had the same problem with MS SOAP and the old apache SOAP Simone Pilgrim, Peter wrot

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Pilgrim, Peter
> -Original Message- > From: Daniel Perry [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 16:03 > To: Struts Users Mailing List > Subject: RE: [OT] Soccer portal released goal.com > > > > Way back in April I was quite impressed by a demonstration > > Visual .Net / Managed C++ / C# talking

[SOLVED] Re: Struts alternative to using request.getParameterValues in an actionform?

2004-06-17 Thread Asif Rahman
Thanks a million Atta-ur!! Indexed properties worked! I tried using the struts nested tagblibs first, but couldnt get it to work with that, it seemed good only for display, but not retrieving objects into the actionform from the jsp page when submitting. Indexed properties definitely did the tric

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone-dev
U got the point I just sent my answer to your previus mail and here it comes your other one :-) I use Visual Studio .NET for C# and ASP.NET... from the designer point of view, the wysiwyg designer generates non standard, non cross-browser html pages.. so I alway design the page with the HT

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Daniel Perry
> Way back in April I was quite impressed by a demonstration > Visual .Net / Managed C++ / C# talking directly to a J2EE 1.4 > web service. The guy demonstrated the whole thing in under > five minutes. So I have been wondering what is the state of the > art of tools under J2EE, but I guess I will f

FW: Specifying JAAS permission on a per-action basis

2004-06-17 Thread Adam Lipscombe
Sorry, I forgot to ask - Are you still using JAAS/Tagish authentication to log a User in and set up a Principal etc? If not how do you do this? TIA -Adam -Original Message- From: Adam Lipscombe [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 16:02 To: 'Struts Users Mailing List' Subject:

RE: Specifying JAAS permission on a per-action basis

2004-06-17 Thread Adam Lipscombe
Many thanks Eric - its easy when you know how :-) I am interested to know why you chose this approach over the tagish / http://www.mooreds.com/jaas.html solution? Did you hit problems ? TIA - Adam -Original Message- From: Eric Dahnke [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 15

RE: getMessageResources in webLogic?

2004-06-17 Thread Karr, David
Without more information, it's unlikely anyone could see what is going wrong here. Show us the structure of your WAR, and that might help. > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Jacob Weber > > In my Struts app, I need to get data from a resource bundle.

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone-dev
Thank you for your congratulations... Search and advanced search will come in a future release... as will arrive other 10 different language edition Now, the real point of my email: Differences between C#/.NET and Struts/JSP *First let's speak about C# and Java:* Before the arrive of C# I hated m

R: [OT] Soccer portal released goal.com

2004-06-17 Thread Amleto Di Salle
-1 for the site... On my machine (IE on windows XP ) is not usable! The problem is with the blue background. +1 for Roby Baggio!! :-) BR Amleto -Messaggio originale- Da: Marco Mistroni [mailto:[EMAIL PROTECTED] Inviato: giovedì 17 giugno 2004 16.09 A: 'Struts Users Mailing List

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Marcelo Epstein
I can´t believe, Goal.com don´t talk about the best soccer around the World. I sugest u to write about BRAZILIAN SOCCER. Maybe u will find how many "Ronaldo´s" we have here! 8-) GOOD JOB, Marcelo - Original Message - From: "Andrew Hill" <[EMAIL PROTECTED]> To: "Struts Users Mailing List

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Pilgrim, Peter
> -Original Message- > From: Marco Mistroni [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 15:09 > To: 'Struts Users Mailing List' > Subject: RE: [OT] Soccer portal released goal.com > > > Hey, > Cool site!! Congratulations... and one little request: > More space for Roberto Baggi

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Susan Bradeen
+1 "McCormack, Chris" <[EMAIL PROTECTED]> wrote on 06/17/2004 10:13:16 AM: > I for one appreciate the post Simone. Its a good looking site and its > nice to see work that developers have spent time on and are proud of. > > Good job ! > > Chris McCormack > > -Original Message- > From:

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Andrew Hill
Not that there's anything wrong with it ;-) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 June 2004 21:59 To: Struts Users Mailing List Subject: Re: [OT] Soccer portal released goal.com You'd be surprised how many people are closet .Net developers ;

RE: Specifying JAAS permission on a per-action basis

2004-06-17 Thread Eric Dahnke
I just did this, and found it extremely simple. I eventually went away from the tagish / http://www.mooreds.com/jaas.html solution. Three steps is all it takes: -1- add this to your struts-config -2- Code // The Struts Tiles plugin implements its own RequestProcessor, so if you want //

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread James Mitchell
You'd be surprised how many people are closet .Net developers ;) -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Simone-dev" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Th

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Andrew Hill
+1 -Original Message- From: McCormack, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 June 2004 22:13 To: Struts Users Mailing List Subject: RE: [OT] Soccer portal released goal.com I for one appreciate the post Simone. Its a good looking site and its nice to see work that developers

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread McCormack, Chris
I for one appreciate the post Simone. Its a good looking site and its nice to see work that developers have spent time on and are proud of. Good job ! Chris McCormack -Original Message- From: Simone-dev [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 15:02 To: Struts Users Mailing List Subj

RE: how to implement && using tag in struts

2004-06-17 Thread Slattery, Tim - BLS
>how do i implement && and || using > > example > i need to convert > <% if( a > b && b > c) { > > } > %> > > into struts tag The easiest way is to use the JSTL "if" tag instead of the Struts logic tags: somethingorother -- Tim Slattery [EMAIL PROTECTED] --

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Marco Mistroni
Hey, Cool site!! Congratulations... and one little request: More space for Roberto Baggio! Regards marco -Original Message- From: Simone - Dev [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 13:25 To: 'Struts Users Mailing List' Subject: [OT] Soccer portal released goal.com

RE: how to implement && using tag in struts

2004-06-17 Thread mike . raath
Try a nested version: ... || would involve a few more tags. -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 14:45 To: Struts Users Mailing List Subject: RE: how to implement && using tag in struts I don't think

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone-dev
I'm just a developer... :-) I did the serverside development and the javascript + dhtml (menu) The rest, desing, css, layout design and so on was developed by a webdesigner I'm working on this engine since november Simone Robert Taylor wrote: Wow! Cool site. Good job. Did you do all page authorin

RE: how to implement && using tag in struts

2004-06-17 Thread Robert Taylor
I don't think you can. You can do this sort of thing with JSTL: robert > -Original Message- > From: Asim Ghosh [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 17, 2004 9:35 AM > To: [EMAIL PROTECTED] > Subject: how to implement && using tag in struts > > > hello guys, > >h

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Simone-dev
This is not a "bare" commercial mail.. I was just happy of my creature... it's not a pay site, not it has advertising in it.. so if u go or not I'll not earn (or better the costumer who bought the site) a cent. Anyway probably other people in the list understood the real intent of the email, wh

how to implement && using tag in struts

2004-06-17 Thread Asim Ghosh
hello guys, how do i implement && and || using example i need to convert <% if( a > b && b > c) { } %> into struts tag Asim - ALL-NEW Yahoo! Messenger - so many all-new ways to express your

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Pilgrim, Peter
> -Original Message- > From: mike [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 14:10 > To: Struts Users Mailing List; Struts Users Mailing List > Subject: RE: [OT] Soccer portal released goal.com > > > I personally object to this crass commercialism injected into > a wholly > inappro

RE: Specifying JAAS permission on a per-action basis

2004-06-17 Thread David Friedman
Pow2ACL http://pow2acl.sourceforge.net/index.html might fit your JAAS high-end needs. It also integrates with Struts. Regards, David -Original Message- From: Adam Lipscombe [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 9:02 AM To: 'Struts Users Mailing List' Subject: Specifyin

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Pilgrim, Peter
> -Original Message- > From: Simone - Dev [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 13:25 > To: 'Struts Users Mailing List' > Subject: [OT] Soccer portal released goal.com > > > Hello All, > I know this is a lot off-topic, but I'm so proud of the portal I > designed and developed tha

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread mike
I personally object to this crass commercialism injected into a wholly inappropriate environment. I especially dislike people who apologize while doing something they know is wrong. I would encourage members of this list not to look at this site because of this. I know I won't. Michael At 06

RE: [OT] Soccer portal released goal.com

2004-06-17 Thread Robert Taylor
Wow! Cool site. Good job. Did you do all page authoring(javascript, css, dhtml, graphics, etc...) or just server side development (architecture, site design/structure, functionality, etc...)? How long did it take to design and implement? robert > -Original Message- > From: Simone - Dev

Specifying JAAS permission on a per-action basis

2004-06-17 Thread Adam Lipscombe
Folks, I am using JAAS with the Tagish libraries to authenticate users via a JDBC lookup. This works. What I need to do now is to specify permissions on an action-by-action basis, but I am unclear about how this is achieved... Dan Moore's excellent tutorial at http://www.mooreds.com/jaas.html

Re: Problems with 'properties' of tags.

2004-06-17 Thread Bill Siggelkow
Well, I have not tested your case explicitly; however, the Struts/JSP/JSTL tags are all based on the JavaBeans spec for getters and setters --- property: fooBar accessor: getFooBar() {...} mutator: setFooBar(FooBar aFooBar) {...} So, it's best to use that standard for your property names if poss

RE: Rendering Images

2004-06-17 Thread Guillermo Meyer
I was thinking that perhaps the problem of rendering an alternative image when the image is not found could be resolved with Xkins. You could create a ImageTemplateProcessor. This processor can receive the image name, verify if exists in the web server disk and if true, return the html image tag wi

[OT] Soccer portal released goal.com

2004-06-17 Thread Simone - Dev
Hello All, I know this is a lot off-topic, but I'm so proud of the portal I designed and developed that I'd like you all know that it has just been released a worldwide soccer portal named Goal.com (www.goal.com) and that now it's having a lot of news and live results and live netcasting on the eur

RE: j2EE question

2004-06-17 Thread Marco Mistroni
Hello, Yeah I suppose so J2EE is not only EJB/CMP.. Regards marco -Original Message- From: Richard Raquepo [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 04:08 To: Struts Users Mailing List Subject: j2EE question Hi everyone, does using struts means your a j2ee progra

RE: Setting locale for the webapp

2004-06-17 Thread Tim Penhey
> -Original Message- > From: Pilgrim, Peter [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 09:53 > To: 'Struts Users Mailing List' > Subject: RE: Setting locale for the webapp > > > -Original Message- > > From: Tim Penhey [mailto:[EMAIL PROTECTED] > > Sent: 17 June 2004 08:51 > > To

Problems with 'properties' of tags.

2004-06-17 Thread hugoserrano
Hi all, In a i can't have any associated with any property named like "X_" cause i get the error "Error 500: No getter method for property X_ of bean org.apache.struts.taglib.html. ". I have noticed that the names can be like "_XXX" or "XX_XXX", this is, i can not have

RE: Setting locale for the webapp

2004-06-17 Thread Pilgrim, Peter
> -Original Message- > From: Tim Penhey [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 08:51 > To: Struts-User > Subject: Setting locale for the webapp > > > I have a web application where I want to have the locale > defined in the deployment > descriptor somewhere. > > The web applica

Integrating displaytag with struts

2004-06-17 Thread Hari Saptoadi
Hi all. i want to use displaytag for replace logis:iterate tag is it "name" in display:table tag have same function with "property" in logic:iterate ? if not, how can i set data that i want to display in my jsp ?

RE: Using a servlet code within Struts

2004-06-17 Thread Paul McCulloch
Although this is possible, as other posters have said, I'd ask what you are going to achieve by doing this? The servlet you already have will quite happily work alongside the Struts servlet without any problems. If you've got existing servlets you want to migrate to Struts & model 2 then I'd do ro

RE: Diff. b/w and

2004-06-17 Thread Tim Penhey
produces type tags whereas produces type tags. > -Original Message- > From: Asim Ghosh [mailto:[EMAIL PROTECTED] > Sent: 17 June 2004 08:57 > To: [EMAIL PROTECTED] > Subject: Diff. b/w and > > > hello guys, > > can any one tell me what is the diff. b/w and > > > Asim >

PLEASE IGNORE

2004-06-17 Thread brati . sankarghosh
I am sorry about this mail. I was intending to send it to some one else. Sorry Again. Brati Sankar Ghosh Tata Consultancy Services Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com [EMAIL PROTECTED] 06/17/2004 01:35 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]

RE: Diff. b/w and

2004-06-17 Thread mike . raath
The difference is that renders an tag of type image, whereas renders an tag. -Original Message- From: Asim Ghosh [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 08:57 To: [EMAIL PROTECTED] Subject: Diff. b/w and hello guys, can any one tell me what is the diff. b/w and Asim

Re: :)

2004-06-17 Thread brati . sankarghosh
Very Important Files Under Sieze(VIRUS). Brati Sankar Ghosh Tata Consultancy Services Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com [EMAIL PROTECTED] 06/17/2004 12:58 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "Struts Users Mailing List" <[EMAIL

RE: Setting locale for the webapp

2004-06-17 Thread Andrew Hill
You could override processLocale() in the RequestProcessor to set the locale to whatever you configured -Original Message- From: Tim Penhey [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 June 2004 15:51 To: Struts-User Subject: Setting locale for the webapp I have a web application where I

Diff. b/w and

2004-06-17 Thread Asim Ghosh
hello guys, can any one tell me what is the diff. b/w and Asim - ALL-NEW Yahoo! Messenger - so many all-new ways to express yourself

Setting locale for the webapp

2004-06-17 Thread Tim Penhey
I have a web application where I want to have the locale defined in the deployment descriptor somewhere. The web application acts as the GUI for a system that will be sold to clients. The clients will then have their own tomcat / DB instance running. I am using the struts I18N to allow multiple

Re: :)

2004-06-17 Thread biswajit . basak
What is this Biswajit Basak Tata Consultancy Services Plot  B-1, Block EP & GP Sector - V, Salt Lake Electronics Complex Kolkata - 700 091,West Bengal India Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com "Kchitij Kumar, Gurgaon" <[EMAIL PROTECTED]> 06/17/2004 12:55 PM Ple

:)

2004-06-17 Thread Kchitij Kumar, Gurgaon
Disclaimer: This message and any attachment(s) contained here are information that is confidential, proprietary to HCL Technologies and its customers. Contents may be privileged or otherw

RE: Struts alternative to using request.getParameterValues in an actionform?

2004-06-17 Thread Rajat Pandit, Gurgaon
:) -Original Message- From: Asif Rahman [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 10:44 PM To: Struts Users Mailing List; Asif Rahman Subject: Re: Struts alternative to using request.getParameterValues in an actionform? Importance: High Satish, it does not seem to work in

  1   2   >