Struts and JSTL fmt:setBundle

2003-01-27 Thread PILGRIM, Peter, FM
Struts has a i18n implementation that predates JSTL version. I was wondering how to use the Struts application properties with the JSTL fmt:bundle? The obvious answer is point JSTL bundle to load the Struts message bundle. In other have two resource bundles in memory. However, is there any plans

Problem with Custom ActionServlet

2003-01-27 Thread ashokd
Hi, To implement session expire, I written Custom ActionServlet, which extends the ActionServlet. When action fires it is giving the following error: I am using Struts1.0.2 [02.01.25 01:27:40:012 GMT+05:30] 4f39724f WebGroup X Servlet Error: Unresolved compilation problem:

Is JSF an Struts intergration time mature?

2003-01-27 Thread Marco Tedone
Hi, i just knew the JSF existance as i'm reading some literacy on Struts 1.1. As far as i learnt, JSF and Struts could intergrate one with the other. I had a quick look to JSR 127 and i have only a question: as per your experience, is the time for JSF and Struts integration mature? The reply will

RE: Is JSF an Struts intergration time mature?

2003-01-27 Thread Andrew Hill
no -Original Message- From: Marco Tedone [mailto:[EMAIL PROTECTED]] Sent: Monday, 27 January 2003 19:27 To: Struts-user-list Subject: Is JSF an Struts intergration time mature? Hi, i just knew the JSF existance as i'm reading some literacy on Struts 1.1. As far as i learnt, JSF and

Re: Sample Code for combo box

2003-01-27 Thread david . heagney
Hi, I'm having trouble with the following piece of code... I'm trying to use the html:select and html:option to crate a dropdown box. My jsp code is as follows: ++ Month html:select property=fromMonth html:option

Is commons logging required in Struts?

2003-01-27 Thread Iain Sanderson
Seems like a dumb question, but I've been hunting a bug in my web application which seemed to be associated with commons-logging. Following advice on the log4j boards, I went for a 'pure' log4j implementation, replacing:- import org.apache.commons.logging.Log; import

Re: Is commons logging required in Struts?

2003-01-27 Thread Gemes Tibor
2003. január 27. 12:49 dátummal Iain Sanderson ezt írtad: Should I put the imports to commons.logging back? Can struts live without the commons-logging.properties file? I know commons-logging.jar is absolutely required. What is necessary for a 'pure' log4j implementation? I have a

Broadcast Messages....How

2003-01-27 Thread Puneet Agarwal
We plan to develop a huge application, following struts framework. Some part of our application has to have Swing Screens (20% ). We plan to use the same server side infrastructure for both Swing and HTML screens. To achieve this we thought of using Applet to Servlet communication model. But

Re: Is commons logging required in Struts?

2003-01-27 Thread Iain Sanderson
Tib, ...so it appears in your environment the commons-logging wrapper maps to log4j ( or finds it) without the need for the commons-logging.properties configuration. Do you still retain the import statements to commons.logging in your classes? Presumably yes. Thanks for helping. Iain

how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Souravmay Das
Hi All, I have a question can we call more than one Struts action for a HTTP Request. Do you have any idea how to do it. The basic idea of having more than one Struts actions, is for getting more fine grained reusable component. With regards, Sourav Das

Re: Is commons logging required in Struts?

2003-01-27 Thread Gemes Tibor
2003. január 27. 13:07 dátummal Iain Sanderson ezt írtad: You asked: Do you still retain the import statements to commons.logging in your classes? Presumably yes. Thanks for helping. I wrote: I have a log4j.properties in WEB-INF/classes, and there is no commons-logging.properties

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Andrew Hill
You are referring to Action chaining? This is discouraged as it leads to all sorts of problems... ...but wheres the fun in that eh? If you want to chain actions you can have the first actions actionForward point at the next, etc... Be aware that the RequestProcessor will repopulate the form from

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread shirishchandra . sakhare
Hi, If i understand u right u are saying that same request will be handled by more than one action.. e.g. Some thing like if user logs in, check his login credentials and then give him the list of his accounts in a banjking app.So u wil like to have a LoginAction(which just checks login) and a

No mapping available using layout-taglib ...

2003-01-27 Thread Andre Michel
Hello all, first, I know that this is not the mailing list for the additional layout-taglib, that there is an own, but my question is of a more general kind. I also guess that I make quite a stupid error, being relatively new to Struts and to programming Java. Thus forgive me, and please share

Re: Sample Code for combo box

2003-01-27 Thread Nicolas De Loof
JSP tags attribute must be String or Object (toString method is used). You are using an int as value attribute, so just convert it to String : html:option value=%= String.valueOf(i) % %= getMonthName (i) % /html:option Nico. Hi, I'm having trouble with the following piece of

Re: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Souravmay Das
Hi, You are almost close. the only problem with this model is that I am very closely coupling it in the code. So according to this design LoginAction will every time follow GetAccount Action.which I donot think is the desired functionality. rather It should Ideally go in the descriptor and

Html Text Message body content

2003-01-27 Thread PILGRIM, Peter, FM
Hi Has somebody changed the design of the html:text tags in the couple of months or so? I know you can do the body content as a value in the html:submit tags/ html:submit property=submit Press Button /html:submit But I thought you could do the same for the html:text and as well. html:text

Re: Prevent Cache.

2003-01-27 Thread carlos list
Yes, I have a proxy server for Extranet access, but my application runs only on the intranet. From: Chuck Cavaness [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Prevent Cache. Date: Fri, 24 Jan 2003

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Brian Lee
I have a question about action chaining in theory. I'm not sure what you mean by action chaining, but I tend to want to make my actions as generic as possible so that they can be called multiple times. For example, I worked on an app that did a lot of session work. So I would make a

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Mike Oliver
I believe the best path for you on this is to SubClass the RequestProcessor rather than chaining. You could then use any number of different design patterns to dispatch your actions and share data between them or leverage the Workflow Extensions/State Engine. Michael Oliver AppsAsPeers LLC 7391

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread Brandon Goodin
Struts Action Plug-in Extension 1.0 (for Struts 1.1b) http://www.asqdotcom.be/struts/ This extension looks to be extremely handy for you action chaining-mongers. ;-) Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original

Get ActionForward outside of an action

2003-01-27 Thread Andrew Hill
Ive got code in a class that needs to lookup a global ActionForward. I have access to the request, and the servletContext, but not to the mapping. Im using 1.1b1 which makes using b3's RequestUtils.getModuleConfig() somewhat troublesome... (yeh yeh, I know - should upgrade already. Busy leh!) If

Tiles errorPage

2003-01-27 Thread Christoph Rooms
hi, When there is an error on a JSP that is within a Tile. I don't see the exception ... If I forward to this JSP directly, the error is displayed as it should on the ErrorPage ... Anyone ? thanks, Christoph Christoph Rooms TAM + 32 475 531 529 Novell Positioned as a Leader in Analyst

Where to send bugs/fixes (RequiredIf Equals Condition)

2003-01-27 Thread Weber, Jeremy
Where should I send bugs or fixes with common validator. Specifically the EQUAL condition in RequiredIf doesnt seem to do anything. if (dependTest.equals(FIELD_TEST_EQUAL)) { this_required = dependTestValue.equalsIgnoreCase(dependVal); }

RE: Tiles errorPage

2003-01-27 Thread Quentin.Cope
Christoph I developed my last struts application using tiles for the first time. I found that jsp pages with errors didn't display any exceptions under exteNd App Server 3.7. However the same ear deployed to jboss/jetty behaved as I would have expected. I ended up developing against jboss even

Re: [PATCH] Re: JSP cannot call an action in its own module

2003-01-27 Thread David Graham
Attach all patches to the bugzilla report for the issue. Patches submitted to the mailing list have a high probability of getting lost. Thanks! From: Milo Hyson [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject:

RE: how to call more than one Struts Action for a given HTTP request

2003-01-27 Thread shirishchandra . sakhare
No..Not at all...I think this is the way struts application is supposed to work..Define actions as pure handlers..And then call them from any context by just using different mappings... I think action chainning as referred to on this list referes to using one action inside another action by

RE: Html Text Message body content

2003-01-27 Thread PILGRIM, Peter, FM
-Original Message- From: PILGRIM, Peter, FM Has somebody changed the design of the html:text tags in the couple of months or so? I know you can do the body content as a value in the html:submit tags/ html:submit property=submit Press Button /html:submit But I thought

Re: Where to send bugs/fixes (RequiredIf Equals Condition)

2003-01-27 Thread David Graham
Open a bug report for the issue and attach a patch file to it. David From: Weber, Jeremy [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' (E-mail) [EMAIL PROTECTED] Subject: Where to send bugs/fixes (RequiredIf Equals Condition) Date:

Logging

2003-01-27 Thread Suresh Addagalla
Hi, Please don't mind if my question is simplistic, but it's an area not explored by me. I need to implement logging in my Struts application. For now, I want to keep it very very simple, may be just limit to printing debug/info statements. But I am sure that in future I would need to provide a

RE: Logging

2003-01-27 Thread Pani, Gourav
you might wanna look into Log4J. -Original Message- From: Suresh Addagalla [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 10:04 AM To: [EMAIL PROTECTED] Subject: Logging Hi, Please don't mind if my question is simplistic, but it's an area not explored by me. I need to

Re: Logging

2003-01-27 Thread David Graham
The Jakarta commons-logging project provides exactly what you're looking for. David From: Suresh Addagalla [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Logging Date: Mon, 27 Jan 2003 20:34:11 +0530 Hi, Please don't mind if my question is simplistic, but

RE: Logging

2003-01-27 Thread Andrew Hill
Struts comes with a marvellous package known as commons-logging - which is what struts uses to output log messages. Commons logging info may be found at: http://jakarta.apache.org/commons/logging.html Its not actually a logger itself, but rather an api that allows you to change the logger you use

Secure a struts app

2003-01-27 Thread alexj
Hi, What's the best do to secure a struts app ? -- Alexandre Jaquet - -BEGIN GEEK CODE BLOCK- Version: 3.12 GCM d+ s: a-- C U*+ P L--- E--- W+++ N+++ o K w+ O M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X R* tv b DI--- D G++ e* h++ r% y* --END GEEK CODE

Parsing error

2003-01-27 Thread Gaurav . Goyal
Hi, I'm getting the following error when I restart my web server. I'm developing on an NT machine and then deploying the code onto a unix server. Things work fine on my machine, but I start getting this error as soon as I deploy my code and do a server restart. Is it a problem with the

RE: Logging

2003-01-27 Thread ROSSEL Olivier
-Message d'origine- De: Andrew Hill [mailto:[EMAIL PROTECTED]] Date: lundi 27 janvier 2003 16:19 À: Struts Users Mailing List Objet: RE: Logging Struts comes with a marvellous package known as commons-logging - which is what struts uses to output log messages. Commons

Re: Logging

2003-01-27 Thread Gemes Tibor
2003. janur 27. 16:18 dtummal ROSSEL Olivier ezt rtad: The if (log.isXXXEnabled) is really necessary? You cannot filter depending on the log level, at application level? No. But if you create a complex error text which takes time to assembly eg: log.debug(obj1: + obj1 + obj2: + obj2 + ...);

RE: Parsing error (Strange behaviour on NT)

2003-01-27 Thread Gaurav . Goyal
Found the problem. action-mappings was opened and closed many times in the document. Funny thing is it was working fine on NT. What is buggy here on NT? My web server's XML parser? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 9:18 AM

RE: Logging

2003-01-27 Thread Andrew Hill
Oops. Meant to comment on that and forget! No - the isInfoEnabled(), isDebugEnabled etc... type stuff isnt technically necessary, its just considered good practise to avoid the potentially unneccessary instantiation of the string to be passed to the method if the log isnt actually enabled at that

RE: Html Text Message body content

2003-01-27 Thread PILGRIM, Peter, FM
-Original Message- From: PILGRIM, Peter, FM -Original Message- From: PILGRIM, Peter, FM Has somebody changed the design of the html:text tags in the couple of months or so? I know you can do the body content as a value in the html:submit tags/

Is there something tricky about instantiating a DynaValidatorForm ?

2003-01-27 Thread Kilmer, Erich
Hello, I am trying to Junit test my Struts code. Not sure how many people have tried to do this. If there is a more appropriate forum to send this to please let me know. Here is my test code. When it gets to: dynaValidatorForm.set(areaId, -1); it crashes. I never tried to instantiate a

Struts productivity metrics?

2003-01-27 Thread Scott Piker
I apologize in advance if this has been discussed before - I'm new to this mailing list and relatively new to struts. I am interested in obtaining some real-world productivity metrics for struts usage. For example, has moving to struts greatly improved your/your team's overall productivity? How

Re: Is there something tricky about instantiating a DynaValidatorForm ?

2003-01-27 Thread Ashish Kulkarni
Hi, When i have to put some values in DynaValidatorForm i do the following to instantiate it in struts1.1b2 DynaValidatorForm PL1820UpdateForm = (DynaValidatorForm) DynaActionFormClass.getDynaActionFormClass(

RE: Struts and JSTL fmt:setBundle

2003-01-27 Thread Larry Zappeterrini
The project that I am working on is using Tiles, so I just added some code in the base tile jsp to do it: %-- Get Struts and JSTL on the same resources and locale --% % Config.set(request, Config.FMT_LOCALE, session.getAttribute(org.apache.struts.Globals.LOCALE_KEY));

IllegalArgumentException using file:// in ImageTag

2003-01-27 Thread Christophe Sebille
Hi, I already postede this question in tomcat's users list but nobody answered me yet... I've got an exception using Struts ImageTag. It sends a java.lang.IllegalArgumentException in org.apache.catalina.connector.HttpResponseBase. I've declared this tag : html:imge

RE: Struts and JSTL fmt:setBundle

2003-01-27 Thread Larry Zappeterrini
Sorry, forgot to add an important import: %@ page import=javax.servlet.jsp.jstl.core.Config % -Original Message- From: Larry Zappeterrini Sent: Monday, January 27, 2003 11:10 AM To: 'Struts Users Mailing List' Subject: RE: Struts and JSTL fmt:setBundle The project that I am working on

RE: Struts and JSTL fmt:setBundle

2003-01-27 Thread Jarnot Voytek Contr AU HQ/SC
I added the below to my web.xml !-- Resource bundle setting for fmt:message JSTL tags -- context-param param-name javax.servlet.jsp.jstl.fmt.localizationContext /param-name param-value com.my.package.ApplicationResources /param-value

RE: Struts productivity metrics?

2003-01-27 Thread Nelson, Laird
-Original Message- From: Scott Piker [mailto:[EMAIL PROTECTED]] I am interested in obtaining some real-world productivity metrics for struts usage. For example, has moving to struts greatly improved your/your team's overall productivity? Yes, in all of the places that I've

Re: Prevent Cache.

2003-01-27 Thread Iain Sanderson
There is a section in Chuck Cavaness book ( page 93) describing how to set the 'nocache' Attribute of the controller element in Struts-config. Presumably this sets the appropriate http headers for every response. It might be worth a try. Please respond to Struts Users Mailing List [EMAIL

session size and struts

2003-01-27 Thread pqin
I know the implementation of session is container dependant. I know struts put a lot of stuff in the http session. Can any one tell me how big is a session if I implement Tomcat 4.1.x + struts 1.1 beta? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows

Filters and Struts

2003-01-27 Thread Sterin, Ilya
I'd like to know if anyone has used and/or knows the best way to use a Login Filter with Struts. Before utilizing struts, I simply filtered say a members directory, which took care of all JSP pages there... Since struts relies on forwarding, forwarding to those pages does not utilize the filter,

RE: session size and struts

2003-01-27 Thread Jarnot Voytek Contr AU HQ/SC
Struts does not store a 'lot of stuff' in the http session. A comitter will probably chime in, but I don't think Struts puts anything (maybe one var?) into the session. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: [EMAIL PROTECTED]

RE: Filters and Struts

2003-01-27 Thread Pani, Gourav
The way I have implemented it in the past is to have a /secure in the mapping for pages that are protected by Login. In the web.xml I did the following. filter filter-name='VerifyLoginFilter' filter-class='com.companyname.applicationname.filters.VerifyLoginFilter' init-param

Re: Filters and Struts

2003-01-27 Thread David Graham
I could be wrong but I believe filters apply to forwards. David From: Sterin, Ilya [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Filters and Struts Date: Mon, 27 Jan 2003 09:13:26 -0700 I'd like to know if anyone

RE: session size and struts

2003-01-27 Thread David Graham
By default all form beans are stored in the session. You can change this behavior in struts-config.xml. See the users guide for details. David From: Jarnot Voytek Contr AU HQ/SC [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL

RE: Filters and Struts

2003-01-27 Thread Jacob Hookom
It is in the 2.4 Servlet Spec, but I'm not fully sure if it's included in 2.3, which is 4.1.x I believe. | -Original Message- | From: David Graham [mailto:[EMAIL PROTECTED]] | Sent: Monday, January 27, 2003 10:35 AM | To: [EMAIL PROTECTED] | Subject: Re: Filters and Struts | | I could be

Re: Prevent Cache.

2003-01-27 Thread BERNARDO ANTONIO BUFFA
This problem nearly turns me crazy. But I solved. The real guilt of this horror cache history is IE (Microbugs) when the GET http method is used. My solution: always do a POST. And if you need a GET overwrite the URL, with an extra parameter = System.currentTimeMillis() (guarantee value

Re: Struts productivity metrics?

2003-01-27 Thread Iain Sanderson
I might be a novice/average developer, but I'll give you the benefit of my experiance. I found that I could churn out good web applications using JSP and JDBC, but using scriptlets. When I discovered Struts, I realised the error of my ways, and started from scratch. However, I rapidly

RE: Filters and Struts

2003-01-27 Thread Sterin, Ilya
Hmmm, I'm successfuly using it with 2.3 just filtering jsp pages in a dir, but the forwards are not filtered. I can of course filter each individual servlet, but that undermines the whole filter cause, IMO, that way I can just use a authentication function in each servlet. Ilya -Original

Re: Prevent Cache.

2003-01-27 Thread Vinay
I am using DynaValidatorForm, I need help in using html:select ,html:options property for html:select is defined in struts-config.xml in a form-bean property Help appreciated Thanks Vinay - Original Message - From: BERNARDO ANTONIO BUFFA [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

How to assign form bean value in my JSP!

2003-01-27 Thread Jana Navaneethan
Hi, I have a form bean with session scope, I want to get a value from this form bean and assign it to local variable in my JSP page like % int currPage = searchResultForm.getPageNumber();%,Where searchResultForm is the name of my Action form bean. For some reason I am getting compilation

html:select,html:options ,DynaValidatorForm

2003-01-27 Thread Vinay
I am using DynaValidatorForm, I need help in using html:select ,html:options property for html:select is defined in struts-config.xml in a form-bean property Help appreciated Thanks Vinay

Re: Prevent Cache.

2003-01-27 Thread Vinay
Sorry for posting in this topic ignore my e-mail in this topic - Original Message - From: BERNARDO ANTONIO BUFFA [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 27, 2003 11:44 AM Subject: Re: Prevent Cache. This problem nearly turns me crazy. But I solved. The real

RE: Struts productivity metrics?

2003-01-27 Thread Andy Kriger
I'll take a stab @ yr questions: 1) What's the typical ramp-up time for an average developer? How long until they become fully productive vs. 'just capable'? What's the most effective way to bring someone up-to-speed? I started with Struts as a skilled Java dev with JSP/servlet experience and

RE: Struts productivity metrics?

2003-01-27 Thread Chappell, Simon P
Hello. -Original Message- From: Scott Piker [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 10:03 AM To: [EMAIL PROTECTED] Subject: Struts productivity metrics? I apologize in advance if this has been discussed before - I'm new to this mailing list and relatively new to

RE: How to assign form bean value in my JSP!

2003-01-27 Thread Sri Sankaran
If your form-bean is saved to the session scope under the key 'foo' the following is how you can access it in a scriptlet (assuming the class name of the form-bean is SearchResultForm) % SearchResultForm srf = (SearchResultForm)session.getAttribute(foo); int currPage = srf.getPageNumber();

RE: Is there something tricky about instantiating a DynaValidatorForm ?

2003-01-27 Thread Kilmer, Erich
Thanks for your response. I am still looking for an way to instantiate a DynaValidatorForm. We are using struts1.1b3 so the DynaActionFormClass class has no getDynaActionFormClass method. Is there another way to do this properly? How else are we going to unit test action methods if we can't create

Populating a list ...

2003-01-27 Thread Fred Lamuette
When I want to diplay a list of business beans in a html page, i copy them each one in a list of view beans in order to render them with Velocity. Is there another solution (faster :-)) than looping my list of business beans, create a relevant view bean, populate it with

RE: session size and struts

2003-01-27 Thread Sri Sankaran
See http://marc.theaimsgroup.com/?l=struts-userm=104205761322672w=2. Sri -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 11:26 AM To: [EMAIL PROTECTED] Subject: session size and struts I know the implementation of session is

Does anyone have the Java Pet Store rewritten with Struts

2003-01-27 Thread Steven Banks
A while back, several posters mentioned that they had rewritten the Java Pet Store Application to use Struts. Does anyone have the source code available? I mentioned it to my boss when he said we had to develop a sample application to prove that the various technologies we are pushing in our

Re: Does anyone have the Java Pet Store rewritten with Struts

2003-01-27 Thread V. Cekvenich
http://www.ibatis.com/jpetstore/jpetstore.html Steven Banks wrote: A while back, several posters mentioned that they had rewritten the Java Pet Store Application to use Struts. Does anyone have the source code available? I mentioned it to my boss when he said we had to develop a sample

Javascript Menu and ActionClass

2003-01-27 Thread Justin F. Knotzke
Hi, I have a question concerning the use of Javascript for the rendering of a menu and calling a ActionClass from that Javascript. What I would like to know is if using something like this: url = /GAWeb/dossier/listDossier.do?action=getFormListorder=last_name Is a smart way to go

Flash+Struts how?

2003-01-27 Thread Struts Rulez
We have developed a Struts application, using this great framework. Now… the client wants to convert it to Flash, and do data entry in Flash. What is the best way? We would like to keep our beans and DAO. Thanks, StrutsRules! __ Do you Yahoo!?

RE: Filters and Struts

2003-01-27 Thread Jacob Hookom
I did some more checking on the 2.3 Spec and you are correct that it does not allow for specific include requests. I believe Craig had mentioned before in Tomcat-User that the Filter chain is created once a request, which would not accommodate dynamic includes. Servlet 2.4 Specs

RE: Flash+Struts how?

2003-01-27 Thread Jarnot Voytek Contr AU HQ/SC
Oh god, run for your life! -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Struts Rulez [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 12:26 PM To: [EMAIL PROTECTED] Subject: Flash+Struts how? We have developed a Struts

RE: How to assign form bean value in my JSP!

2003-01-27 Thread Kris Schneider
Avoid scriptlets if you can: %@ taglib prefix=bean uri=http://jakarta.apache.org/struts/tags-bean; % ... bean:define id=currPage name=searchResultForm property=pageNumber scope=session/ Or with JSTL: %@ taglib prefix=c

RE: Flash+Struts how?

2003-01-27 Thread Jacob Hookom
You will want to look at DOM serialization. We used it on a project here on campus to monitor wireless networking nodes by having our servlets return XML (SEE castor.org or commons betwixt here at Jakarta). There are many tutorials about parsing XML responses from web containers at flashkit.com

RE: Flash+Struts how?

2003-01-27 Thread Mark Galbreath
Only a weenie programmer would use Flash with Struts and not be embarrassed by such a sig. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 1:33 PM Oh god, run for your life! -- Voytek Jarnot Quidquid latine dictum sit,

RE: Flash+Struts how?

2003-01-27 Thread Pani, Gourav
... but it would be a lot cooler if he did - Dazed and Confused -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 1:37 PM To: 'Struts Users Mailing List' Subject: RE: Flash+Struts how? Only a weenie programmer would use Flash with Struts

RE: Is there something tricky about instantiating a DynaValidator Form ?

2003-01-27 Thread Ashish Kulkarni
Hi, I had once read this message, but never tried it as i am not using 1.1b3 as of now may be u can give it a try and let me know if it works http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg12464.html Ashish --- Kilmer, Erich [EMAIL PROTECTED] wrote: Thanks for your response. I am

RE:[OT] Flash+Struts how?

2003-01-27 Thread Jarnot Voytek Contr AU HQ/SC
I don't use Flash (with or without Struts), and what's wrong with my sig anyway? I was simply trying to warn an apparent newbie of the flammage to follow. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]]

RE: Flash+Struts how?

2003-01-27 Thread Thorsten Schäfer
Hi, We have developed a Struts application, using this great framework. Take a look at javaworld.com ... Greetings, Thorsten -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Struts productivity metrics?

2003-01-27 Thread Joe Barefoot
snipped/ 4) Assuming that struts provides a consistent framework that is easier to maintain, is there perhaps a increase in initial development effort which is offset by a decrease in the ongoing maintenance effort for the application? Can that be quantified by testing metrics like # of

RE: Flash+Struts how?

2003-01-27 Thread Robert Taylor
I actually started looking into how I could integrate Struts with Flash. I wasn't concerned with the server side, I was mainly concerned with how Flash communicated with the server. I found the following article on Flash Remoting which was interesting. I appears that Flash Remoting uses a

RE: Flash+Struts how?

2003-01-27 Thread Haseltine, Celeste
I would suggest checking out using Flash Remoting, on Macromedia's web site. I suspect that is what your client is talking about when they say they want to do data entry using Flash. Flash Remoting has about 12 GUI components that can be used in place of HTML for data entry, and is competitive to

Re: Flash+Struts how?

2003-01-27 Thread Eric Rizzo
Mark Galbreath wrote: Only a weenie programmer would use Flash with Struts[...] Nice attitude. I hope I misunderstood that reply... Anyway, to answer the original inquiry: A part of the UI of our app is a flash movie, and we chose to integrate it using XML. The Flash sends requests to our

Re: html:select,html:options ,DynaValidatorForm

2003-01-27 Thread Vinay
Can anyone help me with a sample code for I am doing it this way now html:select property=pmarital value=${rp.rpmrtl} html:option value=SSingle /html:option html:option value=DDivorced/html:option html:option value=M Married/html:option html:option

Struts with Tomcat 3.2.1

2003-01-27 Thread Sankar Kondur
Hello, Has anyone used Struts with Tomcat 3.2.1. If so do you know which version of Struts works with Tomcat version 3.2.1? Thanks in advance. Shankar -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Flash+Struts how?

2003-01-27 Thread Chappell, Simon P
-Original Message- From: Eric Rizzo [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 1:09 PM To: Struts Users Mailing List Subject: Re: Flash+Struts how? Mark Galbreath wrote: Only a weenie programmer would use Flash with Struts[...] Nice attitude. I hope I misunderstood

Re: html:select,html:options ,DynaValidatorForm

2003-01-27 Thread Ashish Kulkarni
Hi What u can do is define a Vector like below in your jsp Vector options = new Vector(); options.add(new LabelValueBean(Married, M)); options.add(new LabelValueBean(Single, S)); put it in page context pageContext.setAttribute(options, options); and then use html:select

RE: Need input about user authentication with user self registration strategies

2003-01-27 Thread John Cavacas
I realize that this is more of an architecture question and probably should be labeled [OT]. However, I was looking for more of a Struts based opinion to these issues. It seems like I will have to roll my own solution for this. As such, I was thinking of using the Jakarta taglib session. Does

Re: Flash+Struts how?

2003-01-27 Thread Michael C. Clark
Being able to return XML to the UI is not all that bad, when you consider the opportunities for integrating other technolgies for presentation (if you like XSLT and the like). There are also some nice tools that take advantage of the modular nature of FlashMX, and the native XML parsing

RE: [OT] Flash+Struts how?

2003-01-27 Thread Mark Galbreath
I was referring to the newbie. And, of course, I was joking. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 1:47 PM To: 'Struts Users Mailing List' Subject: RE:[OT] Flash+Struts how? I don't use Flash (with or without

Java Pet Store rewritten with Flash Remoting Front End

2003-01-27 Thread Haseltine, Celeste
For all those who are considering Flash remoting as another GUI alternative to HTML, here is the URL to the Java pet store that Macromedia reworked with a Flash remoting front end. You can download the code and run it on your local machine also, if you are interested. The second link is for FAQ

Re: Broadcast Messages....How

2003-01-27 Thread Puneet Agarwal
I later realized that my requirement is to have Instant Massaging system merged into my struts application. No matter what I'll have to have a Instant Messaging server at the backend and I shall have one thread of the Swing client to keep a socket opened with the Instant messaging server. Since

getting values from session

2003-01-27 Thread Pani, Gourav
I have a UserContainer in session that has a User object in it along with getter and setter for it. The User object has a username and password with their respective getters and setters. Here is the problem I have. bean:write scope=session name=UserContainer property=user/ returns the memory

tiles with one controller and mulitple views

2003-01-27 Thread John Thorhauer
Hi, I am trying to get tiles to work by using one action and forwarding to multiple views. However, I am getting the following error when I request my action: Exception in R( /myapp + /test.do + null) - javax.servlet.ServletException: Can't find Tile context for

Re: Prevent Cache.

2003-01-27 Thread Gemes Tibor
2003-01-27, h keltezssel BERNARDO ANTONIO BUFFA ezt rta: This problem nearly turns me crazy. But I solved. The real guilt of this horror cache history is IE (Microbugs) when the GET http method is used. My solution: always do a POST. And if you need a GET overwrite the URL, with an extra

RE: getting values from session

2003-01-27 Thread Wendy Smoak
I have a UserContainer in session that has a User object in it along with getter and setter for it. The User object has a username and password with their respective getters and setters. Here is the problem I have. bean:write scope=session name=UserContainer property=user/ returns the

Two ActionForms colliding on property name

2003-01-27 Thread Derek Richardson
I have one action forwarding to another action. The first action and the second action both have form-beans specified using the name attribute and these form beans are different. Unfortunately, these two ActionForms each have an attribute named value, but in ActionForm one it is a String,

  1   2   >