FW: [ANN] Bridgetown IoC Framework

2004-09-08 Thread Pilgrim, Peter
FYI > -Original Message- > From: Peter A. Pilgrim [mailto:[EMAIL PROTECTED] > Sent: 08 September 2004 07:12 > To: Struts Developers List > Subject: [ANN] Bridgetown IoC Framework > > > > Hi > > I have been quietly working on my own Inversion of Control lightweight > framework over the

RE: html:cancel usage

2004-09-08 Thread andy wix
Hi, Has anyone else had a problem with this? I am using Struts 1.1 but presume it has worked in this and previous versions as it must come up in almost every project. I cannot switch validation to false as my submit button does require validation. I suppose I could put the cancel and submit butto

Re: html:cancel usage

2004-09-08 Thread Yves Sy
What I usually do is check for isCancelled() in my Action (or BaseAction) before anything else so I can forward to the appropriate place if cancel was clicked. As for the validation, I had to put my validation in a private method in the Action instead of using the one in the ActionForm. On Wed, 0

Re: tiles ForwardAction

2004-09-08 Thread Yves Sy
One note about tiles is that you cannot redirect to a tiles-definition since it's not a valid URI. The usual way to get around that is to create an ActionMapping that uses a ForwardAction and pass the tiles definition as your parameter. -Yves-. On Wed, 8 Sep 2004 08:28:21 +0200, [EMAIL PROTECTED

Re: A couple of questions

2004-09-08 Thread Lionel
Marco Tedone wrote: >> Interesting, I also build commercial apps, and try to use wizards >> whenever > possible to keep things >simple for my users > > We prefer to keep things easy for us also for maintainability as we > look at the project long life term. Doing and maintain wizards with stru

Re: Validating single fields in multi-page forms

2004-09-08 Thread Langdon Stevenson
Hi Bill Thanks for your suggestion. I have switched to ValidatorActionForm for my validation and now get the desired result (validation of only the fields that appear on the specific page). So problem solved! I am curious though about your interpretation of "wizard style". The form is indeed

RE: Proper place for validation

2004-09-08 Thread Janne Mattila
Hmm, not a lot of comments on this. I guess there is a consensus on the matter (that, or no-one really gives a damn). A quick followup on this; how could I achieve both a) decoupling of my business classes from Struts b) internationalization if I validate in my business class? 1) if (alreadyExist

Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Having overcome my validation problem with help from the list (thanks Bill) I now find myself banging my head against another wall. I now have a multi-page form backed by an ActionForm and an Action that appears to work fine (stepping from one page to the next, accepting input, validating it, s

Database Mapping

2004-09-08 Thread Shailender Jain
Hai All, Will it be possible in the Struts to do some mapping between the form fields and underlining database by writing queries in the xml file. I want to develop a prototype with some functionality and do not want to do coding for this or minimal I saw similar functionality with JDBC Connectio

Re: Database Mapping

2004-09-08 Thread James Mitchell
I'm not exactly sure what you are asking. If you asking if Struts supports putting sql in the configuration files, then the answer is no. If you wanting some automatic framework to write your sql for you, then the answer is yes and no. No, you can't do it with Struts config files, but yes, it ca

Re: tiles ForwardAction

2004-09-08 Thread Michael McGrady
[EMAIL PROTECTED] wrote: Hello, is ther any way I can forward to a tile-definition? That is the only way you can ever get to a page at all in Struts, so the answer has to be "Yes". Wrong, you can forward to a JSP page or to a servlet (used in StrutsCX) or to another action or to nothi

Re: tiles ForwardAction

2004-09-08 Thread Michael McGrady
[EMAIL PROTECTED] wrote: Hello, is ther any way I can forward to a tile-definition? That is the only way you can ever get to a page at all in Struts, so the answer has to be "Yes". Wrong, you can forward to a JSP page or to a servlet (used in StrutsCX) or to another action or to nothi

Re: ActionForm with all application attributes

2004-09-08 Thread Leandro Melo
Bill, this is for sure a disadavantage. Do you see others Actually, we're suceptible to this avantage in all forms, but i agree with you that if i have a base form with all atributes the chances of things getting messed up is a log bigger. --- Bill Siggelkow <[EMAIL PROTECTED]> escreveu: >

Re: ActionForm with all application attributes

2004-09-08 Thread Leandro Melo
Bill, wait a minute, i just thought on something. I wouldn't matter if a hacker set a attributes in my BaseActionFomr, if i don't use it to build my DTOs. I mount my DTOs case specific, so i'd just ignore the hacker set attribute. But if this hacker set attribute is in my DTO, i agree that i could

Adding Tags Dynamically

2004-09-08 Thread Hadeel Rashad
Can I add struts tags dynamically after loading the page, using javascript probably??? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SV: Adding Tags Dynamically

2004-09-08 Thread hermod . opstvedt
Simple answer : no - Struts tags are converted to HTML tags during rendering -Opprinnelig melding- Fra: Hadeel Rashad [mailto:[EMAIL PROTECTED] Sendt: 9. september 2004 01:10 Til: 'Struts Users Mailing List'; [EMAIL PROTECTED] Emne: Adding Tags Dynamically Can I add struts tags dynamic

Re: Adding Tags Dynamically

2004-09-08 Thread Nicolas De Loof
- JSP tags are translated into java code during JSP compilation BEFORE any request processing. - Javascript is executed by browser AFTER reponse has been built by server. Tags must be 'statically' set in JSP What do you ant to do ? Nico. > > Can I add struts tags dynamically after loading t

RE: [ANN] Bridgetown IoC Framework

2004-09-08 Thread Robert Taylor
Peter, this sounds interesting, but what would Bridgetown offer over a more mature IoC container like Spring? robert > -Original Message- > From: Pilgrim, Peter [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 3:52 AM > To: Struts User Apache (E-mail) > Subject: FW: [ANN] B

RE: Adding Tags Dynamically

2004-09-08 Thread Daniel Perry
No! Struts tags are executed on the server. Once user has received the page, it is running on the client browser, not on the server, so struts tags are no use! What do you want to do on the client? You probably want to use just javascript! Daniel. > -Original Message- > From: Hadeel

Re: Struts messages are not displayed in JSP

2004-09-08 Thread Javen Fang
struts çæåèåçæäïæçååæï [EMAIL PROTECTED] www.matrix.org.cn On Mon, 6 Sep 2004 07:25:36 -0700 (PDT), lixin chu <[EMAIL PROTECTED]> wrote: > Hi, > I gies a strange problem, the messages are not > displayed. here is the code in my Action: > > messages.add(ActionMessages.GLOBAL_MESSAGE, new >

RE: Adding Tags Dynamically

2004-09-08 Thread Hadeel Rashad
I want when I press add input, I add the input in a definite place -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 6:09 AM To: Struts Users Mailing List Subject: Re: Adding Tags Dynamically - JSP tags are translated into java code d

[OT] RE: [ANN] Bridgetown IoC Framework

2004-09-08 Thread Pilgrim, Peter
This is off topic to the Struts list. Also not forgetting Avalon, PicoContainer, etc from my POV. Admittedly these "mature" containers have been around for sometime. Here are my motivations: 1) To scratch the itch. Build a tiny container/kernel that I could experiment with in Expresso / Struts.

Re: Database Mapping

2004-09-08 Thread Hubert Rabago
You can combine Hibernate and FormDef to get this mapping. Create your transfer objects and map them to your database using Hibernate, then use FormDef to map formbeans to your transfer objects. Hubert On Wed, 8 Sep 2004 08:20:08 -0400, James Mitchell <[EMAIL PROTECTED]> wrote: > I'm not exactl

RE: Adding Tags Dynamically

2004-09-08 Thread Daniel Perry
Do you want to do this for a single extra field? or any number of extra fields? If single, then just hide it using css, and use a bit of javascript to unhide it. If multiple, you can achieve this using struts by having the form submit, add extra item in a list (where each item represents a row),

Re: Proper place for validation

2004-09-08 Thread Hubert Rabago
Maybe there weren't a lot of comments because people agreed with Robert. :) For your followup, the reason you get one of (a) and (b) is because you're thinking that the error message should come from the business tier. I like to think that it shouldn't. Error messages are a presentation tier re

How to resolve label in ActionMessage?

2004-09-08 Thread White, Joshua A (HTSC, CASD)
Hello all, The following piece of code appears in my validate method of an actionForm. How can I make work correctly? errors.add(ActionErrors.GLOBAL_MESSAGE, new ActionMessage("errors.required","activity.description")); where "activity.description" is a key in my messages.properties file, jus

Re: How to resolve label in ActionMessage?

2004-09-08 Thread Hubert Rabago
The first parameter of the ActionMessage constructor is the message key. The rest (which are optional), are the actual parameters to the message. If your parameter is itself in need of evaluation, you'll need to do that yourself before you pass that on to ActionMessage. For that, you can call ge

RE: How to resolve label in ActionMessage?

2004-09-08 Thread White, Joshua A (HTSC, CASD)
Hubert, Are you unable to do this from an ActionForms validate method? Joshua -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 9:50 AM To: Struts Users Mailing List Subject: Re: How to resolve label in ActionMessage? The first param

Re: Adding Tags Dynamically

2004-09-08 Thread Henrique VIECILI
Ok, then you have to define a Form with an array field: private String[] values; setValues(String[] values) ... getValues() ... then you will define the input tag in your jsp (you may use or not Struts HTML tag): you should place it inside some HTML container, like or setting its id attri

Re: How to resolve label in ActionMessage?

2004-09-08 Thread Hubert Rabago
You might be able to. Action.getResources() is actually implemented as return ((MessageResources) request.getAttribute(Globals.MESSAGES_KEY)); So try that to get the message resources, then call getMessage() on that. On Wed, 8 Sep 2004 09:59:03 -0400, White, Joshua A (HTSC, CASD) <[EMAIL PROT

ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Leandro Melo
Hi, i believe that a lot of developers use BeanUtils to copy the data from ActionForms to the specific DTOs. I've used this approach, but right now i'm facing a problem, not a big one. I've allways been confused about working with dates in Java. I got a jsp where the user must input a date in the

Re: Validating single fields in multi-page forms

2004-09-08 Thread Bill Siggelkow
Well, if I recall from your original post you only wanted to validate the fields on the current page only. Validator provides support for a page attribute that you can use for wizard-style forms. Validator will use that attribute to validate form fields on the current page and any previous page

Re: ActionForm with all application attributes

2004-09-08 Thread Bill Siggelkow
True -- some people use bulk property setters like those provided by BeanUtils to move data from the ActionForm to the DTO -- I think that is primarily where you would need to be careful. Personally, I am not fond of the use of an uber form; it doesn't seem very object-oriented; however, I can

Re: Bean tag and session data issue

2004-09-08 Thread Bill Siggelkow
Are you setting scope="session" for the actions in your struts-config.xml? If so, I'd take it through a debugger. - Bill Siggelkow Langdon Stevenson wrote: Having overcome my validation problem with help from the list (thanks Bill) I now find myself banging my head against another wall. I now

500 Internal Server Error java.lang.NoSuchMethodError

2004-09-08 Thread Viral_Thakkar
Hi All, I am trying to call a method on ejb through business delegate which in turn is called by struts action class. I have created a project in Jdeveloper and this is working fine. When I created an ear file using ant script and deployed this in oc4j903 then I got following error

Re: 500 Internal Server Error java.lang.NoSuchMethodError

2004-09-08 Thread James Mitchell
I have your solution: Find out which method is being called and do not call that method, it does not exist. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Viral_Thakkar" <[EMAIL PROTECTED]> To: "Struts

RE: 500 Internal Server Error java.lang.NoSuchMethodError

2004-09-08 Thread Viral_Thakkar
Method exists both in BD and EJB still this error is coming... Below is the stack trace.. 500 Internal Server Error java.lang.NoSuchMethodError at com.tropics.web.commonservices.services.batch.B

Re: Struts XDoclet examples

2004-09-08 Thread David Durham
That's good information; I read it with vigor... As you can tell, I'm excited by the prospects of using XDoclet instead of . And, I think I get the gist of Struts related support provided in XDoclet, but I have a couple of questions. 1 -- How good is the DynaValidatorForm support? I saw the

RE: ActionForm with all application attributes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 07, 2004 5:48 PM > To: struts jakarta > Subject: ActionForm with all application attributes > > > Hi, > i sent this question yesterday, but as nowbody > answered me, i trying it again with a

RE: Proper place for validation

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Janne Mattila [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 3:49 AM > To: [EMAIL PROTECTED] > Subject: RE: Proper place for validation > > > Hmm, not a lot of comments on this. I guess there is a > consensus on the > matter (that, or no-o

RE: ActionForm with all application attributes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 5:40 AM > To: Struts Users Mailing List > Subject: Re: ActionForm with all application attributes > > > Bill, wait a minute, i just thought on something. > I wouldn't matter if a ha

Re: Struts XDoclet examples

2004-09-08 Thread David Durham
I should probably post this stuff on XDoclet's list ... David Durham wrote: That's good information; I read it with vigor... As you can tell, I'm excited by the prospects of using XDoclet instead of . And, I think I get the gist of Struts related support provided in XDoclet, but I have a couple

RE: Proper place for validation

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 6:39 AM > To: Struts Users Mailing List > Subject: Re: Proper place for validation > > > Maybe there weren't a lot of comments because people agreed > with Robert. :) > > For yo

RE: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Desai, Sunny
BeanUtils.copyProperties() method does not work with date fields. One needs to copy it manually using DateFormatter ot something. To avoid garbage getting into date variable in domain object, one should name it other way. For example, if domain object has : Date paymentDate; you should rename the

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Bryce Fischer
You can register a different converter that BeanUtils uses to copy from a string to a date. Write your own converter, using the date format you need, then use ConvertUtils.register(...) to register it. That's what I do anyhow. -Original Message- From: Leandro Melo [mailto:[EMAIL PROTECTE

Re: Proper place for validation

2004-09-08 Thread Michael McGrady
Jim Barrows wrote: -Original Message- From: Janne Mattila [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 3:49 AM To: [EMAIL PROTECTED] Subject: RE: Proper place for validation Hmm, not a lot of comments on this. I guess there is a consensus on the matter (that, or no-one

RE: ActionForm with all application attributes

2004-09-08 Thread Leandro Melo
Jim, all the code i`m talking about is inside a Base Action Form. It seems the you`re thinking that my code is inside a action, aren`t you?? Maybe a misundertanding, maybe mine, maybe yours. So, i agree with some of your comments, but not on all of thems. In fact, i`m gonna to take a look about th

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Jason King
Could you point us at some code that does this? Do you customize in the action, the form or the DTO? Bryce Fischer wrote: You can register a different converter that BeanUtils uses to copy from a string to a date. Write your own converter, using the date format you need, then use ConvertUtils.

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Leandro Melo
I also would like to see this "converter" code and how to use it!!! --- Jason King <[EMAIL PROTECTED]> escreveu: > Could you point us at some code that does this? Do > you customize in the > action, the form or the DTO? > Bryce Fischer wrote: > > > You can register a different converter that

[OT] How to sort with ?

2004-09-08 Thread Craig Dickson
Hi, Is there an easy way to have the JSTL forEach tag sort the collection of items before looping through them? Currently I have a scriptlet doing it before the loop tag, but this is pretty ugly. Thanks - To unsubscribe, e-mai

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Bill Siggelkow
Kind of being picky here, but I wouldn't switch the property name like that -- instead; since the form field would be a String I would use String getPaymentDateString() {...} in the ActionForm and Date getPaymentDate() {...} in the domain object. Desai, Sunny wrote: BeanUtils.copyProperties() met

RE: ActionForm with all application attributes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 9:48 AM > To: Struts Users Mailing List > Subject: RE: ActionForm with all application attributes > > > Jim, all the code i`m talking about is inside a Base > Action Form. It seems

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Bill Siggelkow
http://jakarta.apache.org/commons/beanutils/api/index.html Leandro Melo wrote: I also would like to see this "converter" code and how to use it!!! --- Jason King <[EMAIL PROTECTED]> escreveu: Could you point us at some code that does this? Do you customize in the action, the form or the DTO? B

RE: [OT] How to sort with ?

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Craig Dickson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 9:51 AM > To: Struts List > Subject: [OT] How to sort with ? > > > Hi, > > Is there an easy way to have the JSTL forEach tag sort the > collection of > items before looping throu

strange random problem

2004-09-08 Thread calandraca
Since I have rewrited an important part of my application using struts I've had this problem several times. It didn't happen in development environment, with only one or two users using the application at the same time. It happends in production with 20 or 30 users. * Development environment: Debi

Re: ActionForm data type X BeanUtils -> using Dates

2004-09-08 Thread Bryce Fischer
The custom converter is done independently of the action, form or DTO. First step is to implement the interface org.apache.commons.beanutils.Converter. Keep in mind that the converter you are writing uses the appropriate converter for the original class. So, if you were converting from a String

RE: strange random problem

2004-09-08 Thread Jim Barrows
> -Original Message- > From: calandraca [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 10:04 AM > To: Struts Users Mailing List > Subject: strange random problem > > > Since I have rewrited an important part of my application using struts > I've had this problem several

RE: strange random problem

2004-09-08 Thread David G. Friedman
How are you doing the database interactions with your MS SQL Server? JDBC with some ODBC connectivity kit or some other way? Regards, David -Original Message- From: calandraca [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 1:04 PM To: Struts Users Mailing List Subject: stra

Re: [OT] How to sort with ?

2004-09-08 Thread Bill Siggelkow
Do it in the business layer that fetches the collection -- or in the database -- or store the data in a sorted collection (like SortedTreeMap or some similar animal). Craig Dickson wrote: Hi, Is there an easy way to have the JSTL forEach tag sort the collection of items before looping through th

RE: ActionForm with all application attributes

2004-09-08 Thread Leandro Melo
--- Jim Barrows <[EMAIL PROTECTED]> escreveu: > > > > -Original Message- > > From: Leandro Melo > [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, September 08, 2004 9:48 AM > > To: Struts Users Mailing List > > Subject: RE: ActionForm with all application > attributes > > > > > > Jim,

RE: Action Mapping From a JSP to Another JSP (How to Do Global Forward)

2004-09-08 Thread Caroline Jen
Thanks for your reply and help. if I have Register In my struts.config.xml file, I should have action mapping like this: What if I do a global forward: Register what kind of mapping should I specify in the struts-config.xml file? --- Caroline Jen <[EMAIL PROTECTED]> wrote: > Thanks

RE: ActionForm with all application attributes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 10:25 AM > To: Struts Users Mailing List > Subject: RE: ActionForm with all application attributes > > > --- Jim Barrows <[EMAIL PROTECTED]> escreveu: > > > > > > > -Origina

RE: Action Mapping From a JSP to Another JSP (How to Do Global Forward)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 10:34 AM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (How to > Do Global > Forward) > > > Thanks for your reply and help. > > if I have

RE: Action Mapping From a JSP to Another JSP (How to Do Global Forward)

2004-09-08 Thread Caroline Jen
Thanks a lot for being around and helping us. -CJen --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, September 08, 2004 10:34 AM > > To: Struts Users Mailing List > > Subject: RE: Action Mapping F

RE: ActionForm with all application attributes

2004-09-08 Thread Leandro Melo
Thanks, i`ll take a look at that in the next days!! --- Jim Barrows <[EMAIL PROTECTED]> escreveu: > > > > -Original Message- > > From: Leandro Melo > [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, September 08, 2004 10:25 AM > > To: Struts Users Mailing List > > Subject: RE: ActionFor

RE: Action Mapping From a JSP to Another JSP (How to Do Global Forward)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 10:56 AM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (How to > Do Global > Forward) > > > Thanks a lot for being around and helping us.

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
Hi, I am in trouble again. I am using tiles. I have three piece of tiles: upperbar, sidelinks, and lowerbar. All three tiles are displayed with contents shown in the center (toward right hand side) of the web page. Now, I click on one of the links provided in the 'sidelinks' tile and I got th

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 11:54 AM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > Hi, I am in trouble again. > > I am using tiles. I

Date format woes

2004-09-08 Thread Slattery, Tim - BLS
I've got a page in my Struts web app that displays a date. It uses to read a date from the form bean and format it for display. I also want to put that date into a field so that it can be reloaded when the page is submitted and redisplayed. The getter returns a Date. The tag retrieves also retr

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
I have tried both action="/ContentMgmt" and action="/ContentMgmt.do"> They do not make any difference. Error message is the same. And it is HTTP Status 400. Nothing gets displayed in the browser but the error message. I tried right-click "View Source". None of my code appears in the "View

Re: Date format woes

2004-09-08 Thread James Mitchell
You wouldn't happen to have another setter method that accepts a different type (e.g. Date) would you? for example: ... ... public void setExpirationDate(Date expirationDate){ ... ... -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 12:45 PM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > I have tried both > > action="/ContentMgmt" and >

RE: Date format woes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: James Mitchell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 12:46 PM > To: Struts Users Mailing List > Subject: Re: Date format woes > > > You wouldn't happen to have another setter method that > accepts a different > type (e.g. Date) wou

is strut a good choice in my case.

2004-09-08 Thread Vitalii
I have a question about struts. I know Strut is good framework for designing a large website. It has a lot of classes that help to design well scaled websites. What about performance? Does it slow the processing of request. if speed is the main issue is it good idea to use strut?if website needs t

RE: Date format woes

2004-09-08 Thread Slattery, Tim - BLS
> You wouldn't happen to have another setter method that > accepts a different type (e.g. Date) would you? > > for example: > > ... > ... > > public void setExpirationDate(Date expirationDate){ > > ... > ... No, only what I posted. -- Tim Slattery [EMAIL PROTECTED] --

RE: is strut a good choice in my case.

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Vitalii [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 12:52 PM > To: [EMAIL PROTECTED] > Subject: is strut a good choice in my case. > > > I have a question about struts. I know Strut is good > framework for designing a large website. It

RE: Date format woes

2004-09-08 Thread Kris Schneider
>From a pure JavaBean perspective, a class like: package com.dotech; import java.io.Serializable; import java.util.Date; public class ConfusedBean implements Serializable { public void setDate(String s) {} public Date getDate() { return null; } } is seen by Introspector as (Sun JDK 1.4.

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
I do not fully understand. Do you want me to actually code instead of Manage the Content in my links.jsp file? --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, September 08, 2004 12:45 PM > >

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 1:09 PM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > I do not fully understand. Do you want me to actually

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
The wrote: > > > > -Original Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, September 08, 2004 1:09 PM > > To: Struts Users Mailing List > > Subject: RE: Action Mapping From a JSP to Another > JSP (In Trouble > > Again!!!) > > > > > > I do not fully und

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 1:18 PM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > The > None of my tiles or content is displayed. I on

RE: Date format woes

2004-09-08 Thread Slattery, Tim - BLS
> From a pure JavaBean perspective, a class like: > > package com.dotech; > > import java.io.Serializable; > import java.util.Date; > > public class ConfusedBean implements Serializable { > public void setDate(String s) {} > public Date getDate() { return null; } > } > > is seen by Intr

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
OKay, I see what you mean now. I am a kind of dumb. Before I clicked on the link, it shows: Manage the Content in the browser. DHSInfo is the name of my application in the $TOMCAT/webapps directory. --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Caro

Re: is strut a good choice in my case.

2004-09-08 Thread Bill Siggelkow
Well, make sure you use more than one Strut -- you will want to scale the number of Struts to the number of users. For each request, you will have one Strut. Does this make sense? ;) Vitalii wrote: I have a question about struts. I know Strut is good framework for designing a large website. It

RE: Date format woes

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 1:23 PM > To: 'Struts Users Mailing List' > Subject: RE: Date format woes > > > > From a pure JavaBean perspective, a class like: > > > > package com.dotech; > > > > import

RE: is strut a good choice in my case.

2004-09-08 Thread David G. Friedman
So THAT is how we REALLY setup STRUTS! Duh! (slaps his own forehead). -David -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow Sent: Wednesday, September 08, 2004 4:28 PM To: [EMAIL PROTECTED] Subject: Re: is strut a good choice in my case. Well, make su

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 1:28 PM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > OKay, I see what you mean now. I am a kind of dumb. No

RE: is strut a good choice in my case.

2004-09-08 Thread Jim Barrows
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow > Sent: Wednesday, September 08, 2004 1:28 PM > To: [EMAIL PROTECTED] > Subject: Re: is strut a good choice in my case. > > > Well, make sure you use more than one Strut -- you will want to scale > the

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Caroline Jen
Jim, Sorry for bothering so much. My code, mapping, path, ., etc. are correct. Problem is with the Tomcat server. CJen --- Caroline Jen <[EMAIL PROTECTED]> wrote: > OKay, I see what you mean now. I am a kind of dumb. > > Before I clicked on the link, it shows: > > Manage the > Cont

Re: is strut a good choice in my case.

2004-09-08 Thread Bill Siggelkow
Jim, If you know what I am saying then we're both in trouble. Primarily, I am just being weird. Comes from a combination too much overexposurer to the wild life when I was younger and too much exposure to the family life now that I am older -- in other words, stick a fork in me -- I'm done :)

RE: Action Mapping From a JSP to Another JSP (In Trouble Again!!!)

2004-09-08 Thread Jim Barrows
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 1:51 PM > To: Struts Users Mailing List > Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble > Again!!!) > > > Jim, > > Sorry for bothering so much. My code, m

Re: is strut a good choice in my case.

2004-09-08 Thread David Durham
Bill Siggelkow wrote: Brain spouts sludge Mouth obeys brain White coats come. I was going to post something about stress testing ... - Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

RE: is strut a good choice in my case.

2004-09-08 Thread Jim Barrows
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow > Sent: Wednesday, September 08, 2004 1:56 PM > To: [EMAIL PROTECTED] > Subject: Re: is strut a good choice in my case. > > > Jim, > If you know what I am saying then we're both in trouble. I am never

RE: is strut a good choice in my case.

2004-09-08 Thread Jim Barrows
> -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 2:00 PM > To: Struts Users Mailing List > Subject: Re: is strut a good choice in my case. > > > Bill Siggelkow wrote: > > > Brain spouts sludge > > Mouth obeys brain > > White coat

Re: Easy Struts

2004-09-08 Thread Darryl Pierce
On Tuesday 07 September 2004 09:39 am, Bill Siggelkow wrote: > Darryl Pierce wrote: > > On Monday 06 September 2004 07:49 am, James Holmes wrote: > >>As far as I know, Easy Struts does not work with Eclipse 3. Struts > >> Console does though. It provides similar functionality (Easy Struts is > >>

Re: Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Hi Bill Indeed I do have scope set to "session" in struts-config.xml. When unit testing in debug through IDEA I can see the object in the session being populated step by step, however when I run the compiled web app under Struts with JWebUnit, or a browser, I get the problem. I am up against my

Re: Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Hi Bill Indeed I do have scope set to "session" in struts-config.xml. When unit testing in debug through IDEA I can see the object in the session being populated step by step, however when I run the compiled web app under Struts with JWebUnit, or a browser, I get the problem. I am up against my

Re: Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Hi Bill Indeed I do have scope set to "session" in struts-config.xml. When unit testing in debug through IDEA I can see the object in the session being populated step by step, however when I run the compiled web app under Struts with JWebUnit, or a browser, I get the problem. I am up against my

Re: Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Hi Bill Indeed I do have scope set to "session" in struts-config.xml. When unit testing in debug through IDEA I can see the object in the session being populated step by step, however when I run the compiled web app under Struts with JWebUnit, or a browser, I get the problem. I am up against my

Re: Bean tag and session data issue

2004-09-08 Thread Langdon Stevenson
Hi Bill Indeed I do have scope set to "session" in struts-config.xml. When unit testing in debug through IDEA I can see the object in the session being populated step by step, however when I run the compiled web app under Struts with JWebUnit, or a browser, I get the problem. I am up against my

  1   2   >