SV: [OT] Display Tag Library problems with Weblogic 6.1

2004-10-06 Thread hermod . opstvedt
Hei When you get a class version error, it often means that you are running under a version og Java that is lower than the one used to compile the class. Hermod -Opprinnelig melding- Fra: Joe Germuska [mailto:[EMAIL PROTECTED] Sendt: 6. oktober 2004 06:04 Til: Struts Users Mailing List

RE: Loosing session while redirecting

2004-10-06 Thread Konstantina Stamopoulou
Hello Erik, I have noticed that I'm loosing session not only when I switch from http to https but when I switch from ip-address to pc-name.e.g the first request is with http://123.33.44.24:8080/myapp and the second is http://pc24:8080/mypapp. I beleive that the change of the protocol used is

RE: Struts not mapping checkboxes into String[] property

2004-10-06 Thread Freddy Villalba A.
Hi Wendy, No, I'm not using DynaForms. I was just desperate so I started trying EVERYTHING. That included testing with and without the specific mappings inside the descriptor. I'd also checked the names and they were fine. I'll give it a look again, though. I don't know if this will give you

Want a example application

2004-10-06 Thread Sanjay Gupta
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 - To unsubscribe, e-mail:

Re: Loosing session while redirecting

2004-10-06 Thread Dmitrii CRETU
Perhaps the JSESSIONID cookie is lost when you switch from ip-address to host-name or vice versa This happens because cookie is assosiated with the host (and path), so if you redirect IP request to HOSTNAME path the cookie is not attached to this request (it is supposed to belong to IP-based

RE: Enhancement requests

2004-10-06 Thread Hiran.Chaudhuri
Hi, Joe. I also need an enhancement of Struts. Up to now I did not discuss this on any list since the need for enhancement came up just two days ago. What I have up to now is a patched version of a Struts class, which means I can no longer live with the standard struts release. My enhancement

RE: Struts not mapping checkboxes into String[] property

2004-10-06 Thread Freddy Villalba A.
Hi Wendy, Solved the problem. As usual: stupid problem, stupid answer... Turns out the checkboxes were outside the form's scope (the /FORM placed before the INPUT's). Thanx 4 everything! (shame on me) F. -Mensaje original- De: Wendy Smoak [mailto:[EMAIL PROTECTED] Enviado el:

RE: Internationalizing a Struts project

2004-10-06 Thread Hiran.Chaudhuri
Hi, Craig. You hit the bull's eye. No I claim this not only to be a JSP/Servlet problem. The way you describe will cause the browser to encode all form data with UTF-8. Unfortunately the servlet container (Tomcat in my case) does not know about this. To obtain the correct parameter values,

RE: Special Character

2004-10-06 Thread Hiran.Chaudhuri
Hi, Jain. Use [EMAIL PROTECTED] contentType=text/html;charset=UTF-8% to set a HTTP header that tells the browser how special characters are transferred. Most probably you then get the correct display. If that is not sufficient, check the fonts your browser is configured to use. Hiran

refreshing server side infromation

2004-10-06 Thread Tito Eritja
Actually this is not a struts question, but if someone could help me I would be so grateful. I'm implementing an fleet trucking web based system. When the system has new information (positions or alarms) of the trucks, the client web page should be repainted. The problem is that is the server who

Re: refreshing server side infromation

2004-10-06 Thread James Neville
Tito Eritja wrote: Would be an applet a good solution?, is there another way to solve it? You could stick a hidden Iframe on the page that uses the refresh tag in the page header. META HTTP-EQUIV=*Refresh* CONTENT=10;URL=thesamepage.html This page checks for changes and reloads the main page if

SV: refreshing server side infromation

2004-10-06 Thread hermod . opstvedt
Hi Use HTML META-REFRESH tag to refresh the page (from client) at a fixed interval. Hermod -Opprinnelig melding- Fra: Tito Eritja [mailto:[EMAIL PROTECTED] Sendt: 6. oktober 2004 11:24 Til: struts Emne: refreshing server side infromation Actually this is not a struts question, but if

ActionMessages Help

2004-10-06 Thread Richard
Hello Guys , Im using DynaActionForms and I cant figure out how to display the messages I have created on the Action back to the jsp. Thanks in Advance Here are my codes SubmitAction.java === ActionMessages errors = new ActionMessages(); ActionMessage error =

[OT] how to implement https?

2004-10-06 Thread Viral_Thakkar
Hi All, I have a application developed in struts on JDeveloper and standalone oc4j... Now I want to implement https protocol for few actions. What are the steps to do this ..? First, I have to get certificate from verisign then ..?? Any document reference..?? Thanks, Viral

Re: [OT] how to implement https?

2004-10-06 Thread Velja Radenkovic
Google for SSLExt. On Wed, 6 Oct 2004 15:39:49 +0530, Viral_Thakkar [EMAIL PROTECTED] wrote: Hi All, I have a application developed in struts on JDeveloper and standalone oc4j... Now I want to implement https protocol for few actions. What are the steps to do this ..? First, I have to

Cannot create ActionForm

2004-10-06 Thread Sebastian Ho
Hi What can go wrong when this is thrown? javax.servlet.ServletException: Exception creating bean of class sg.edu.astar.flamingo.web.proteomics.form.FileForm: {1} FileForm contains some FormFile variables and I have the correct enctype in my JSP already. Tell me if codes are needed before I

RE: Cannot create ActionForm

2004-10-06 Thread Hiran.Chaudhuri
Hi, Sebastian. Seems like Struts cannot create an instance of your FileForm class. Something must be wrong during (class) construction. Do your log files reveal some more information? Hiran - Hiran Chaudhuri SAG Systemhaus GmbH Elsenheimer Straße 11

RE: Cannot create ActionForm

2004-10-06 Thread Sebastian Ho
You mean struts log file? Give me some time. Mean while this is the output from my server. 18:28:33,772 ERROR [Engine] ApplicationDispatcher[/Flamingo] Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: Exception creating bean of class

RE: Cannot create ActionForm

2004-10-06 Thread Hiran.Chaudhuri
Hi, Sebastian. It looks like the call to new FileForm() throws an exception. Have a look at your Tomcat logfiles. There might be more information about the JSP compiler failing. If that is not the case, check that the class exists (class name/package name). If it is the first instantiation in

RE: Cannot create ActionForm

2004-10-06 Thread Sebastian Ho
I traced it to a nullpointerexception. Didn't know why Struts is calling toString() which throws NullPointerException. Anyway, it uncovers the bug in my toString. Thanks Hiran! Sebastian 2004-10-06 17:47:33,268 ERROR [org.apache.struts.util.RequestUtils] Error creating form bean of class

RE: Cannot create ActionForm

2004-10-06 Thread Hiran.Chaudhuri
Hi, Sebastien. This might be caused since Struts logs what bean it created and is going to populate. Turn off the RequestProcessor's log4j category and the call to toString() should be gone. Hiran - Hiran Chaudhuri SAG Systemhaus GmbH Elsenheimer Straße

How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread O. Oke
Please tell me how to configure Tomcat/Struts so that error messages are sent to a file, not the console? SERVER == I am using tomcat-5.0.27 BACKGROUND == I am using for logging error messages. The output of the code below goes to Eclipse console. What I want is for the output

RE: How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread Hiran.Chaudhuri
Hi, O. Check the configuration of the log facility actually in use (commons-logging can use several). Most probably this is log4j. Then have a look at the log4j configuration, which can be done with a log4j.properties file. Changes in this file and restarting your application should be all you

Listbox Validation in struts

2004-10-06 Thread Priya Jotwani
Hi, I have a JSP Page where I have a multiple selection Listbox. When the user submits the page, there should be some values in this listbox. How do I make the validations for the same in validator.xml ? I have done similar thing for dropdown by the following entry in validator.xml field

RE: Cannot create ActionForm

2004-10-06 Thread Martin Gainty
Personally I would log this as a bug org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:844) should *not* be allowing nulls as string Anyone else ?? Martin Gainty (cell) 617-852-7822 (e) [EMAIL PROTECTED] (http)www.laconiadatasystems.com Hi, Sebastien. This might be caused

[OT] Re: How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread DGraham
Configure the proper appender: http://logging.apache.org/log4j/docs/manual.html Dennis O. Oke [EMAIL PROTECTED] 10/06/2004 08:10 AM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts Users Mailing List [EMAIL PROTECTED] cc Subject How to configure

Re: global forwards in module config files

2004-10-06 Thread Jeff Beal
Peter Werno wrote: This is how it works: - struts-config.xml -- struts-config ... global-forwards forward name=home path=/index.jsp redirect=false/ forward name=loginform path=/login.jsp redirect=false/ forward name=error500 path=/error/err500.jsp

Re: global forwards in module config files

2004-10-06 Thread Peter Werno
Hello Jeff, thanks for the hint. I had tested multiple variations of it, including /index/index.do, but to no avail. I have checked in the Action Class that tries to get it. It does - ActionForward myForward = mapping.findForward(indexHome); if(myForward == null)

RE: How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread O. Oke
Hi Hiran, Thanks for your response. I am using simplelog and it is already working. The only problem is that the output is going to the console. What I want is for the output to go into a file. There is nothing in the configuration information that states how to redirect output to a file.

RE: Enhancement requests

2004-10-06 Thread David Suarez
See responses in-line below...djsuarez -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 2:40 PM To: Struts Users Mailing List Subject: Re: Enhancement requests At 2:23 PM -0500 10/5/04, Hubert Rabago wrote:

Re: global forwards in module config files

2004-10-06 Thread Jeff Beal
Have you read http://struts.apache.org/userGuide/configuration.html#module_config-switching? It explains how to use contextRelative forwards in Module A to forward to pages in Module B. If that's not what you need, you could define all of your application-global forwards in an XML external

RE: How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread Hiran.Chaudhuri
Your log4j configuration probably uses a consoleappender. Change this to be a fileappender instead, and you are done. This document describes the configuration of log4j in short: http://logging.apache.org/log4j/docs/manual.html To see what appenders are available in log4j, see

Re: Enhancement requests

2004-10-06 Thread Niall Pemberton
Create a bugzilla ticket http://jakarta.apache.org/site/bugs.html ... preferably with a patch in unified diff format: Please note that Struts has recently moved from CVS to SVN and any patches should be generated against the latest source in SVN:

Re: ActionMessages Help

2004-10-06 Thread Niall Pemberton
Either use the html:errors or html:messages tag http://struts.apache.org/userGuide/struts-html.html#errors http://struts.apache.org/userGuide/struts-html.html#messages Niall - Original Message - From: Richard [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent:

RE: [OT] Display Tag Library problems with Weblogic 6.1

2004-10-06 Thread Joe Germuska
At 1:31 AM -0400 10/6/04, David G. Friedman wrote: Joe, Dumb question for you: Is the taglib line in your displaytag using jsp really %@ taglib uri=http://displaytag.sf.net/; prefix=display % The uri is arbitrary, and just needs to match up with one taglib-uri element value in the web.xml file.

Re: global forwards in module config files

2004-10-06 Thread Peter Werno
Hi Jeff, thanks for the hint. Using the include file variant is probably a work-around for my problem, but it doesn't really allow for what I was planning. My idea was to have a global forwards section in each module that would be global for the application. Each module could that way define, how

Tracing action dispatching

2004-10-06 Thread Laurent Duperval
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 determine where I made a

Page Navigation in Struts

2004-10-06 Thread Shabada, Gnaneshwer
Hello All, I am planning to implement a Page Navigation functionality to navigate through search results in my project. I read about ValueListHandler pattern and thought that would be the best approach. But am not sure if Struts has any inbuilt navigation functionality or if I can adopt any

Passing key of a Treeap as a parameter in html:link

2004-10-06 Thread Phani
Ok, My Code snippet looks like this. logic:iterate name=varAssumptionsForm property=varAssumptionsSettingsMap id=map tr td TABLE border=1 cellpadding=0 cellspacing=0 style=BORDER-COLLAPSE: collapse bordercolor=#11 width=800 TR TD align=center

RE: How to configure Tomcat/Struts ... error messages are sent to a file, not the console?

2004-10-06 Thread O. Oke
Thanks for your response. I am using simplelog, not log4j. Thank you. --- [EMAIL PROTECTED] wrote: Your log4j configuration probably uses a consoleappender. Change this to be a fileappender instead, and you are done. This document describes the configuration of log4j in short:

RE: Tracing action dispatching

2004-10-06 Thread Robin Mannering
Hi Laurent, I use log4j and the following log4j.properties file to achieve this. It gets the framework logging to one file (ie. struts) and my application logging to another file Can change the levels for each as desired as Struts put out a hefty chunk at debug level... but very useful...

RE: Tracing action dispatching

2004-10-06 Thread Robin Mannering
Sorry, Missed a bit on my cut and paste, Last line og log4j.properties should have read: log4j.appender.file2.layout.ConversionPattern=%d{dd-MMM HH:mm:ss} %-5p %t%x [%C{1}.%M] %m%n -Original Message- From: Robin Mannering Sent: 06 October 2004 15:44 To: 'Struts Users Mailing List'

An Eclipse Like WebApp Framework?

2004-10-06 Thread Rob Evans
Folks, I'm wondering if anyone has thought about developing an Eclipse like WebApp framework. The idea is to provide an application shell and a contribution (think plugin) mechanism. Contributions could include, tabs, navigation, help, etc.. Why bother you say? I've found that in a corporate

Session authentication - Struts or ServletFilter

2004-10-06 Thread andy wix
Hi, What is the best approach for the above? I don't use container security - when a user logs in I store a User object in the session and each page should then check that the User is not null before proceding. You seem to get a real mix of opinions reading about the subject - the Servlet 2.3

Re: Internationalizing a Struts project

2004-10-06 Thread Michael McGrady
Boy, Howdie, Hiran! It would be great to have RequestUtils be extensible. That sounds like the start of something really good to me. Michael McGrady [EMAIL PROTECTED] wrote: Hi, Craig. You hit the bull's eye. No I claim this not only to be a JSP/Servlet problem. The way you describe will

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, 2004

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

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:

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

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

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 struts (as

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

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

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: html:select property=expiryDay html:options collection=days property=idValue

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.

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 see what

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 resistence

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:

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 of the

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 snip When it comes to architecture and design, feelings suck. ;-) You wouldn't know that

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

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

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

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

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 know exactly

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

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

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.

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

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 the same UI

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: 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-userm=109351495917793w=2 Paul -Original Message- From: struts lover [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004

[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

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-userm=109351495917793w=2 Paul -Original Message- From:

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

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: 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] logic:notEmpty

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

Iterating an array list into html:text

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) TABLE border=1 cellpadding=0 cellspacing=0 style=BORDER-COLLAPSE: collapse bordercolor=#11

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

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

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

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

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

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

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

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.

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

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: Iterating an array list into html:text

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) TABLE border=1

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

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,

  1   2   >