RE: The display:* tag library

2003-01-23 Thread Rene Eigenheer
+1 -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 23. Januar 2003 06:05 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: The display:* tag library Below is a proposal I posted on my website tonight (http://tinyurl.com/4s3j): If

Migrate the data out of the form bean into the model bean

2003-01-23 Thread Heligon Sandra
I would like to know if I have to associate a form-property tags for all the fields of my HTML form including those which are in reading mode alone or only the input fields ? If data has not to be modified can I place my model bean in the request and use struts bean

RE: Creating an Action inside an Action

2003-01-23 Thread PILGRIM, Peter, FM
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] On Thu, 23 Jan 2003, Peter A. Pilgrim wrote: Actually, Craig, what I am looking for is: (1) How to find all the action mappings registered for a Struts application? I would like to

Class diagrams for Struts 1.1, or even java packages available?

2003-01-23 Thread Jagdish Arora
Hi all, Are the class diagrams for various struts packages available? I found some for 1.0.2 here at http://rollerjm.free.fr/pro/Struts.html Jean-Michel Garnier's website (thanks JMG). He does mention that he donated them to Apache FSF. Does anyone know for a similar effort for 1.1.

forward to same page

2003-01-23 Thread Heather Buch
Hi, Is there a way to set the forward page to be the same page that originated the request? I want to enable users to change locale with a button. But I don't want them to go anywhere else after submitting their form. Here is an example to illustrate what I want to do (obviously, I know

Re: Nobody answers....(solved)

2003-01-23 Thread Nathalie Foures
The problem came from struts-config.xml. I badly wrote the forward tag! Sorry for the noise I made, for such a little problem! Thank you for people who tried to help me! Nathalie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: forward to same page

2003-01-23 Thread Nicolas De Loof
Here is a quick and dirty solution : In your JSP you can add a form with an origine hidden field : form action=/changeLocale.do method=post input type=hidden name=origine value=%= request.getRequestURL() % Language : select.../select input type=submit value=translate /form This way,

Re: Class diagrams for Struts 1.1, or even java packages available?

2003-01-23 Thread Pascal THIVENT
En réponse à Jagdish Arora [EMAIL PROTECTED]: Hi, You should take a look at this : http://rollerjm.free.fr/pro/Struts11.html HTH P. Hi all, Are the class diagrams for various struts packages available? I found some for 1.0.2 here at http://rollerjm.free.fr/pro/Struts.html

Catching when the maxFileSize is reached.

2003-01-23 Thread Shaun Whyte
When using Struts 1.0.2, it's possible to set the maxFileSize in the web.xml for the action servlet. Although this seems to stop transfer when this amount is reached, it throws a ServletException (I think the actual exception is MaxLengthExceededException) from the MultipartRequestHandler.

Problem with unused Formbean-Properties

2003-01-23 Thread Andreas Langmann
Hello, i have a formBean which has a property id. this id is not shown to the user and it has no associated input field. If the user posts the FormData the id contains the prior value - as expected. But since we implemented the reset() method in every formBean, struts calls this method and

How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
Hey all, does anybody knows a nice tutorial about iterating ? I'm to stupid... My JSP: %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean% %@ taglib uri=/WEB-INF/struts-html.tld prefix=html% jsp:useBean id=person scope=request class=de.hauschel.wapen.bt.vo.VOPerson/ html head titleStruts Form

How to handle a multiple select tag

2003-01-23 Thread Jordan Thomas
Hi, I have a form that has an html:select tag that looks like this: html:select property=permissions multiple=true size=10 tabindex=5 html:options collection=allPermissions property=permissionId labelProperty=permissionName/ /html:select This renders out as intended but when I

RE: The display:* tag library

2003-01-23 Thread Matt Raible
Ed, Thanks for getting back to me. I actually sent the same message you see below (mine not yours) to the struts-user list last night. I'll let you know what they say and if I can find a pumpkin keeper. In the meantime, if you want to get the ball rolling for setting up a project at SF, that'd

Re: Value of Struts?

2003-01-23 Thread Puneet Agarwal
I recommend struts 'coz: Before coming across struts, I used to collect the strengths of a nice architecture, I primarily work with technical architectures and infrastructures modules of various applications for my client. All that I had learnt in my software life, all that I could have thought

Re: forward to same page

2003-01-23 Thread Heather Buch
I left out some important information from the question I posed earlier: original question: Is there a way to set the forward page to be the same page that originated the request? I want to enable users to change locale with a button. But I don't want them to go anywhere else

Re: How to iterate over Arraylist

2003-01-23 Thread Nicolas De Loof
You just have to add at begining of your JSP : %@ taglib uri=/WEB-INF/struts-loigc.tld prefix=logic% Without that, you can see that logic:xx tags appears in resulting HTML not beeing interpreted by JSP parser. Nico. My JSP: %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean% %@ taglib

Re: Any Struts-based calendar examples out there?

2003-01-23 Thread Matt Raible [EMAIL PROTECTED]
One open source project (Roller) I work on has a JSP Tag Library calendar - you might be able to tweak it. Project Page: http://rollerweblogger.org/ And there's also a big calendar as part of it - example at: http://www.rollerweblogger.org/page/roller/Archives For my favorite javascript-based

radio Button

2003-01-23 Thread Sangeetha Nagarjunan
How is the value for a radio button caught? Would anyone be abe to help me thru with the JSP and form bean in this scenario? Sangeetha Nagarjunan Nicolas

Re: forward to same page

2003-01-23 Thread Nicolas De Loof
That is what I understood. The localeform is sugested can be added in every JSP (that is able to redisplay fine). It has to take as parameter the locale selected and the incoming JSP page, to be able to set Locale and to redisplay the JSP. You can get a JSP URL when rendering using

Cancel

2003-01-23 Thread João Paulo Batistella
Hi! I have a form with two buttons, submit and cancel. My form has session scope. When I press the cancel button I would like to clear all the information in the form stored in the session. How can I do this? Thanks, Joao Paulo. - Busca Yahoo! O serviço de

AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
That's really stupid ;-) But now there's the next error: I think the use Bean Tag is wrong, because the Error ist: Generated servlet error: [javac] Compiling 1 source file C:\tomcatWapen\work\Standalone\localhost\wapen\form\listpersons_jsp.java:92: person is already defined in

Re: How to iterate over Arraylist

2003-01-23 Thread Gemes Tibor
2003. január 23. 12:46 dátummal Softwareentwicklung Hauschel ezt írtad: Hey all, does anybody knows a nice tutorial about iterating ? %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean% %@ taglib uri=/WEB-INF/struts-html.tld prefix=html% The logic taglib directive is missing Tib -- To

RE: The display:* tag library

2003-01-23 Thread Hohlen, John
Sounds like a great idea to me. You may want to touch base with Rick Ruemann and Tim Golden as well. It sounds like they've made some addition's to Ed's original library: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg53513.html http://timgolden.com/taglib/ JOHN -Original

RE: How to iterate over Arraylist

2003-01-23 Thread René Eigenheer
what do you use jsp:useBean id=person scope=request class=de.hauschel.wapen.bt.vo.VOPerson/ and not the standard struts (dyna)form? but if you realy need, maybe it works the following way: jsp:useBean id=persons scope=request/ logic:iterate id=person type=de.hauschel.wapen.bt.vo.VOPerson

Re: How to iterate over Arraylist

2003-01-23 Thread Nicolas De Loof
jsp:useBean id=person scope=request class=... jsp:usebean will search in scope or create bean and asing a script variable person logic:iterate id=person name=persons logic:iterate implicitly create a script variable form id attriute. This is the reason you get person is already defined. Just

RE: forward to same page

2003-01-23 Thread shirishchandra . sakhare
Hi, We have implemented some thing similar using a custome tag(NLS tag..)The approach we have used is we have a abstract action..And in abstract action , we strore the last action called url...So every time the last action called is in the session...along with the request uri ... So when user

AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
No, it doesn't works, the problem seems to be the: bean:write name=person property=username / If i change person to person2 the errormessage change,too. so the error cannot be infront of bean:write ! But why ist the bean not in any scope ? thanks Fredy -Ursprüngliche Nachricht- Von:

RE: How to iterate over Arraylist

2003-01-23 Thread René Eigenheer
how looks the actual jsp you test and what is/are the error message(s) -Original Message- From: Softwareentwicklung Hauschel [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 23. Januar 2003 13:55 To: Struts Users Mailing List Subject: AW: How to iterate over Arraylist No, it doesn't

Re: Cancel

2003-01-23 Thread Gemes Tibor
2003. január 23. 13:25 dátummal João Paulo Batistella ezt írtad: Hi! I have a form with two buttons, submit and cancel. My form has session scope. When I press the cancel button I would like to clear all the information in the form stored in the session. How can I do this? In your action

Re: AW: How to iterate over Arraylist

2003-01-23 Thread Gemes Tibor
2003. január 23. 13:36 dátummal Softwareentwicklung Hauschel ezt írtad: That's really stupid ;-) But now there's the next error: I think the use Bean Tag is wrong, because the Error ist: It is a bug in tomcat 4.1.10 afaik. Upgrade to 4.1.18. Tib -- To unsubscribe, e-mail: mailto:[EMAIL

AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
Hey Rene, here are the jsp and the error ! thanks, Fredy -Ursprüngliche Nachricht- Von: René Eigenheer [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 14:09 An: 'Struts Users Mailing List' Betreff: RE: How to iterate over Arraylist how looks the actual jsp you test

AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
The Error.html wasn't send ?!?! Don't know why. Here it is: org.apache.jasper.JasperException: Cannot find bean person in any scope at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2 48) at

RE: The display:* tag library

2003-01-23 Thread Robert Taylor
Matt, I'ld like to see Ed's paging API broken into more layers; separate paging functionality from HTML generation. I've already tweaked the code a little to provide the ability to publish the current page and page size to any hyperlinked column so that after viewing the details, you can jump

RE: Why is the reset method called when I submit the form?

2003-01-23 Thread Loren Hall
I had similar behavior that I found odd with 1.0.2, the actionform would be populated, reset was then called, and then validate was called. Jeremy, my *solution* was to overwrite reset() to do nothing at all. By creating another method to mimic the reset, I now call reset when it's more

Re: AW: How to iterate over Arraylist

2003-01-23 Thread Nicolas De Loof
What version of tomcat are you using ? Nico. That's really stupid ;-) But now there's the next error: I think the use Bean Tag is wrong, because the Error ist: It is a bug in tomcat 4.1.10 afaik. Upgrade to 4.1.18. Tib -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

RE: [OT] Struts Job

2003-01-23 Thread Mark Galbreath
Hogtown is a pretty cool city. Really great bars in the Old Section by the stockyards. It would be tempting to live there if it were not for all those Canucks. -Original Message- From: Eric C. Hein [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 4:48 PM Want to move to

AW: AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
It is 4.1.18. ! Fredy -Ursprüngliche Nachricht- Von: Gemes Tibor [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 14:10 An: Struts Users Mailing List Betreff: Re: AW: How to iterate over Arraylist 2003. január 23. 13:36 dátummal Softwareentwicklung Hauschel ezt írtad:

Re: Why is the reset method called when I submit the form?

2003-01-23 Thread Nicolas De Loof
1. Struts find the formbean on scope or creates a new one 2. formbean.reset() is called to set all properties to default values 3. formbean is populated from request parameters 4. formbean.validate() is called (if configured) 5. formbean is passed to action reset() is used to set all property to

Re: AW: How to iterate over Arraylist

2003-01-23 Thread Gemes Tibor
2003. január 23. 14:42 dátummal Nicolas De Loof ezt írtad: What version of tomcat are you using ? 4.1.12 at the moment, but planning to upgrade soon. Tib -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Action set-property : how to read

2003-01-23 Thread Manomohan K Kalathil
Hi all, The struts-config.dtd tells us that we can set custom properties for every action with the use of the set-property element. !ELEMENT action (icon?, display-name?, description?, set-property*, exception*, forward*) I assume that we can have an action config as below action

RE: [OT] Struts Users in Calgary Alberta CANADA ?

2003-01-23 Thread Mark Galbreath
Don't know about Struts developers, but there's a bunch of hashers: http://onon.org/asm/ Mark -Original Message- From: Mike Deegan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 5:06 PM Are you a Struts user in Calgary Alberta CANADA ?? I've just moved to Calgary

reload application after a slight modification

2003-01-23 Thread Tom
I use Forte For Java IDE community version, each time I stop and start the internal tomcat engine for application testing, it is not only freeze my machine, it also takes about 2 minutes to restart completely. How can I reload an application without restart the tomcat? I know there is no reload

RE: [OT] Struts Job

2003-01-23 Thread Mark Galbreath
Don't know, but there's a bunch of hashers! http://www.hogtownh3.ca/ Mark -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 5:22 PM Toronto!? Isn't that where those wacky Raelians live hanging out at the UFO Barn. :-D -- To

Re: AW: How to iterate over Arraylist

2003-01-23 Thread Nicolas De Loof
Could you please add this dump code in your JSP, replacing your bean:write so that we could see what logic:iterate has done with your person. (Please post resulting HTML) Nico. h3PAGE_SCOPE/h3 % for (java.util.Enumeration e = pageContext.getAttributeNamesInScope(

AW: How to iterate over Arraylist

2003-01-23 Thread Softwareentwicklung Hauschel
Found the Problem !! The first entry of the arrayList was null !! Thanks, Fredy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: reload application after a slight modification

2003-01-23 Thread Burke, Kerry
Check out the Tomcat developer docs http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/processes.html It has a section on how to use Ant to manage your webapps. One of the Ant tasks that is distributed with Tomcat is reload which will do what you want. Cheers, Kerry. -Original

Re: reload application after a slight modification

2003-01-23 Thread Thomas CORNET
Check out : http://jakarta.apache.org/tomcat/tomcat-4.1-doc/manager-howto.html With URL like http://127.0.0.1:/manager/reload?path=/webappname, you can reload the context of a specific application, without having to restart tomcat Thomas At 05:59 23/01/2003 -0800, you wrote: I use Forte

RE: How to iterate over Arraylist

2003-01-23 Thread Mark Galbreath
Iteration has scores, if not hundreds, of references in the archive: http://www.mail-archive.com/struts-user%40jakarta.apache.org/ Mark -Original Message- From: Softwareentwicklung Hauschel [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 6:47 AM does anybody knows a nice

RE: How to handle a multiple select tag

2003-01-23 Thread Sri Sankaran
Is this setter being called at all? If the 'permissions' property of your form-bean is some kind of List (as it seems looking at the setter you have shown) I don't think this setter will be invoked at all. Struts will look for a void setPermissions(List x) method. Likewise when you

New BeanUtil 1.6/ConvertUtils/Date Format/toString()

2003-01-23 Thread Jim Krygowski
Hi All- A little while ago someone on this list emailed me directly with a question and I didn't have the answer he wanted. In the intervening days, I lost this person's email, so I'm going to post to the list hoping that he will get this message. You asked me how one could use Rick Reumann

RE: Why is the reset method called when I submit the form?

2003-01-23 Thread ROSSEL Olivier
1. Struts find the formbean on scope or creates a new one 2. formbean.reset() is called to set all properties to default values 3. formbean is populated from request parameters 4. formbean.validate() is called (if configured) Which class makes step 2? ActionServlet? RequestProcessor? And step

Use of DynaActionFormClass

2003-01-23 Thread Greg Murray
I mistakenly posted this to the struts-dev list last night - it belongs on this list since it doesn't have anything to do with development of Struts. For those of you on that list as well, I apologize for you seeing it twice. --- Hello, Currently I'm working on

RE: Why is the reset method called when I submit the form?

2003-01-23 Thread Jarnot Voytek Contr AU HQ/SC
processPopulate(...) in RequestProcessor does 1 and 2, processValidate(...) does 4. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: ROSSEL Olivier [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 8:29 AM To: 'Struts Users Mailing List'

RE: Why is the reset method called when I submit the form?

2003-01-23 Thread Jarnot Voytek Contr AU HQ/SC
sorry, make that: processPopulate(...) in RequestProcessor does 2 and 3, pocessValidate(...) does 4. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 8:36 AM

RE: Use of DynaActionFormClass

2003-01-23 Thread Greg Murray
Yes, I believe that would work, except I also want to keep using dynamic beans - which would lead me back toward option 1 if option 2 was illegal, so to speak. Thanks for the suggestion, though. -Original Message- From: Christopher Willingham [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Re: Why is the reset method called when I submit the form?

2003-01-23 Thread Nicolas De Loof
A long time ago, someone suggested to add a control in the struts-config.xml so the reset() is not always mandatory but can be disabled in the struts-config.xml. May be it sounds like an anti-pattern from the gurus, but to me, it sounds like a very interesting option, for real-life apps.

RE: Use of DynaActionFormClass

2003-01-23 Thread Robert Taylor
The problem here is that for some fields, I may want to do validation sometimes, but not all the time, but using the same form bean for all actions would require that if validation is set for a field, then it's always validated. DynaValidatorActionForm allows validation to be bound to the

Re: reload application after a slight modification

2003-01-23 Thread Tom
Thanks Kerry and Thomas Here is my implementation using Tomcat 4.04 By default, the manager context is placed under %TOMCAT_HOME%\webapps\manager In order to use the manager to perform reload or deploy actions, what have to do is to add the manager role in the configure file, tomcat-users.xml

RE: How to handle a multiple select tag

2003-01-23 Thread Jordan Thomas
Thanks Sri for the help. I have updated the code to reflect your suggestions. I actually had an ArrayList in there originally and I changed it to an String[] because I was receiving the following error. javax.servlet.ServletExcepion: BeanUtils.populate ... --- Root Cause --

Re: The display:* tag library

2003-01-23 Thread Charles Brault
+1 I've added support for Struts messages in column titles, glad to contribute it. Since I really depend on this library for a product I've developed, and need to fix some problems, make some additions, I'd be pleased to work with others on improving this great piece of code, perhaps be the

RE: modules use questions

2003-01-23 Thread Raible, Matt
I've used tiles, validator and ApplicationResources.properties in a modules environment. You just have to configure your struts-config.xml and struts-config-module.xml to load the same files - pretty simple. Matt -Original Message- From: Kirby Vandivort [mailto:[EMAIL PROTECTED]]

processPreprocess

2003-01-23 Thread Kiss, Tibor (Contractor)
Hi! We are using Struts beta2 in a production environment, under Weblogic6.1. We are trying to modify Struts beta 3 to use XML/XSLT internally instead of JSPs. (As output should not only be HTML.) Therefore, we subclassed RequestProcessor, to invoke an XML bean serialization mechanism and XSLT

Re[2]: The display:* tag library

2003-01-23 Thread Rick Reumann
On Thursday, January 23, 2003, 8:33:20 AM, Robert wrote: RT Matt, RT I'ld like to see Ed's paging API broken into more layers; RT separate paging functionality from HTML generation. RT I've already tweaked the code a little to provide the ability RT to publish the current page and page size

Packaging struts business logic and action classes

2003-01-23 Thread Vinay
Can somebody please clarify or explain the following 1. Business Objects (BO's) 2. Data Access Objects (DAO's) 3. Value Objects (VO's) 4. Data transfer objects (DTO's) All of the above I know is part of the Model(M) in MVC architecture.I think that Value Objects and DTO's are the same , and

Using Struts Datasource withaout Servlet Context

2003-01-23 Thread Softwareentwicklung Hauschel
Hey all, i won't pass the datasource form servlet to backend, how can i get the datasource outside a servlet ? Fredy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Using Struts Datasource withaout Servlet Context

2003-01-23 Thread David Graham
JNDI David From: Softwareentwicklung Hauschel [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Using Struts Datasource withaout Servlet Context Date: Thu, 23 Jan 2003 16:37:16 +0100 Hey all, i won't pass the

AW: Packaging struts business logic and action classes

2003-01-23 Thread Kiss, Tibor (Contractor)
1 BO Are the classes, that represent entities in the business domain. (NOT EJBs, although BO persistence can be through EJBs.) 2 DAO The Persistence Objects for BOs. (In theory, if you are using EJBs, they serve as DAOs, although, this explanation violates the strict definition of DAO, and I

Re: The display:* tag library

2003-01-23 Thread Ka-Wai Chan
+1 This lib is very useful, I'd be glad to help Ka-Wai Rick Reumann wrote: On Thursday, January 23, 2003, 8:33:20 AM, Robert wrote: RT Matt, RT I'ld like to see Ed's paging API broken into more layers; RT separate paging functionality from HTML generation. RT I've already tweaked the code a

Re: Packaging struts business logic and action classes

2003-01-23 Thread Nicolas De Loof
I think Value Object is the J2EE BluePrint name of Data transfer objects design pattern. This is a way to transfert multiple datas as a simple bundle (so you doesn't need to make multiple getter calls, especially on remote obects). Data Access Objects (DAO) is a pattern to encapsulate ressource

RE: Packaging struts business logic and action classes

2003-01-23 Thread Greg Murray
I'm not sure if there is an accepted general way of packaging an app. I'll describe what we're doing on my current project to give you an example, though: com.companyname.neti com.companyname.neti.ejb com.companyname.neti.ejb.model - contains all DTO type objects

Re: [OT] Struts Users in Calgary Alberta CANADA ?

2003-01-23 Thread Ka-Wai Chan
Hello There are lots of struts users in Calgary Alberta. I am one! Cheers Mark Galbreath wrote: Don't know about Struts developers, but there's a bunch of hashers: http://onon.org/asm/ Mark -Original Message- From: Mike Deegan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January

RE: The display:* tag library

2003-01-23 Thread Jerome Jacobsen
I think a complete rewrite is needed AND a new API (same tags but different tag attributes). Thus I would say an entirely new tag library. I'll call the new version display2 and the current one display1 for clarity below. - Follow JSTL conventions for attribute names and support JSTL-EL.

AW: Using Struts Datasource withaout Servlet Context

2003-01-23 Thread Softwareentwicklung Hauschel
Yes, JNDI is cool ;-) I never used it, so it's time to do that ! Where did i find the value for Context.INITIAL_CONTEXT_FACTORY ? Fredy -Ursprüngliche Nachricht- Von: David Graham [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 16:40 An: [EMAIL PROTECTED] Betreff:

[OT] web site idea (was Value of Struts)

2003-01-23 Thread Robert McIntosh
I read everyone's responses to Gene Campbell's question and I think there should be a place on the Struts website (maybe a wiki or something?) where all of these good folks who responded to him could put up their Why I love Struts comments. I know I have to answer this question often to

dynamic tiles:put

2003-01-23 Thread Juri Smarschevski
hi all, have a little problem with application structure. there is: definition name=def.Simple path=/WEB-INF/tiles/simple.jsp put name=js value= / put name=body value= / /definition definition name=def.A extends=def.Simple put name=body value=/WEB-INF/tiles/b.jsp / /definition [a.jsp]

Re: The display:* tag library

2003-01-23 Thread Benjamin Simpson
I have started the rewrite/refactor. My src is available and is still in progress. The intent is to introduce an independent Table interface to be portable to other frameworks including a swing based JTable. Help yourself if it is helpful. If you would like my involvement I am interested.

Re: [OT] web site idea (was Value of Struts)

2003-01-23 Thread David Graham
You can also say, IBM integrated Struts support into WSAD. IBM is supportive of OSS in general though. David From: Robert McIntosh [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [OT] web site idea (was Value of Struts) Date: Thu, 23

AW: DynaValidatorForm and multipage forms

2003-01-23 Thread Kiss, Tibor (Contractor)
We used DynaValidatorForms with multipage forms, by setting the properties on later pages to a dummy value initially (which was valid), and propagating all values not editable through hidden fields. Maybe not the best, but it worked. tibor -Ursprüngliche Nachricht- Von: [EMAIL

RE: DynaValidatorForm and multipage forms

2003-01-23 Thread Larry Zappeterrini
There is a bug in bugzilla at http://issues.apache.org/bugzilla/show_bug.cgi?id=16337 that is pretty much the problem you are describing. I am creating a patch for the fix that I implemented to get DynaValidatorActionForm and DynaValidatorForm to work as multipage forms. I will post it to the

RE: multi row / multi col input forms

2003-01-23 Thread Neil Carusetta
We are having trouble solving the same problem of updating the fields for a DynaActionForm's indexed properties. We are running on Struts 1.1 beta2. Should we be using the latest beta3 to get this to work? Our configuration basically follows that of James' below. We defined a Bean named

how to MessageResources in EJB's

2003-01-23 Thread Friso De Jonge
Hi, When deploying an application you generally create an ejb jar, an ear and a war file the ejb containing all ejb, the .war containing all the java,jsp taglibs and web-inf. My assumption is that this means the ejb.jar does not know the application.resources file. (since it cannot see the

AW: how to MessageResources in EJB's

2003-01-23 Thread Kiss, Tibor (Contractor)
Subclass MessageResource and use JNDI. -Ursprüngliche Nachricht- Von: Friso De Jonge [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 17:37 An: '[EMAIL PROTECTED]' Betreff: how to MessageResources in EJB's Hi, When deploying an application you generally create an ejb

RE: how to MessageResources in EJB's

2003-01-23 Thread Greg Murray
Or use a common JAR to contain a resource file, and reference it from both the EAR and WAR. -Original Message- From: Kiss, Tibor (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 9:39 AM To: 'Struts Users Mailing List' Subject: AW: how to MessageResources in EJB's

AW: how to MessageResources in EJB's

2003-01-23 Thread Kiss, Tibor (Contractor)
However, I see some design problems there, if you are using messages (view) in the backend/logic part of your app. -Ursprüngliche Nachricht- Von: Greg Murray [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 17:41 An: Struts Users Mailing List Betreff: RE: how to

RE: Russian I18n problems

2003-01-23 Thread Chalmers, Doug
Solved this now. The resources file needed to be converted to UTF-8 and THEN converted using native2ascii. No UTF settings needed at all. Cheers, Doug -Original Message- From: Chalmers, Doug Sent: 22 ?? 2003 ?. 10:24 To: Struts User Subject: Russian I18n problems Hi all, I have

[OT]Good News

2003-01-23 Thread Kevin . Bedell
Just got a call from a recruiter. He told me that hiring is picking up for java in general and especially for anyone with Struts experience. A lot of his big company customers are beginning to staff Struts projects. Definitely a testament to the hard work of all the commiters - great work!

RE: The display:* tag library

2003-01-23 Thread Robert Taylor
See comments in line: -Original Message- From: Jerome Jacobsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 11:07 AM To: Struts Users Mailing List Subject: RE: The display:* tag library I think a complete rewrite is needed AND a new API (same tags but different

RE: db connection pool question [solved]

2003-01-23 Thread Raible, Matt
Using the following in my DBCP Connection Pool solved my problem: parameter namedriverClassName/name valueoracle.jdbc.pool.OracleConnectionPoolDataSource/value /parameter However, for the JDBCRealm, I still have to use:

RE: Broadvision 6.0 and context-relative path in form mappings

2003-01-23 Thread Bredesen, Chris - NA US HQ Delray
Hi all, I'm composing this message as a reply to an archived one in hopes that it will help tracking and/or cause any potential helpers to recall the inital discussion... We had the same problem as described in this original message:

Re: [OT] web site idea (was Value of Struts)

2003-01-23 Thread Robert McIntosh
That is true. After all they both donate and use a lot of Apache/Jakarta stuff. I believe they use Jasper and I know they rebrand Apache web server. Robert David Graham wrote: You can also say, IBM integrated Struts support into WSAD. IBM is supportive of OSS in general though. David

AW: [OT] [Digester] Mapping Children to Parent Object

2003-01-23 Thread Jacob Hookom
I was unable to get the CallMethodRule to accomplish the mapping properly (probably my own fault), but I instead wrote a very simple ObjectMapRule that will handle this common mapping requirement. parent type=java.util.HashMap child name=A type=some object/ child name=B type=some

RE: The display:* tag library

2003-01-23 Thread Jerome Jacobsen
Good idea. Makes sense to me. -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 11:50 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: The display:* tag library What do you think of two tag libs: pager:* table:*

RE: how to MessageResources in EJB's

2003-01-23 Thread Friso De Jonge
i was thinking of using it as for picking up and therefore holding static data, (not changeable) not really for view and using like MessageResources resources = getResources(); String example = resources.getMessage(resource.example); or are there better solutions to do this in ejbs ?

RE: [OT]Good News

2003-01-23 Thread ROSSEL Olivier
Just got a call from a recruiter. He told me that hiring is picking up for java in general and especially for anyone with Struts experience. A lot of his big company customers are beginning to staff Struts projects. Definitely a testament to the hard work of all the commiters - great

RE: The display:* tag library

2003-01-23 Thread Damm, Gary
I checked http://javawebifier.com/index.htm for examples of the taglib rewrite but it states there aren't any examples yet. Is there somewhere you can point to examples of the rewritten tags open to the public? Have you added features to incorporate titles from Struts MessageResources? I'm using

AW: [OT] web site idea (was Value of Struts)

2003-01-23 Thread Kiss, Tibor (Contractor)
I do not know, how things are on the other side of the drink (USA) but here in Europe more and more companies do go for open-source. (In 2002 I have seen one project on Weblogic [with Struts] and a multiple of them on JBoss.) The only place, where OSS is behind are databases. IMHO. Plus,

RE: db connection pool question [solved]

2003-01-23 Thread pqin
If you use oracle.jdbc.pool.OracleConnectionPoolDataSource, what will be the url? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Raible, Matt [mailto:[EMAIL PROTECTED]] Sent: January 23, 2003 11:53 AM To: 'Struts

AW: how to MessageResources in EJB's

2003-01-23 Thread Kiss, Tibor (Contractor)
I do not understand, why you want to use messages in EJBs. What are the messages supposed to do there? Why are they written to a DB? (if we are talking EntityBeans here.) -Ursprüngliche Nachricht- Von: Friso De Jonge [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 23. Januar 2003 18:08

RE: how to MessageResources in EJB's

2003-01-23 Thread Greg Murray
Or do you intend them more to be constant values for which you don't want to recompile if they changed (you'd still have to repackage, though)? -Original Message- From: Kiss, Tibor (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 10:13 AM To: 'Struts Users Mailing

AW: [OT]Good News

2003-01-23 Thread Kiss, Tibor (Contractor)
Just a thougth OR mapping has been a THING for the last 10 years...and I do not think, anybody will provide a good generic solution. Ever. .NET will come, and stay. Java too. But I think (got the feeling in the gut) that IBM will take it over in a few years. tibor -Ursprüngliche

  1   2   3   >