Re: Page Navigation in Struts

2004-10-06 Thread brenmcguire
Found on SourceForge: http://valuelist.sourceforge.net/ It has nothing to do with Struts, it is usable in simple JSP pages. Ciao Antonio Petrelli Shabada, Gnaneshwer wrote: >Hello All, > >I am planning to implement a Page Navigation functionality to navigate >through search results in my project.

Re: getDataSource() in JSP

2004-10-06 Thread brenmcguire
"getDataSource" is a protected method inside the class Action, so you cannot use it directly. Anyway I suggest to copy the code from the source of Action, because it simply takes an object (i.e. the DataSource) from the application scope. Ciao Antonio Petrelli Shailender Jain wrote: >Hello, > >I

getDataSource() in JSP

2004-10-06 Thread Shailender Jain
Hello, I want to use the method getDataSource() from my JSP page. I want to use this since i am using some tag library to do some generic things. Can somebody let me know how i can use this function to get connection so that i can use them in tag library. In this tag i will pass some sql query

Re: Iterating an array list into -- Version Issue 1.0

2004-10-06 Thread Hubert Rabago
Get them from the source: http://www.keyboardmonkey.com/next/index.jsp Click on downloads. On Wed, 6 Oct 2004 15:06:17 -0700 (PDT), Phani <[EMAIL PROTECTED]> wrote: > Can I use nested taglib or the indexed property > of html:text with struts version 1.0 > > As I am working on a project which is

Re: OT: bouncing address (if this is you at standardbank.co.az, PLEASE correct it)

2004-10-06 Thread Mike Elliott
On Wed, 6 Oct 2004 19:46:46 -0400, David G. Friedman <[EMAIL PROTECTED]> wrote: > I'm starting to severly dislike this error message from some unknown subscribe > at standarbank.co.az. Actually its standardbank.co.za (South Africa). I'm getting them too. I assume everyone is.

RE: [OT] free javascript htmlEditor

2004-10-06 Thread David G. Friedman
+1 on FCKEditor. I'm putting it in a current webapp project. -David -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 1:54 PM To: Struts Users Mailing List; Sergey Livanov Subject: Re: [OT] free javascript htmlEditor I have tried out t

How work to DynaValidatorForm and java.sql.Date

2004-10-06 Thread Gabriel França Campolina
Hi Folks, I have the problem when i submit a field text that was mapping to java.sql.date in format dd/MM/, I received null value, what´s my problem?? only this value I don't received the other fields(String) i receved correct. Sorry my english I'm brasiliam Thanks, -- Gabriel França Campoli

Re: bouncing address (if this is you at standardbank.co.az, PLEASE correct it)

2004-10-06 Thread Wendy Smoak
From: "David G. Friedman" <[EMAIL PROTECTED]> > Sorry to post Off Topic mid-week but I've posted a few times lately and I'm > starting to severly dislike this error message from some unknown subscribe > at standarbank.co.az. Any list managers out there who could take a look at > this? I reported

OT: bouncing address (if this is you at standardbank.co.az, PLEASE correct it)

2004-10-06 Thread David G. Friedman
Sorry to post Off Topic mid-week but I've posted a few times lately and I'm starting to severly dislike this error message from some unknown subscribe at standarbank.co.az. Any list managers out there who could take a look at this? Thanks, David ([EMAIL PROTECTED]) -Original Message- Fro

RE: Anyone succeeded using validator in struts1.2.4 ?

2004-10-06 Thread David G. Friedman
Have you tried using something other than ? Such as: <%= error %> See the Wiki for what I mean, section 1.4: http://wiki.apache.org/struts/StrutsBeginnerValidatorFramework Regards, David -Original Message- From: yacout dadoun [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 0

Value of hidden field from ApplicationResources.properties?

2004-10-06 Thread Wendy Smoak
I have what must be the world's simplest form... it has a text field and a button: : It works great if the user clicks the button... not so great if he presses enter, which submits the form without the value of nextStep coming through. So I thought to put a hidden fi

Re: Iterating an array list into -- Version Issue 1.0

2004-10-06 Thread Phani
Can I use nested taglib or the indexed property of html:text with struts version 1.0 As I am working on a project which is using Struts 1.0 version. Thanks. --- Jeff Beal <[EMAIL PROTECTED]> wrote: > Try using the nested taglib or the indexed property > of html:text > > Phani wrote: > > I came

Re: Modifying an object within the form bean?

2004-10-06 Thread Mike Elliott
> Try opener.document.formBean["moderator.selected_ndx"] The arrays are > also hashtables. Yes, that works. Thanks a bunch. Although I still think that the bean approach *should* have worked -- it doesn't. And I'll gladly settle for this workaround. ---

Anyone succeeded using validator in struts1.2.4 ?

2004-10-06 Thread yacout dadoun
From: "yacout dadoun" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Trouble with struts validator Date: Wed, 06 Oct 2004 15:54:36 + Hi, I'm trying to use the struts validator, i have created a simple form with few inputs, i'd like

RE: form reset

2004-10-06 Thread Chris Bredesen
What is it doing or not doing that is giving you trouble? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 06, 2004 4:47 PM > To: [EMAIL PROTECTED] > Subject: form reset > > > Hi guys, > > I know this has been asked before... but nothi

Re: validateTwoFields

2004-10-06 Thread Matt Bathje
Ben - long story short for custom validators (and your example here specfically) is to change ActionErrors here to ActionMessages, and then in the validator-rules.xml definition, replace the ActionErrors part of methodParams with ActionMessages. You will probably need to replace the Resources.ge

Re: form reset

2004-10-06 Thread Wendy Smoak
From: <[EMAIL PROTECTED]> > I know this has been asked before... but nothing seems to be working for me. > I have a ActionForm in which I reset all my fields to null. > Can someone please not only correct me on what I'm doing wrong but also explain why? > form.reset( mapping, request ); This one

Re: Internationalizing a Struts project

2004-10-06 Thread Jason Lea
You should only need to do the following: request.setCharacterEncoding("UTF-8") before the form is populated. I think you can do this by overriding the RequestProcessor. I use a filter to do this instead. [EMAIL PROTECTED] wrote: Hi, Craig. You hit the bull's eye. No I claim this not only to be

form reset

2004-10-06 Thread roy-strutsuser
Hi guys, I know this has been asked before... but nothing seems to be working for me. I have a ActionForm in which I reset all my fields to null. Can someone please not only correct me on what I'm doing wrong but also explain why? I've tried both these of these: -- if ( map

form reset

2004-10-06 Thread roy-strutsuser
Hi guys, I know this has been asked before... but nothing seems to be working for me. I have a ActionForm in which I reset all my fields to null. Can someone please not only correct me on what I'm doing wrong but also explain why? I've tried both these of these: -- if ( map

Re: Modifying an object within the form bean?

2004-10-06 Thread Jason King
Ok, I misunderstood the problem the first time, my bad. Try opener.document.formBean["moderator.selected_ndx"] The arrays are also hashtables. Mike Elliott wrote: On Wed, 06 Oct 2004 14:38:36 -0500, Jason King <[EMAIL PROTECTED]> wrote: This is a javascript problem. The DOM-compliant way to

Re: Modifying an object within the form bean?

2004-10-06 Thread Mike Elliott
On Wed, 06 Oct 2004 14:38:36 -0500, Jason King <[EMAIL PROTECTED]> wrote: > This is a javascript problem. The DOM-compliant way to change the > selected option for a element is: > .selectedIndex = for your example that > would be: > > opener.document.formBean.selectElementName.selectedIndex = ;

Re: validateTwoFields

2004-10-06 Thread Hubert Rabago
Hi Ben, For more info about the ActionError/ActionErrors situation, see http://wiki.apache.org/struts/StrutsDeprecatedActionErrors Hubert On Wed, 6 Oct 2004 12:57:06 -0700, Ben Anderson <[EMAIL PROTECTED]> wrote: > Hi all, > I'm trying to use this custom validate method. I got the instructions

backed by a Map with no entrySet

2004-10-06 Thread Chris Bredesen
Hello all, I'm attempting to wrap a pseudo-enum in a Map that provides displayable values for the enum keys. Basically, I need I18N'd pretty values for my select options which return the enum's string representation. The pretty values can be looked up in a resource bundle by .enumValue. So I ha

validateTwoFields

2004-10-06 Thread Ben Anderson
Hi all, I'm trying to use this custom validate method. I got the instructions from Matt Raible's site (thanks Matt ;-)): http://www.raibledesigns.com/page/rd/20030226 I remember this used to work, but now it's not. I'm using Struts 1.2.4 and commons-validator 1.1.3. I've been playing with it a

Re: Bad XML?

2004-10-06 Thread Matt Bathje
e-denton Java Programmer wrote: I am getting this Tomcat error on my remote server (It runs on my local server): "Oct 6, 2004 12:35:25 PM org.apache.commons.digester.Digester error SEVERE: Parse Error at line 321 column 17: The content of element type "struts-config" must match "(data-sources?,form

Re: Application.Resources file visibility

2004-10-06 Thread Adam Hardy
I assume that your application has a resource.properties file which is actually being used - I mean, you know it is being loaded since you see language strings on the website from the file, right? I am not familiar with getInternal(). Right, out of curiosity, I checked out the src code and the i

Bad XML?

2004-10-06 Thread e-denton Java Programmer
I am getting this Tomcat error on my remote server (It runs on my local server): "Oct 6, 2004 12:35:25 PM org.apache.commons.digester.Digester error SEVERE: Parse Error at line 321 column 17: The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,glob

Re: Modifying an object within the form bean?

2004-10-06 Thread Jason King
This is a javascript problem. The DOM-compliant way to change the selected option for a element is: .selectedIndex = for your example that would be: opener.document.formBean.selectElementName.selectedIndex = ; If your popup has the same element then its easy: opener.document.formBean.selectE

Re: Modifying an object within the form bean?

2004-10-06 Thread wiwit_tjahjana
Dear Mike: Within your Javascript, try to find your drop down by Id or Name. I think the statement looks something like: mySelectBox = document.findElementById("yourIdHere") or mySelectBox = document.findElementByName("yourIdHere") Hope that helps! Wiwit Tjahjana The informa

RE: inheritance in tiles

2004-10-06 Thread wiwit_tjahjana
Dear Amar: If what you mean by parameters is values of Tiles attributes, then the answer is yes. Simply define new attribute in your tiles-defs.xml or override a parent attribute. Or, should you need to derive the value dynamically from request or other scope, do it in a TilesController. Hop

Modifying an object within the form bean?

2004-10-06 Thread Mike Elliott
I have a situation where the form bean contains objects inside it which represent sets of things which will appear in an tag. In particular, the objects have three properties: selected_ndx ndx_set label_set One of these objects is the 'moderator' property of the form bean. The overall design i

Re: Application.Resources file visibility

2004-10-06 Thread El Toro
Yes, I am not within the action class, I am in a class which extends the TilesRequestProcessor, but since TilesRequestProcessor extends RequestProcessor I figure I should be able to get at my application resources file? Thanks, TR --- Adam Hardy <[EMAIL PROTECTED]> wrote: > Hi TR, > I assume yo

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
You might also want to see: http://struts.apache.org/roadmap.html http://wiki.apache.org/struts/StrutsJericho Portlets are part of the planning for Struts. Michael McGrady Scott Anderson wrote: Rob Evans <[EMAIL PROTECTED]> wrote: Can you point me to a how-to doc so I can get a feel for what JSR

Re: Iterate tag issue with an array

2004-10-06 Thread wiwit_tjahjana
I'd recommend this site, which covers JSTL 1.0, that is supported by Struts 1.1. http://demo.pramati.com/jstl-standard-examples.war/index.html Wiwit Tjahjana The information transmitted in this Email is for the exclusive use of the person or entity to which it is addressed and may contain conf

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Scott Anderson
Rob Evans <[EMAIL PROTECTED]> wrote: > Can you point me to a how-to doc so I can get a feel > for what JSR-168 has to offer? There's a link to download a PDF containing a few sample chapters from a book on developing JSR-168 portlets within the following article... http://www.theserverside.com/

RE: inheritance in tiles

2004-10-06 Thread Fogleson, Allen
I think you would have to define what you mean there, but yes, just as in calling a jsp you can add parameters to your call to the action class and they will be passed to the underlying jsp's. (of course assuming the underlying view is jsp based :) Al -Original Message- From: Jirole, Ama

RE: inheritance in tiles

2004-10-06 Thread Jirole, Amar
A stupid question : Can we pass parameters in this extension. TIA -Amar -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Vic Cekvenich Sent: Wednesday, October 06, 2004 2:25 PM To: [EMAIL PROTECTED] Subject: Re: inheritance in tiles yes. josh wrote: > Can a tile defi

Re: inheritance in tiles

2004-10-06 Thread Vic Cekvenich
yes. josh wrote: Can a tile definition that extends another definition itself be extended again? definition ^ | child definition ^ | grandchild definition - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Re: [OT] Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
Fundamentally coding changes, I think, refect human needs as much as technical needs. Even good old procedural programming, which many college computer science advocates cannot let go of, had, I think, as its main difficulty the inability of a community to effectively code with it. So, many o

Re: Iterating an array list into

2004-10-06 Thread Jeff Beal
Try using the nested taglib or the indexed property of html:text Phani wrote: I came across this problem of displaying the string elements in an Arraylist into Textfields. How can I display them into the textfileds & capture them back into the ArrayList. (Using Struts 1.0) style="BORDER-COLLAPSE:

inheritance in tiles

2004-10-06 Thread josh
Can a tile definition that extends another definition itself be extended again? definition ^ | child definition ^ | grandchild definition -- Joshua Cronemeyer Thank you. signature.asc Description: This is a digitally signed message part

Re: Tracing action dispatching

2004-10-06 Thread Michael McGrady
Laurent Duperval wrote: Hi, Is there a flag I can set so that Struts tells me what it's doing? I'm having a problem with one of my actions: when I click on it, I get a blank page and I don't understand why. I'd like to be able to see what decisions Sruts is taking in order to load my pages, to d

RE: struts and oracle

2004-10-06 Thread Dante Profeta
Thank you very much Duncan, This was exactly the info we were looking around. -- Dante Profeta -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 08:18 To: Struts Users Mailing List Subject: Re: struts and oracle Dante - you can just

Re: Session authentication - Struts or ServletFilter

2004-10-06 Thread Bill Siggelkow
I second that emotion -- SecurityFilter can be described in one word ... SWEET ! Don Brown wrote: Personally, I favor a filter approach, specifically SecurityFilter - http://securityfilter.sourceforge.net/ It's configuration format follows Container-Managed Security, but is much more flexible. D

Re: [OT] Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Matt Bathje
http://struts.apache.org/roadmap.html http://wiki.apache.org/struts/StrutsJericho Seem like pretty significant potential changes to me. I think the problem is that the way struts is currently proposed to change is not the way that you (and some others) want it to. This is why you must stop talki

Re: [OT] free javascript htmlEditor

2004-10-06 Thread Niall Pemberton
I have tried out the FCKeditor (Tag version) and looks good to me, the other I haven't http://www.fckeditor.net/ http://www.interactivetools.com/products/htmlarea/ Niall - Original Message - From: "Sergey Livanov" <[EMAIL PROTECTED]> To: "Struts Mailing List" <[EMAIL PROTECTED]> Sent:

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
Rob Evans wrote: On Wed, 06 Oct 2004 08:59:26 -0700, Michael McGrady <[EMAIL PROTECTED]> wrote: Rob Evans wrote: Could be. I for o It sounds like we are on the same page regarding the nature of the solution i.e. we're after something that looks like components. I'm sure Craig and Halloway w

Re: [OT] free javascript htmlEditor

2004-10-06 Thread Robert Barksdale
If you are using a Gecko-based browser check out the Mozilla Editor. http://www.mozilla.org/editor/ On Wed, 6 Oct 2004 20:29:27 +0300, Sergey Livanov <[EMAIL PROTECTED]> wrote: > > Can you help me to find free javascript htmlEditor. > > -- > regards, > Sergey mailto:[

Re: Iterate tag issue with an array

2004-10-06 Thread Wendy Smoak
From: <[EMAIL PROTECTED]> > I am willing to use the jstl if needed. What is that syntax? Google should turn up a bunch of examples to get you started if you really want to go that route. I think there's a simpler solution, and would first try to get that *one* item out of the array somehow, so y

Re: Listbox Validation in struts

2004-10-06 Thread Bill Siggelkow
If you want to ensure that at least one item is selected from the mulit-select list you can use "required" just like with the drop-down. If you need something more (like at least 2 items selected), to use Validator you will need to create a custom rule. -Bill Siggelkow Priya Jotwani wrote: Hi,

Re: Best Practice for Struts app to .NET Web Service

2004-10-06 Thread Bill Siggelkow
Barnett, Brian W. wrote: I have a Struts app that needs to communicate with a .Net web service via SOAP. What is "best practice" for this? Can someone point me to some relevant info? Thanks, Brian Barnett One way is to use Apache Axis to generate a client based on the services WSDL. -Bill Siggel

[OT] free javascript htmlEditor

2004-10-06 Thread Sergey Livanov
Can you help me to find free javascript htmlEditor. -- regards, Sergey mailto:[EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Session authentication - Struts or ServletFilter

2004-10-06 Thread Don Brown
Personally, I favor a filter approach, specifically SecurityFilter - http://securityfilter.sourceforge.net/ It's configuration format follows Container-Managed Security, but is much more flexible. Don On Wed, 06 Oct 2004 13:19:59 -0400, Bill Siggelkow <[EMAIL PROTECTED]> wrote: > Well, I am not

Re: Want a example application

2004-10-06 Thread Bill Siggelkow
Sanjay Gupta wrote: Hello Friends, I am very new in Struts. I am seeking for an example application, that has EJB, JSP, servlets. Actually I want ot know, how a JSP can show some data extracted from EJB. Sanjay Gupta It shows data from an EJB just like it shows data from any other source ... take

Re: [OT] Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
Thanks for your ideas, Matt. Some thoughts on this, relating the personal issues as much to Struts as possible, follow: The subtitle of "eXtreme Programming eXplained" is "EMBRACE CHANGE" by Kent Beck. This is all I am saying. Struts as it looks to v3.0 should embrace change as potential, wh

Re: Session authentication - Struts or ServletFilter

2004-10-06 Thread Bill Siggelkow
Well, I am not sure exactly what 'Filters should not rely on session state' means; but I would use a filter -- IMO its the best way to apply across-the-board behavior w/o using container-managed security. -Bill Siggelkow andy wix wrote: Hi, What is the best approach for the above? I don't use c

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Rob Evans
Can you point me to a how-to doc so I can get a feel for what JSR-168 has to offer? On Wed, 6 Oct 2004 10:04:37 -0700 (PDT), Scott Anderson <[EMAIL PROTECTED]> wrote: > > > PROPOSAL/SUGGESTION > > I was a big fan of the component software model > advocated by a technology called OpenDoc develop

RE: Iterate tag issue with an array

2004-10-06 Thread Mick.Knutson
I am willing to use the jstl if needed. What is that syntax? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 9:47 AM To: Struts Users Mailing List Subject: Re: Iterate tag issue with an array From: <[EMAIL PROTECTED]> > I need to access

Best Practice for Struts app to .NET Web Service

2004-10-06 Thread Barnett, Brian W.
I have a Struts app that needs to communicate with a .Net web service via SOAP. What is "best practice" for this? Can someone point me to some relevant info? Thanks, Brian Barnett

Iterating an array list into

2004-10-06 Thread Phani
I came across this problem of displaying the string elements in an Arraylist into Textfields. How can I display them into the textfileds & capture them back into the ArrayList. (Using Struts 1.0) Thanks. _

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Scott Anderson
> PROPOSAL/SUGGESTION I was a big fan of the component software model advocated by a technology called OpenDoc developed by Apple, IBM, and Novell back in the mid 90's... http://en.wikipedia.org/wiki/OpenDoc Ironically, Steve Jobs killed off this technology because the thought was that Java

Re: Iterate tag issue with an array

2004-10-06 Thread Wendy Smoak
From: <[EMAIL PROTECTED]> > I need to access only the first object in this Array. Any ideas? > I have a DTO that may contain a Guarantor[]. > Here is my code that keeps giving me an "null java.lang.ArrayIndexOutOfBoundsException" > when I do not have a Guarantor[0] > You're checking to see if the

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Kris Schneider
I certainly don't know enough about it to point you at its various pieces and say, "here's just what you need" (partly because I'm not crystal clear on what your requirements are). It was mainly just a Pavlovian reaction to discussions about web component frameworks and designing with IDEs in mind,

Re: cleaning session

2004-10-06 Thread Leandro Melo
If you have your action in HttpSession, why don`t you just call reset whenever a user clicks on the button supposed to start this wizard? --- struts lover <[EMAIL PROTECTED]> escreveu: > Hello everyone, > I am facing this problem of session. I have my > action > form in session(a wizard like t

RE: Iterate tag issue with an array

2004-10-06 Thread Mick.Knutson
I need to access only the first object in this Array. Any ideas? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 5:19 PM To: [EMAIL PROTECTED] Subject: Iterate tag issue with an array I have a DTO that may contain a Guarantor[]. Here

RE: cleaning session

2004-10-06 Thread struts lover
Thanks Paul. :) --- Paul McCulloch <[EMAIL PROTECTED]> wrote: > I have a specific action which destroys the > existsing form bean and then > recreates it based on struts-config. > > See: > http://marc.theaimsgroup.com/?l=struts-user&m=109351495917793&w=2 > > Paul > > > -Original Message--

[OT] Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Matt Bathje
Michael - I would have to say...get working. It is pretty obvious from this and the dev list that you are very unhappy with struts and its developers. While struts does some of what you want, it is very lacking for you. I think it is also obvious that your view of what struts should be does not

RE: cleaning session

2004-10-06 Thread Paul McCulloch
I have a specific action which destroys the existsing form bean and then recreates it based on struts-config. See: http://marc.theaimsgroup.com/?l=struts-user&m=109351495917793&w=2 Paul > -Original Message- > From: struts lover [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 06, 20

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Rob Evans
On Wed, 6 Oct 2004 12:01:15 -0400, Kris Schneider <[EMAIL PROTECTED]> wrote: > Just to make sure the bases are covered, have you investigated JSF and found it > lacking? I've not. Do you know much about it? I was under the impression that its purpose in life was to provided support for UI widget

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Rob Evans
On Wed, 06 Oct 2004 08:59:26 -0700, Michael McGrady <[EMAIL PROTECTED]> wrote: > Rob Evans wrote: > > >Could be. I for one am still trying to nail down the issues. Why is > >having a single WebApp that utilizes Inversion of Control and plugins > >better than just having several webapps that use th

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
[EMAIL PROTECTED] wrote: This would build a framework without ego in the core. Michael, What does this mean? David Great implementations are eclipsed. Not only being open to or allowing for this but specifically creating an environment in which it is easy to do is the idea. Without specifi

cleaning session

2004-10-06 Thread struts lover
Hello everyone, I am facing this problem of session. I have my action form in session(a wizard like thing). Now if the user starts filling in values and clicks on the NEXT button, to go on to the next screen and then instead of completing the process of application, clicks on some other link. Agai

RE: Trouble with struts validator

2004-10-06 Thread Anna Kerekes
Why do you have a testAction? When you configure validation.xml and validator-rules.xml (see Apache/Struts/Validator documentation) you don't need to write an Action Class. Also, why do you have failure/success forwards? Upon a failure, the validation will automatically forward your page to

Re: What is halting my action?

2004-10-06 Thread Laurent Duperval
Laurent Duperval wrote: The "foo" parameter should actually read "add". I changed it to see if my class was being called and it isn't. Otherwise, I would get a NoSuchMethodExcpetion. My class is defined as: Grmblb. I found it. There was an execute() method in the class and if that method ex

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Kris Schneider
Just to make sure the bases are covered, have you investigated JSF and found it lacking? Quoting Rob Evans <[EMAIL PROTECTED]>: > Comments inline > > > On Wed, 06 Oct 2004 08:26:20 -0700, Michael McGrady > <[EMAIL PROTECTED]> wrote: > > I have a proposal at the bottom of this email. > > > > I

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
Rob Evans wrote: Could be. I for one am still trying to nail down the issues. Why is having a single WebApp that utilizes Inversion of Control and plugins better than just having several webapps that use the same UI libraries and abide by the same standards? From experience, I know that this has no

RE: Internationalizing a Struts project

2004-10-06 Thread Hiran.Chaudhuri
Hi, Niall. Good hint. Somehow the bug reads as work in progress. Just delegating the work to another class won't solve my problem. I need a way to hook in my own implementation. But I might add this question to the bug directly Hiran - Hiran Chaudhur

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread dhay
> This would build a framework without ego in the core. Michael, What does this mean? David Michael McGrady

Re: Tracing action dispatching

2004-10-06 Thread Laurent Duperval
[EMAIL PROTECTED] wrote: Hi, L. Did you upgrade your struts.jar recently? Yes. The new struts action servlet calls a different method on actions, and it's default implementation is to show an empty page. Stumbled over this one also. Sure, but I've got mappings that should load the correct page. I

Trouble with struts validator

2004-10-06 Thread yacout dadoun
Hi, I'm trying to use the struts validator, i have created a simple form with few inputs, i'd like to oblige the user to enter values into inputs. I therefore : 1-added the validator pluing to strus-config.xml 2-added the action mapping with the path set to test, the type set to the path of the a

RE: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Chappell, Simon P
>-Original Message- >From: Rob Evans [mailto:[EMAIL PROTECTED] >Sent: Wednesday, October 06, 2004 10:45 AM >To: Struts Users Mailing List >Subject: Re: An Eclipse Like WebApp Framework? -- a proposal >When it comes to architecture and design, feelings suck. ;-) You wouldn't know that

Re: editing a form

2004-10-06 Thread Wendy Smoak
From: "Anna Kerekes" <[EMAIL PROTECTED]> > I want the value of expiryDay from the database to be selected (by default) on the dropdown. > The user can select another option from the dropdown if they want to change it... > how do i do it in struts? In the Action code, set the 'expiryDay' property o

What is halting my action?

2004-10-06 Thread Laurent Duperval
HI, While tracing my application, this is the debug output I get: [DEBUG] RequestProcessor - Processing a 'GET' for path '/mainHardwareProfile' [DEBUG] ActionConfigMatcher - Attempting to match '/mainHardwareProfile' to a wildcard pattern [DEBUG] BeanUtils - Cloning bean: org.apache.struts.action.

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Rob Evans
Comments inline On Wed, 06 Oct 2004 08:26:20 -0700, Michael McGrady <[EMAIL PROTECTED]> wrote: > I have a proposal at the bottom of this email. > > I know exactly what you want. Struts is a wonderful potential base for > this. I have been crying for this in Struts, but have only gotten > resis

Re: Tracing action dispatching

2004-10-06 Thread Tuncay Baskan
On Wed, 06 Oct 2004 10:18:22 -0400, Laurent Duperval <[EMAIL PROTECTED]> wrote: > Hi, > > Is there a flag I can set so that Struts tells me what it's doing? I'm > having a problem with one of my actions: when I click on it, I get a blank > page and I don't understand why. I'd like to be able to se

RE: An Eclipse Like WebApp Framework?

2004-10-06 Thread Brantley Hobbs
I'm struggling to wrap my head around this and the closest comparison that I can make is something like tiles/hibernate. Tiles makes it easy to plug in additional functionality, and a good object model makes it so that anything implementing hibernate can just plug right in, right? B. > -Orig

editing a form

2004-10-06 Thread Anna Kerekes
Hello, The user wishes to edit a message that was previously created. In my edit.jsp I wish to display a dropdown with the option that was previously selected as "selected". Currently I have: I want the value of expiryDay from the database to be selected (by default) on the dr

RE: Tracing action dispatching

2004-10-06 Thread Hiran.Chaudhuri
Hi, L. Did you upgrade your struts.jar recently? The new struts action servlet calls a different method on actions, and it's default implementation is to show an empty page. Stumbled over this one also. Hiran - Hiran Chaudhuri SAG Systemhaus GmbH Elsenhei

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread Rob Evans
Kinda. What I'm after is a way to contribute functionality (screens, menus, tabs) to a shell of a WebApp in a standard way. For example, let's say I have a web shell that provides all the basic facilities of an online store. Now, I want a way for development teams to contribute to the application.

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread Michael McGrady
Rob Evans wrote: On Wed, 6 Oct 2004 11:07:26 -0400, James Mitchell <[EMAIL PROTECTED]> wrote: Apache Struts provides just what you want ;) That's about as generic as you can get. What type of 'specific' functionality do you want bolted on? Have you looked at AppFuse? The contribution mech

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread David Evans
Are either Tapestry or Zope the kind of things you're talking about here? They are both component based web app frameworks. If those are not what you're talking about, whats the difference? dave On Wed, 2004-10-06 at 11:26, Michael McGrady wrote: > I have a proposal at the bottom of this email. >

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread Rob Evans
On Wed, 6 Oct 2004 11:07:26 -0400, James Mitchell <[EMAIL PROTECTED]> wrote: > Apache Struts provides just what you want ;) That's about as generic as you > can get. > > What type of 'specific' functionality do you want bolted on? Have you > looked at AppFuse? The contribution mechanism of stru

Re: An Eclipse Like WebApp Framework? -- a proposal

2004-10-06 Thread Michael McGrady
I have a proposal at the bottom of this email. I know exactly what you want. Struts is a wonderful potential base for this. I have been crying for this in Struts, but have only gotten resistence from the more vocal committers and, I think, a failure to see what the problem is. Right now Stru

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread James Mitchell
No, I think he wanted an IDE that would read his mind - just kidding!! Rob was wanting a web application framework that allows you to add functionality/decorations via extension points described by a 'drag 'n drop' plugin. I know of no such animal (right now), but I think we may be headed that wa

RE: An Eclipse Like WebApp Framework?

2004-10-06 Thread Chappell, Simon P
James, I got the impression from the original post that he was asking about some kind of IDE that allows you to specify web application behaviour and then have a WAR or EAR file magically created with no thought necessary to how it was generated. This is truely a cool idea, but I can think of n

Re: Internationalizing a Struts project

2004-10-06 Thread Niall Pemberton
Hubert Rabago has done some work on this already.. http://issues.apache.org/bugzilla/show_bug.cgi?id=31299 Niall - Original Message - From: "Michael McGrady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, October 06, 2004 4:03 PM Subject: Re: In

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread Emmanouil Batsis
Hi Rob, Rob Evans wrote: [...] Anyone know a WebApp framework that does what I've described? Anyone else seen this problem or am I alone in this concern? You may want to check out Matt Raible's Appfuse. It's pretty cool, but when I tried it, i quit too quick cause it seemed too tied up with Tomc

Re: An Eclipse Like WebApp Framework?

2004-10-06 Thread James Mitchell
Apache Struts provides just what you want ;) That's about as generic as you can get. What type of 'specific' functionality do you want bolted on? Have you looked at AppFuse? -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original

RE: Tracing action dispatching

2004-10-06 Thread Paul McCulloch
If the probelm is appearing in a development system then I find the easiest way to do this kind of thing is to download the struts source & use my debugger with the struts code. Paul > -Original Message- > From: Laurent Duperval [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 06, 200

  1   2   >