Re: problem in file upload

2002-05-06 Thread Kubo Hiroshi
Before asking about the browser, I should have noticed: method=post is missing in html:form tag. If this fix doesn't work, here is debugging instruction: 1. modify the bean: protected FormFile theFile; protected String filePath; public Object getTheFile() { return theFile;

ActionErrors - Customizing the display of?

2002-05-06 Thread Gibson Brad - IL
I want to customize the way errors are displayed on the JSP page. For example: I wish to place each action error next to the field that it is assigned to. Is there a taglib out there that will help me do this. I'm able to access the key but I am unsure how to resolve the string to the proper

Re: Struts Architecture - PLEASE END THIS THREAD

2002-05-06 Thread Mike Duffy
I regret that this information was posted before it was finalized. I will continue research and repost in about a week or so. My goal was to get input from five to ten people and come to a consensus for best practices (this should clear up some of the major disagreements and not waste a great

AW: nested html:form - Tags

2002-05-06 Thread bjoern blum
Hi, Thanx for your help. I will try it out right now *** Question *** Why would you want to nest forms anyway? The answer is very easy. Assuming you want to build a specific report. Then you must make some selections in order to specify, which has to be generated and shown. In my case I

HELP on nested tags

2002-05-06 Thread gdhiren
All, Kindly help me on this html:link href=/documents.htm onmouseout=MM_swapImgRestore() onmouseover=MM_swapImage('imgDoc','','bean:message key= jtproducts.menu.images.doc.rev/',1)html:img srcKey =jtproducts.menu.images.doc width=90 height=20 border=0 imageName =imgDoc //html:link The above

Re: [ANNOUNCE]petstore1.3 running under struts1.0

2002-05-06 Thread Yang Li
Hi, Hertzel: I am adding some comments to the package, I should finish that in one or at most two days. I will send you the zip soon. Yang --- Hertzel Karbasi - OPTinity eBusiness Solutions [EMAIL PROTECTED] wrote: Hi I would like to test it on IBM Websphere 4AE for Win2k. Please send me

Re: [ANNOUNCE]petstore1.3 running under struts1.0

2002-05-06 Thread w i l l i a m b o y d
hi yang, please, can you send me the package too when you have finished. i can test it on jrun 3.0, w98, jdk1.3.1. thanks in advance. will - Original Message - From: Yang Li [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; Hertzel Karbasi - OPTinity eBusiness

RE: HELP on nested tags

2002-05-06 Thread gdhiren
ya. it runs well if the bean:message tag is outside.. but inside the link tag's on mouse over..it seems to take the key=... as a parameter of the link tag and it causes problems

RE: [ANNOUNCE]petstore1.3 running under struts1.0

2002-05-06 Thread Jose Galiana
Hi, I?m interesting in testing petstore app. In w2k and Apache. Where can I donwload the WAR file? Regards. -Mensaje original- De: Yang Li [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 03 de mayo de 2002 18:31 Para: Struts Users Mailing List Asunto: [ANNOUNCE]petstore1.3 running

RE: HELP on nested tags

2002-05-06 Thread Rajeshwar Rao V
Do you have your ApplicationResources.properties file in place -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 2:03 PM To: [EMAIL PROTECTED] Subject: HELP on nested tags All, Kindly help me on this html:link href=/documents.htm

RE: Question about select multiple='true' ...

2002-05-06 Thread Larry Meadors
Second, a select sends only its value(s); you are (apparently) expecting the options' index position and text in your first mutator. That was the question: How do those values get sent? Clearly, they are not sent one at a time with an index. Clearly, they are not sent all at once as an

Re: Help with Struts1.1b and IPlanet 6.0 SP1

2002-05-06 Thread Ka-Wai Chan
Struts 1.1b requires a jaxp1.1 compliant xml parser, I solved this problem by going into Iplanet's webadmin's JVM config and adding the xerces.jar directly there. The parser that comes with Iplanet 6 is jaxp.jar which is only jaxp1.0 compliant... I have ran into a different problem, I am

RE: Tiles template header and title

2002-05-06 Thread Enrique Rodriguez
This is what i will do: When i call to the master definition from an ACtion y set the Title as attribute in the request and then int the header.jsp, i write it. Very easy. HTH. Enrique. _ Enrique Rodriguez Lasterra -Mensaje original- De: Filipe Mateus

urgent : treeview...

2002-05-06 Thread Jean Fotovat
hello community, is there someone who has tested successfully the tree implementation sample on http://www.keyboardmonkey.com/pilotlight with tomcat 3.2.1, or better with jbuilder 5.

The Struts-way Problem......

2002-05-06 Thread Spencer Smith
I was just thinking about how the Struts-way is to have everything go through an Action class first and then redirect to a jsp. If you do this, then the following problem could occur: If you are on Page A which contains a list of users and one of the columns is Gender for example, and you leave

Re: XMLC Article on the Serverside

2002-05-06 Thread Jon Ferguson
Robert, I totally agree with this. The battle is in making it easier and easier for the uninitiated to get good results at the front-end. Microsoft works this one overtime by building lots of underlying components and telling most developers: 'hands off'.. you just put these together. That is

Fw: The Struts-way Problem......

2002-05-06 Thread Spencer Smith
Does anyone know of a solution to this problem? - Original Message - From: Spencer Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 02, 2002 11:30 AM Subject: The Struts-way Problem.. I was just thinking about how the Struts-way is to have everything go through

Re: Forms Beans and DAO (Best Practices)

2002-05-06 Thread stuart robertson
Another approach to this is to have the form beans simply hold references to the value objects (from the DAO) directly. You can use the nested taglibraries that are now a part of struts 1.1 to access these when building html forms. The slick thing is that when the servlet populates the form

Cannot remove attributes from request scope???

2002-05-06 Thread Karim Qazi
I am getting this error when running struts on enhydra. I do not get these errors when running Tomcat 4.0. Any help is greatly appreciated! Error: 500 Location: /struts-example/logon.jsp Internal Servlet Error: javax.servlet.ServletException: cant remove Attributes from request scope at

Help, challenging problem !

2002-05-06 Thread Anen Ng
Hi everyone, I believed some one has experienced with this problem, i just can not find it inside Struts Archice mailing. I had one unique problem, no idea if some Struts experts can help me out or not : ). But, will really appreciate it. Straight to the point, i have difficulty of how to

Re: ActionErrors - Customizing the display of?

2002-05-06 Thread Joe Lee
Brad, I wish to place each action error next to the field that it is assigned to. You can do that with html:errors tag already. Read the documentation (about the property attribute of the errors tag). e.g. html:text property=firstnamehtml:errors property=firstname - Joe

RE: HELP on nested tags

2002-05-06 Thread gdhiren
YES! Rajeshwar Rao V rajeshwarraov@vi To: Struts Users Mailing List

Re: Cannot remove attributes from request scope???

2002-05-06 Thread Adolfo Miguelez
We got the same for WTE in Visual Age 3.5.3. It is a container bug. Try by doing the next patch. Replace pageContext.removeAttribute(Constants.BEAN_KEY, PageContext.REQUEST_SCOPE); pageContext.removeAttribute(Constants.FORM_KEY,

Re: session managed caches

2002-05-06 Thread Adolfo Miguelez
Cheers Craig, Adolfo From: Craig R. McClanahan [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: session managed caches Date: Sun, 5 May 2002 15:00:17 -0700 (PDT) On Sun, 5 May 2002, Adolfo Miguelez wrote:

RE: Help, challenging problem !

2002-05-06 Thread Robert Taylor
Anen, we have similar situation in an order process where after a user confirms their order, they are taken to a wait for processing page until their order has been processed upon which time they are forwarded to a thank you page. So for example, my ConfirmOrderAction captures and validates

FW: [FAQ News:Promotion] Half Price

2002-05-06 Thread Hardee, Tony
I would like to see eFAQ in action handling Struts. Wouldn't it be nice if the people at jcorporate gave back to struts by hosting and operating an eFAQ struts site. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 04, 2002 7:38 PM To: [EMAIL

org.apache.struts.action.ReloadAction and other administrative actions : deprecated ?

2002-05-06 Thread Nicolas De Loof
Hi I use struts-blank application as a canvas for a new struts 1.1 application, and so looked into included struts-config.xml. I'm surprised to see that administrative actions (like AddFormBeanAction or ReloadAction) are not any more in struts 1.1 b1 distribution (zip), but are referenced by

Re: Check Box

2002-05-06 Thread SUPRIYA MISRA
In the Action Form reset method you need to set the value of checkbox to null; From: sanjeev_dutt [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Check Box Date: Mon, 6 May 2002 12:17:59 +0530 Hi All, I have a

Re: *** URGENT Help needed ****

2002-05-06 Thread Reid Tardy
I come back from having a very, very long lunch to find this. These are fighting words! :) I am not Micael. Nor am I Mark or James. I would like to thank all of you for trying to answer my question but you all suck because none of you took the time to understand my questions. I have to go now

Re: struts + jndi + ejb (on iAS)

2002-05-06 Thread Kevin . Bedell
Since you're attempting to access the EJB (actually the JNDI registry in general) from OUTSIDE THE EJB CONTAINER (i.e. from Tomcat), you need to specify a naming provider as a system property in the JAVA_ARGS of your java command line. For example: Not sure what the actual java command used

Re: The Struts-way Problem......

2002-05-06 Thread Ketan Malekar
hi, try to pass random value with the link to jsp... like http://myserver:8080/myJsp.do?rand=3n3432njrejk34... u can create this with javascript u can create random number using Math.rand() function... hope this will work cheers Kets - Original Message - From: Spencer Smith [EMAIL

RE: Re:html input elements don't work

2002-05-06 Thread Leonardo Maciel
are you including all struts taglib in your JSP page? i.e. % taglib uri=/WEB-INF/struts-html.tld prefix=html % -Original Message- From: siraj [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 04, 2000 12:32 AM To: Struts Users Mailing List Subject: Re: Re:html input elements don't work

problem in refreshing

2002-05-06 Thread Narasimha Rao
hi, i have stuck with a problem,The scenario goes like this. 1)I have a jsp page(first jsp) which shows partly details of some user information.when user clicks on register button then he will move to another jsp where there he will be entering some details,in that jsp(second jsp)if he presses

Re: problem in refreshing

2002-05-06 Thread Ketan Malekar
open ur second jsp in a separate window and make it child of first window in the close event of child refresh frame of first window hope this will work if needed pls feel free to ask code.. cheers kets - Original Message - From: Narasimha Rao [EMAIL PROTECTED] To: [EMAIL

RE: [FAQ News:Promotion] Half Price

2002-05-06 Thread Sandra Cann
Tony It would be cool since eFAQ is a Struts based application. Hey, if one or more people would contribute to maintaining the questions and answers, I would gladly provide the eFAQ software and set it up. We can host it onsite; or it can be hosted somewhere else? Your choice. Sandra

breadcrumbs

2002-05-06 Thread Charles Brault
Is there a Struts compatible tag available for building a breadcrumb trail? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: nested html:form - Tags

2002-05-06 Thread James Mitchell
I'm still trying to understand why you need nested html form tags. Are you trying to do a wizard-like form on a web page where the user is taken through steps to complete a task? Like this: Step 1: User picks a Country from a Select list of Countries Step 2: User picks a State/Province from a

Re: org.apache.struts.action.ReloadAction and other administrativeactions : deprecated ?

2002-05-06 Thread Craig R. McClanahan
On Mon, 6 May 2002, Nicolas De Loof wrote: Date: Mon, 6 May 2002 14:42:31 +0200 From: Nicolas De Loof [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: org.apache.struts.action.ReloadAction and other

variable number of parameters in forms known at runtime

2002-05-06 Thread Adolfo Miguelez
Hi All, this is probably an ancient problem but I could not find any satisfying solution browsin the forum. It seems to be a problem with catching of input POST parameters in ActionForms linked to forms with variable input parameters. We are using Struts 1.0.x and for the moment we do not

RE: Struts eFAQ

2002-05-06 Thread Hardee, Tony
Sandra, I would be willing to be a contributor. My preference would be for you to set it up and host it. I'm interested to see this thing in action. Hopefully, it can reduce the amount of mail across the struts list. Let me know when you need me to start contributing. Cheers, Tony

AW: nested html:form - Tags

2002-05-06 Thread bjoern blum
Are you trying to do a wizard-like form on a web page where the user is taken through steps to complete a task? Like this: Step 1: User picks a Country from a Select list of Countries Step 2: User picks a State/Province from a Select list of available State/Province (based on what country from

Can any one do this?

2002-05-06 Thread Yaman Kumar
Hi, Can any one help me out in defining string variables and assigning the values to them using Jakarta string or bean taglibs. Or I would be glad if below code converted into tag format using string,session,bean(jakarta taglibs). html body % String var1=null; String var2=; String var3;

RE: Can any one do this?

2002-05-06 Thread James Mitchell
Have you taken a look at any of the user guide or docs? Have you installed/deployed the struts-example.war? These are excellent samples/examples of doing just this. JM -Original Message- From: Yaman Kumar [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 12:13 PM To: [EMAIL

OT: Generation and display of charts/graphs

2002-05-06 Thread Hardee, Tony
** *** Off Topic (i.e., not related to STRUTS) * ** Does anyone on this list have recommendations for Java

Seeking help

2002-05-06 Thread Yaman Kumar
Hi, Though this is not related to struts but I'm having little difficulty in accessing jsp pages that are in web-inf\jsps\ directory. When I accessed (using http://localhsot:8080/myapp/x1.jsp) x1.jsp which is in web-inf\jsps\ Tomcat4.0 is giving 404 error. Does Tomcat expect .jsp files in

RE: Generation and display of charts/graphs

2002-05-06 Thread Jerome Jacobsen
http://chart2d.sourceforge.net/ http://gvf.sourceforge.net/ http://jcharts.sourceforge.net/ http://www.object-refinery.com/jfreechart/ http://openjgraph.sourceforge.net/ http://technet.oracle.com/tech/java/servlets/content.html I've only used the last one (Oracle Chart Builder). Haven't

RE: Seeking help

2002-05-06 Thread James Mitchell
There have been MANY MANY discussions and tutorials on this over the last few weeks. Please go to http://www.mail-archive.com/struts-user%40jakarta.apache.org/ and search for WEB-INF. Or take a short cut: http://www.mail-archive.com/cgi-bin/htsearch?method=andformat=shortconfig=

Re: breadcrumbs

2002-05-06 Thread @Basebeans.com
Subject: Re: breadcrumbs From: Anand Jayaraman [EMAIL PROTECTED] === Check this out http://struts.application-servers.com/crumbs.html Charles Brault [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Is there a Struts compatible tag available for building a breadcrumb trail? --

changing menu option in JSP

2002-05-06 Thread Jefferson Rodrigues de Oliveira e Silva
Hi guys, I have the following situation: when the user enters the site, there is a menu page (JSP) which displays some menu options. After logging, the login menu option is not displayed anymore, and a logoff option has to be displayed. What's the best way to do that ? Thanks in advance

Re: OT: Generation and display of charts/graphs

2002-05-06 Thread Shane Bouslough
Does anyone on this list have recommendations for Java software (preferably free) to facilitate generation and web display of charts and graphs (e.g., Highest weekly temperature in Hawaii for last year, etc.). I haven't used it yet, but this looks great: http://jcharts.sourceforge.net/

RE: changing menu option in JSP

2002-05-06 Thread James Mitchell
That depends on how you are maintain session state. The struts-example uses a User bean in the session. Therefore putting app:checkLogon/ in every jsp (except index) would run this code org.apache.struts.webapp.example.CheckLogonTag.java ... ... (line 176) HttpSession session =

Re: changing menu option in JSP

2002-05-06 Thread Eddie Bush
Assuming you put some bean in session scope that identifies a logged-in user: logic:present name='loggedInUser' %-- This will be evaluated if the bean IS there --% /logic:present logic:present name='loggedInUser' %-- This will be evaluated if the bean IS NOT there --% /logic:present

RE: breadcrumbs

2002-05-06 Thread James Mitchell
Can you configure this to support dynamic trails (n-level deep) such as you might find in a tree-like structure? Render a trail like this: Languages / Java / Frameworks / Struts Currently it would be hard-coded as such: Web page Title: crumbs tag example brbr

Re: changing menu option in JSP

2002-05-06 Thread Eddie Bush
Take a tour of the taglibs provided by Struts. Look at the JavaDocs ... look over the example application. ... it really is worth the time. Regards, Eddie - Original Message - From: Jefferson Rodrigues de Oliveira e Silva [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL

Re: changing menu option in JSP

2002-05-06 Thread Eddie Bush
Correction - I copied and pasted and did not modify my pasted section =( My appologies. It should read as: logic:present name='loggedInUser' %-- This will be evaluated if the bean IS there --% /logic:present logic:notPresent name='loggedInUser' %-- This will be evaluated if the bean

Nested Tags and Validator URGENT!!!!!!!!!

2002-05-06 Thread Samip Ladhawala
Hi, I have some problems in using validator with nested tags. I am using struts1.1. I have a form bean named say AccountForm. In this form bean I have an attribute called say listOfAcctCodes, which is an arraylist of AccountCode. AccountCode is again a class, which contains an attribute

Q: Tranforming jsp - code in Struts-Tag?

2002-05-06 Thread bjoern blum
Hello out there, I've got a question. Is the following code transformable in struts-tag (e.g. itertate)? I'm not very expirienced in struts, so I didn't know to nest tags like iterate... - CODE % // Format: dbAdd(parent[true|false] , description, URL [blank

struts 1.1 already in use?

2002-05-06 Thread Emerson Cargnin - MSA
Are everybody using already the 1.1 version, with DispatchAction and DynaForms??? I was using 1.0.2, but it looks that 1.1 has a lot of enhancements. Emerson Cargnin - MSA Ramal 861 - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]

'j_security_check' and unsecured resource access

2002-05-06 Thread jfc100
Hi, Has anyone encountered the following situation using form-based auth in catalina? 1. login successfully using 'j_security_check'; 2. the next request happens to be to an unsecured url (e.g. /do/frontpage (with no restrictions in web.xml) -- DispatchServlet -- user.frontpage (tiles)) ; 3.

RE: 'j_security_check' and unsecured resource access

2002-05-06 Thread Tero P Paananen
1. login successfully using 'j_security_check'; 2. the next request happens to be to an unsecured url (e.g. /do/frontpage (with no restrictions in web.xml) -- DispatchServlet -- user.frontpage (tiles)) ; 3. the request methods 'getUserPrincipal()', 'isUserInRole()' and 'getRemoteUser()'

Template Engine of Choice

2002-05-06 Thread Graham Lounder
What is the main choice for a template engine in struts? I know there is a template tag lib with the version of struts I currently have but I hear a lot of people using Tiles. I have also heard a lot about the velocity template engine. My question is, what are the pros and cons of each?

[Off-Topic] Container-Based Authentication

2002-05-06 Thread Eddie Bush
I think I would like to move my authentication to the container, but I don't really want that dialog displayed that pops up for secured URLs. I'd much prefer the user be redirected to an action that gives them a form to log etc. Could one of you please point me in a good direction? I've been

WebSphere 3.5, Struts 1.1Beta Any Issues?

2002-05-06 Thread hemant
Comrades, I have to deploy my webapp (powered by Struts 1.1Beta, I just love saying that) on WebSphere 3.5.x . I remember the nauseating/sinking feeling (due to Learning Curve + Deployment Issues) I encountered in the beginning when I was trying to get Struts 1.0 to run on it. Now that

html:iterate /w collection attribute

2002-05-06 Thread Cachia . Alex
Anyone have a quick example of how to use html:iterate with the collection attribute instead of the property attribute. Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [Off-Topic] Container-Based Authentication

2002-05-06 Thread Bielby, Randy J
Try Form Based Authentication in your search Randy Bielby 608.242.4100 x32258 -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 1:38 PM To: Struts Users Mailing List Subject: [Off-Topic] Container-Based Authentication I think I would like to

Re: [Off-Topic] Container-Based Authentication

2002-05-06 Thread Eddie Bush
You struck a winner! ... I think brain-dead was the correct category. Man, some mondays it's just hard to get past the bootstrap ... Thanks! - Original Message - From: Bielby, Randy J [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, May 06, 2002 2:04 PM

Re: variable number of parameters in forms known at runtime

2002-05-06 Thread @Basebeans.com
Subject: Re: variable number of parameters in forms known at runtime From: Jose Quinteiro [EMAIL PROTECTED] === If I understand you correctly, you need to generate Java interfaces at run time. I believe this is possible. This article makes it sound like it's possible:

Re: variable number of parameters in forms known at runtime

2002-05-06 Thread @Basebeans.com
Subject: Re: variable number of parameters in forms known at runtime From: Jose Quinteiro [EMAIL PROTECTED] === If I understand you correctly, you want to generate Java interfaces on the fly. I believe this is possible. Look at the end of this article, where he talks about John Rose:

Re: ActionErrors - Customizing the display of?

2002-05-06 Thread Rodney Epp
At 02:17 AM 5/6/2002 -0500, you wrote: I want to customize the way errors are displayed on the JSP page. For example: I wish to place each action error next to the field that it is assigned to. Is there a taglib out there that will help me do this. I'm able to access the key but I am unsure

Re: Generation and display of charts/graphs

2002-05-06 Thread @Basebeans.com
Subject: Re: Generation and display of charts/graphs From: Robert Gottofrey [EMAIL PROTECTED] === http://www.object-refinery.com/jfreechart/ Hardee, Tony [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]...

Re: [html:iterate /w collection attribute]

2002-05-06 Thread Luo Kaikuo
Try this: %@ page language=java % %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean % %@ taglib uri=/WEB-INF/struts-logic.tld prefix=logic % html head titleTest struts-logic Iterate Tag/title /head body bgcolor=white %! java.util.ArrayList list = new java.util.ArrayList(); % %

Re: struts 1.1 already in use?

2002-05-06 Thread Frederico Schuh
I don't know if everybody is using it, but it's definetly worth checking the new features out... vale a pena mesmo :) I personally like the DispatchAction and find myself using it more often than the normal Action. There are some issues with the DynaBeans, if you are going to use it, but you can

BC4J versus Struts

2002-05-06 Thread Yibing Li
Folks, We are going to develop our web application using Struts as our Web Framework and JDeveloper as the IDE tool. As Oracle provides a J2EE framework called Business Components For Java (BC4J), embedded in Jdeveloper, most likely we will also use that. My question to the group is:

Re: struts 1.1 already in use?

2002-05-06 Thread Emerson Cargnin - MSA
dai cara seguinte , qdo usa dispatchAction, ele vai chamar o perform antes de delegar para o método específico? - Original Message - From: Frederico Schuh [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, May 06, 2002 5:11 PM Subject: Re: struts 1.1

RE: BC4J versus Struts

2002-05-06 Thread John Menke
It appears to me that BC4J is an Oracle dependant web framework you cannot take code developed with Oracle BC4J and plug in another database. Struts can be used with any database. I think BC4J provides a larger infrastructure than Struts also.Struts provides a basic framework whereas BC4J

Struts Validator 'required' pluggable validator masks others?

2002-05-06 Thread David . A . Ventimiglia
Whenever I used the 'required' pluggable validator to validate a field, the other types of validations (eg., 'mask', 'minlength', etc.) are ignored if the 'required' validator is tripped. Is this normal behavior? What I mean is, if I have these form validations, form name=someform

jsp inside WEB-INF

2002-05-06 Thread Emmanuel Bridonneau
Some of you participated in an interested thread about whether to put jsp's inside WEB-INF some 3 weeks ago. I am trying to do this using a JBoss/catalina environment with no vail. So I have these 2 js pages that refer to each other i.e Page1 links to page2 and vice-versa. the global-forwards

RE: jsp inside WEB-INF

2002-05-06 Thread James Mitchell
Are all your links coming from the users browser correctly formatted? Viewing the html source. /myapp/action.do (or whatever you picked) or Are you trying to link from one jsp to another without going through your action mappings? JM -Original Message- From: Emmanuel

RE: jsp inside WEB-INF

2002-05-06 Thread Emmanuel Bridonneau
Yes there is no Page1.do but just page1 reference. The two pages are rather dummy as they don't call specific action class. I suppose the ActionServlet class does the mapping. My html is simple: html:link forward=Page1go to destination Page/html:link and page1 is mapped as shown below in

Re: variable number of parameters in forms known at runtime

2002-05-06 Thread Adolfo Miguelez
Hi Jose, thanks for your response. Actually you can split my post in 2. - In the first part, I ask how to use Struts 1.0.X in order to implement ActionForms that could match HTML forms with a number of parameters known at runtime. I have solved the problem for checkboxes, by defining a

RE: jsp inside WEB-INF

2002-05-06 Thread James Mitchell
Ok.If I understand you correctly. You will *not* be able to link to anything directly to a jsp under WEB-INF. It is specifically disallowed in the servlet spec. Try adding a generic mapping that does a simple forward. See the javadoc or source code for:

Re: struts 1.1 already in use?

2002-05-06 Thread Emerson Cargnin - MSA
what kind of issues, bugs??? With dynabeans, u don't have to create a form for each jsp, right? - Original Message - From: Frederico Schuh [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, May 06, 2002 5:11 PM Subject: Re: struts 1.1 already in use? I

RE: jsp inside WEB-INF

2002-05-06 Thread Emmanuel Bridonneau
I can understand this part of the servlet spec. I believe the jsp's do not refer to other jsp directly. Page1 refers to a forward mapping called Page2 which path should be resolved by the default ActionForward class to /WEB-INF/Page2.jsp. But you are saying that to be able to put jsp under

Re: BC4J versus Struts

2002-05-06 Thread Gerry Chike
Hi Yibing, I don't believe there are any conflicts between the two frameworks. There is some overlap in regards to the presentation tier e.g. BC4J includes a set of JSP Tag libraries that enable you to easily access the BC4J tier. However, if you look at the examples that JDeveloper generates,

calling an action as a forwards

2002-05-06 Thread Emerson Cargnin - MSA
Have someone used an action calling other other action as a forward??? - Original Message - From: Gerry Chike [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, May 06, 2002 8:32 PM Subject: Re: BC4J versus Struts Hi Yibing, I don't believe there are

RE: calling an action as a forwards

2002-05-06 Thread James Mitchell
Yes, but there are a few (undesirable) side effects (your beans being repopulated from the request). Search the archive, I seem to remember a rather lengthy thread re-spawning in several different forms (subject names) about this very topic. JM -Original Message- From: Emerson

RE: jsp inside WEB-INF

2002-05-06 Thread James Mitchell
See intermixed. -Original Message- From: Emmanuel Bridonneau [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 7:03 PM To: Struts Users Mailing List Subject: RE: jsp inside WEB-INF I can understand this part of the servlet spec. I believe the jsp's do not refer to other jsp

Re: some PDF stuff

2002-05-06 Thread adam
I'm having trouble responding to the list. If this doesn;t get posted, please post if for me. 1. To Open up in another window, you need to do what you would do to open the link in another window if it were Html. Javascript. 2. Are you using the same action to go to the PDF? Are thge

Iterate Tag with Vector of bean

2002-05-06 Thread stsrut strut
Hello, Does any one know as how to use iterate tag with Vector collection which contains bean? I have a bean that models one row of data and then stuff them all into a Vector. E.g. bean name is mybean has property Property1 and bean has been stuffed into vector myVector with rows of data from

Re: Iterate Tag with Vector of bean

2002-05-06 Thread Arron Bates
You're probably just suffering from a naming conflict. The name in the iterate tag itself is to reference a bean. The id will create a bean for each iteration that the child tags can get at. I'd first try naming them something different. Arron. stsrut strut wrote: Hello, Does any one know

Iterate Tag with Vector of bean

2002-05-06 Thread stsrut strut
Hello, Does any one know as how to use iterate tag with Vector collection which contains bean? I have a bean that models one row of data and then stuff them all into a Vector. E.g. bean name is mybean has property Property1 and bean has been stuffed into vector myVector with rows of data from

Re: [Iterate Tag with Vector of bean]

2002-05-06 Thread Luo Kaikuo
Change the name of id to other name such as element, definitely your code will work as long as you defined 2 beans, bean1 and bean2, and bean1 has a vector field containing more than 1 instances of bean2. One thumb of rule, use different names for id, name, property fro the iterate tag. Enjoy!

Re: problem in refreshing

2002-05-06 Thread Narasimha Rao
thanx for your reply.but actually our requirment is of wizard type.we cant have child windows.help me out regards narasimha - Original Message - From: Narasimha Rao [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 06, 2002

Re: Help, challenging problem !

2002-05-06 Thread Anen Wu
Hi Robert, Yes, now it's solved. Thanks. I guessed my understanding of struts is still too little. I created the waiting_page.jsp which has 2 frames, 1st frame as presentation (only displaying waiting status), and second is calling the ProcessAction.do Btw, thanks Anen - Original Message

Re: BC4J versus Struts

2002-05-06 Thread Steve Muench
I saw Gerry's post on this thread and agree with everything in it. BC4J and Struts can be used together, BC4J for the Model Layer and Struts for the View and Controller. In the Oracle JDeveloper 9.0.3 release coming out this summer, this integration will be significantly accelerated via