RE: Why flush is not supported in a body of logic:iterate... ?

2003-01-07 Thread Zsolt Koppany
James, you are right, but the strange thing is that I didn't have this problem until I updated from a nightly build (end of November) to b3. Zsolt On Tue, 2003-01-07 at 02:08, James Mitchell wrote: I was guessing he wanted to display an html table as it is being written instead of waiting till

RE: xml/html/xsl/jsp and performance

2003-01-07 Thread Fabrice . Bocquillon
Hi, Have a look here, I think this is going your way: http://www.javaworld.com/javaworld/jw-02-2002/jw-0201-strutsxslt.html In this article, they did use their own servlet to output XSL-transformated XML, but one can also imagine to connect Struts to Cocoon. Regards, -fab. -Original

RE: xml/html/xsl/jsp and performance

2003-01-07 Thread Andrew Hill
See also STXX: http://www.oroad.com/opencode/stxx/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 16:36 To: [EMAIL PROTECTED] Subject: RE: xml/html/xsl/jsp and performance Hi, Have a look here, I think this is going your way:

RE: xml/html/xsl/jsp and performance

2003-01-07 Thread ROSSEL Olivier
Hi All, I am new to struts, and I have the following questions: We have a web application already in production, we use EJB in backend, servlet in front end, we did it this way, back end session bean will generate XML data, and pass to front end servlet, the servlet will call

html:link Multiple parameters

2003-01-07 Thread Mark Minnie
How do you create a link such as a href=/webappname/Edit.do?user=Bobaccount=ABC123Edit Bob/a I am talking about having multiple HTTP get parameters user=BOB AND account=ABC123 TIA Mark

RE: Re[3]: Need logic:equal tag help

2003-01-07 Thread Jordan Thomas
Great, it worked. I actually used the c:if: tag but still, this is all new info. Cool. thanks for your help Jordan :O) -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: Monday, 6 January 2003 9:40 PM To: Struts Users Mailing List Subject: Re[3]: Need logic:equal

RE: xml/html/xsl/jsp and performance

2003-01-07 Thread Daniel Joshua
So that what Cocoon is for... So if your EJB is able to know if its result XML is the same as a previous one Btw, how would your EJB know that, most are designed stateless. Just wondering if Cocoon does that automatically. Regards, Daniel -Original Message- From: ROSSEL Olivier

RE: xml/html/xsl/jsp and performance

2003-01-07 Thread ROSSEL Olivier
So that what Cocoon is for... So if your EJB is able to know if its result XML is the same as a previous one Btw, how would your EJB know that, most are designed stateless. Just wondering if Cocoon does that automatically. Cocoon is web based. So its default cache management is based

Checkbox in a multiple-page form.

2003-01-07 Thread ROSSEL Olivier
I have a form on 3 pages. So my form bean is in session scope. The JSP are as follows: Page1: some text inputs+some checkboxes. Next Page2: more advanced stuff PreviousNext Page3: even more advanced stuff PreviousFinish My problem is the classic problem of checkboxes. I do

Importance of JSF

2003-01-07 Thread Mohan Radhakrishnan
Hi, I just read the javaworld.com article on JSF. It seems that validation is more flexible. It also creates controls on the server side that render themselves. Does that mean we can create tree views and table views in a more OO way on the server side? What is meant by custom

JSTL-XML does not work

2003-01-07 Thread Mouratidis, Georg
Hi all, i have the following code in my .jsp snipp c:import url=/WEB-INF/XML/Validate-Report.xml var=xml/ c:import url=/WEB-INF/XML/Validate-Report.xsl var=xslt/ x:transform xml=${xml} xslt=${xslt}/ /snipp This is an example in JavaServer Pages Standard Tag Library Doc but it does not work.

RE: JSTL-XML does not work

2003-01-07 Thread ROSSEL Olivier
Did you add, at the top of your JSP, the declaration of the namespaces x and c ? -Message d'origine- De: Mouratidis, Georg [mailto:[EMAIL PROTECTED]] Date: mardi 7 janvier 2003 12:02 À: [EMAIL PROTECTED] Objet: JSTL-XML does not work Hi all, i have the following code in my

RE: JSTL-XML does not work

2003-01-07 Thread Mouratidis, Georg
how can i do this. there is nothing in the doc. i thouhgt bucause it ist standard i don't have to. i know (newbie-question). but i am one ;-)) -Original Message- From: ROSSEL Olivier [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 7. Januar 2003 12:04 To: 'Struts Users Mailing List' Subject:

RE: JSTL-XML does not work

2003-01-07 Thread ROSSEL Olivier
check any JSP of the struts examples and you will see that bean: html: are always declared. declaring them at the top of the JSP is mandatory. so the JSP parser will realize that these tags must be processed. i think that JSPs from JSTL examples also declare them. -Message d'origine-

RE: JSTL-XML does not work

2003-01-07 Thread Mouratidis, Georg
Sorry it does not work. The namespace i found in the doc is http://java.sun.com/jstl/xml But if i use this like %@ taglib uri=http://java.sun.com/jstl/xml; prefix=x % the following error is fired : This absolute uri (http://java.sun.com/jstl/xml) cannot be resolved in either web.xml or the

RE: JSTL-XML does not work

2003-01-07 Thread ROSSEL Olivier
look at the web.xml shipped with struts. it will list the URI for each taglib. you will have to use THOSE uris. -Message d'origine- De: Mouratidis, Georg [mailto:[EMAIL PROTECTED]] Date: mardi 7 janvier 2003 12:19 À: Struts Users Mailing List Objet: RE: JSTL-XML does not work

problem with bean:define

2003-01-07 Thread Suresh Addagalla
Title: Message Hi, I have a DynaActionForm, which has 2 form-property elements. I am using this form-bean to retrieve two different lists as follows. form-bean name="servicesForm"dynamic="true"type="org.apache.struts.action.DynaActionForm" form-property name="serviceSets"

Re: Checkbox in a multiple-page form.

2003-01-07 Thread Affan Qureshi
Same problem here as well. But in my case the checkbox values are coming from the database. So I can't set all checkbox properties to false in the reset() method. Any solution in mind? Affan - Original Message - From: ROSSEL Olivier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

RE: Checkbox in a multiple-page form.

2003-01-07 Thread Weis, Michael
Hi, Actually you would have the same problem on pages 2, 3, etc. if there were any checkboxes. we had the same problem and solved it by writing separate reset functions for each page. In the general action forms reset method an additional property (e.g. pageId) of the action form controlls the

No getter method for property selectedAc of bean org.apache.struts.taglib.html.BEAN

2003-01-07 Thread kiuma
Hello, and Happy New Year every time I try to access to chooseAgenda.do I've the folowing error back. WARNING: Exception for /webappointments/secure/chooseagenda.jsp javax.servlet.jsp.JspException: No getter method for property selectedAc of bean org.apache.struts.taglib.html.BEAN I try to

RE: Checkbox in a multiple-page form.

2003-01-07 Thread ROSSEL Olivier
Same problem here as well. But in my case the checkbox values are coming from the database. So I can't set all checkbox properties to false in the reset() method. Any solution in mind? It is quite tricky. In the reset, you must check what's the page where you clicked the submit button.

RE: Checkbox in a multiple-page form.

2003-01-07 Thread ROSSEL Olivier
Hi, Actually you would have the same problem on pages 2, 3, etc. if there were any checkboxes. we had the same problem and solved it by writing separate reset functions for each page. In the general action forms reset method an additional property (e.g. pageId) of the action

upgrade from 1.1b2 to 1.1b3

2003-01-07 Thread Jarnot Voytek Contr AU HQ/SC
I tried the upgrade (replacing jar and tld files) and got the following error when running my app. Here's hoping someone has a quick answer off the top of their head - before I start guessing at solutions (and yes, commons-logging.jar is in WEB-INF/lib). 500 Internal Server Error

Using strutsx with basic struts

2003-01-07 Thread Simon Kelly
Hi all. Could someone enlighten me as to why the strutsx only has the following additions to the tag lists. Tag:form Tag:submit Tag:checkAction If it is for using xslt instead of jsp, shouldn't there be more tags or are the ones in struts-html used in both? Cheers Simon Institut fuer

Re: scope

2003-01-07 Thread Rick Reumann
On Mon, 6 Jan 2003 17:01:48 -0800 LUCERO,DENNIS (HP-Boise,ex1) [EMAIL PROTECTED] wrote: -Original Message- From: Joe Barefoot [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 5:18 PM To: Struts Users Mailing List Subject: RE: scope LDHBe The jsp containing the

RE: html:link Help

2003-01-07 Thread Sri Sankaran
Please read http://jakarta.apache.org/struts/userGuide/struts-html.html#link. It explains how you can set up a Map to pass multiple parameters to a link. Sri -Original Message- From: Mark Minnie [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 11:57 PM To: [EMAIL

ConvertUtils, Null Integers

2003-01-07 Thread Jim Krygowski
Hi- This might be a question to Craig specifically, but I'd appreciate hearing from anyone with experience. I noticed that the ConvertUtils instructs IntegerConverter to create Integer objects with the default value of 0 when it can't convert what it receives into a proper Integer. The

RE: Getter/Setter for properties with multiple values (newbie)

2003-01-07 Thread Sri Sankaran
By setting up an action mapping with an associated form-bean, the process of setting the form-bean properties with value(s) the client provides is an implicit feature of the Struts framework. Going by your question, and your sample code snippet, I would encourage you to take a close look at

Failure to load the servlet.jar when deploying a struts war file

2003-01-07 Thread Simon Kelly
Hi all, I am having a bit of a tough time getting an application to deploy in tomcat when using a struts based architecture. I am getting the following error when tomcat runs the class loader on the servlet.jar. Could someone shine a bit o' light on the possible causes. It runs ok when not

Re: Failure to load the servlet.jar when deploying a struts war file

2003-01-07 Thread Mark Lowe
servlet.jar usually lives in $TOMCAT_HOME/common/lib or on version 3.* $TOMCAT_HOME/lib it should already be there, i don't know but i imagine that tomcat is confused as it will be adding the servlet api twice.. servlet.jar has to be available to all web apps and tomcat itself therefore it

RE: upgrade from 1.1b2 to 1.1b3

2003-01-07 Thread Jarnot Voytek Contr AU HQ/SC
Nevermind, I've solved the problem. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 7:33 AM To: '[EMAIL PROTECTED]' Subject: upgrade from 1.1b2 to 1.1b3 I tried the upgrade (replacing jar and tld files) and got the

Re: Failure to load the servlet.jar when deploying a struts war file

2003-01-07 Thread Simon Kelly
Thanks mark. I removed the servlet.jar and it deployed ok. Now all I have to do is remove all the other bugs and I'm there ;-) Cheers Simon - Original Message - From: Mark Lowe [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 3:20 PM

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

Validator problem

2003-01-07 Thread Suresh Addagalla
Title: Message Hi, I am doing client-side validations using Validator framework. If I click on the submit button, the form is getting submitted even if there are errors in the form. How can I stop the form from being submitted when there are errors? _javascript_ alerts are being shown

RE: Validator problem

2003-01-07 Thread Frank Livaudais
You need to add in the 'return': onsubmit=return (validateLoginForm(this)); -Original Message- From: Suresh Addagalla [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 8:37 AM To: [EMAIL PROTECTED] Subject: Validator problem Hi, I am doing client-side validations using

RE: Multiple Controllers struts-config

2003-01-07 Thread pqin
Please excuse my curiosity and ignorant. If we can access pages using https why bother using SSLext? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Steve Vanspall [mailto:[EMAIL PROTECTED]] Sent: January 6, 2003

RE: using Log4J

2003-01-07 Thread pqin
What's the benefit of using commons-logging if I have log4j setup and working? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED]] Sent: January 7, 2003 1:43 AM To: Struts Users

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

EL not working for my servlet container (Servlet 2.3 Spec)

2003-01-07 Thread Alok Pota
My code looks like logic-el:iterate name=submitForm property=keys id=foo indexId=cat tr html-el:text name=submitForm property=keysIndexed[${cat}] / /tr /logic-el:iterate when I do a view source on the rendered page it and it looks like: tr

How to pass control between two struts web apps deployed on the sameapp server.

2003-01-07 Thread Prakash 'pk' Trivedi
Hello, We have two struts web application deployed on one app server. One with context at / and other one with context app2/ . How can I use jsp:forward to transfer control to second app2 from first app. Also when I do this would I have access to the session that I create in the first app. And

Artimus 1.1 Difficulties with Startup

2003-01-07 Thread Micael
I am using Tomcat 4.1.18, JDK 1.4.1, and struts 1.1. I am trying to start up artimus 1.1. I have configured it for hypersonic. I get the following startup load error. 2003-01-06 18:51:32 StandardWrapper[/artimus_1_1:action]: Marking servlet action as unavailable 2003-01-06 18:51:32

RE: How to pass control between two struts web apps deployed on the same app server.

2003-01-07 Thread Siggelkow, Bill
The servlet spec disallows forwarding between web applications. The second app does not have access to the session. If you need a shared session, you might want to consider using Struts modules to subdivide your web application. If you are looking to implement a single-sign-on -- they are ways

RE: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Siggelkow, Bill
If I were you, I would use Ant to compile and deploy to my app server -- You get the best of both worlds if your IDE supports Ant :) -Original Message- From: PILGRIM, Peter, FM [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 10:15 AM To: '[EMAIL PROTECTED]' Subject: Oracle

[OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Rick Reumann
On Tuesday, January 7, 2003, 10:15:16 AM, FM wrote: PPF I am in fix with a IDE I have never used before in my life, PPF Oracle JDeveloper 9i. Is there anyone out there who give some pointers PPF on how to compile and deploy a Struts demo on to an external PPF running Tomcat 4.1.18 server on

Any *complete* code samples on indexed properties

2003-01-07 Thread Alok Pota
Are there any *complete* code samples on indexed properties (jsp, bean preferably a war). I have looked at the online Howto guide. Does that guide have complete code listings anywehere? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: using Log4J

2003-01-07 Thread Dan Tran
Please refer to common-login documentation for the benefit. One obvious one is you can switch to JKD4.1 log implementation easily http://jakarta.apache.org/commons/logging.html -D - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 6:56 AM

Re: Odd Tiles Behavior with 2003-01-01 Nightly Build

2003-01-07 Thread Malte Gaudig
Hi there ! I've encountered a similar problem while upgrading from struts 1.1 b2 to b3. In my case the tiles:insert was nested inside a logic:iterate tag. Since the tiles:insert tag is used inside the logic tag the attribute flush must be set to true: table tr td logic:iterate

Re: using Log4J

2003-01-07 Thread Karl Baum
The main benefit is that you are not pinning the user of your package to a specific Logger. By editing configurations or implementing some interfaces, commons logging can wrap almost any Logging utility. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

can u have sample code of Commons Logging.

2003-01-07 Thread udhayakumar . sadasivam
Hi Any body is having sample code for Commons Logging mechanism... we are facing problem in seeing the output of the Logging... mail me... regards udhay Email Id : [EMAIL PROTECTED] Success is a Journey..Not a Destination. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

Display the content of a form.

2003-01-07 Thread ROSSEL Olivier
At the end of a multiple-pages form, I wish to have a page that displays, as HTML, the content of the form previously filled. What's the best process for that? Should I put the formBean into request scope, and use bean:write to display each field? ---cut here--- This e-mail is intended only

Re: Updating collections of information

2003-01-07 Thread V. Cekvenich
Multirow updates and MasterDetail and even more complex processing is done all the time with Sturts. In resource you will find many sample apps, one of the multirow links is here:

RE: using Log4J

2003-01-07 Thread pqin
So having a wrapper around my log4j won't reduce the performance? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Karl Baum [mailto:[EMAIL PROTECTED]] Sent: January 7, 2003 11:12 AM To: Struts Users Mailing List

RE: Display the content of a form.

2003-01-07 Thread pqin
One dirty trick is to use enable/disable. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: ROSSEL Olivier [mailto:[EMAIL PROTECTED]] Sent: January 7, 2003 11:06 AM To: '[EMAIL PROTECTED]' Subject: Display the

Re: Odd Tiles Behavior with 2003-01-01 Nightly Build

2003-01-07 Thread Cedric Dumoulin
Hi, The PageContext.include(uri) documentation says: The current JspWriter out for this JSP is flushed as a side-effect of this call, prior to processing the include. So, the old implementation was doing a flush regardless of the insert's flush value. The new implementation now use

XSLT Struts

2003-01-07 Thread maya menon
Hi, Can any body pls give me an example of using XSLT and struts.. Or can any one tell me how to convert the sample Struts application so that it uses Model 2 architecture rather than the usual JSP routines Any help apprecaied. I have had experience with both as seperate techs, but havent

Re: EL not working for my servlet container (Servlet 2.3 Spec)

2003-01-07 Thread David M. Karr
Alok == Alok Pota [EMAIL PROTECTED] writes: Alok My code looks like Alok logic-el:iterate name=submitForm property=keys id=foo Alok indexId=cat Alok tr Alok html-el:text name=submitForm property=keysIndexed[${cat}] Alok / Alok /tr

RE: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread PILGRIM, Peter, FM
-Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: 07 January 2003 15:42 To: Struts Users Mailing List Subject: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment On Tuesday, January 7, 2003, 10:15:16 AM, FM wrote: PPF I am in fix with a IDE I

Re: using Log4J

2003-01-07 Thread Karl Baum
I have never done any extensive testing, but I have not personally had any performance issues. I doubt there is any noticeable performance degradation. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 11:22 AM Subject: RE: using Log4J

RE: XSLT Struts

2003-01-07 Thread Fabrice . Bocquillon
Hi, go to javaworld.com and search for XSLT struts you'll find good articles + links to sources... regards, fabrice. -Original Message- From: maya menon [mailto:[EMAIL PROTECTED]] Sent: mardi 7 janvier 2003 17:32 To: [EMAIL PROTECTED] Subject: XSLT Struts Hi, Can any body pls give me

RE: XSLT Struts

2003-01-07 Thread maya menon
Fabrice I got a wonderful arcticle, But I need a good example.. do u have any or any suggestions\ [EMAIL PROTECTED] wrote:Hi, go to javaworld.com and search for XSLT struts you'll find good articles + links to sources... regards, fabrice. -Original Message- From: maya menon

date pattern for LocaleBeanUtils

2003-01-07 Thread david chan
Hi, I try to use the LocaleBeanUtils for coping a valueobject with java.sql.Date member to a form object with String representation of date in mm/dd/ format. (using common-beanutils 1.5 and struts 1.1b3) How can I set the pattern MM/dd/ for DateLocalConverter? Here is my code in action

RE: XSLT Struts

2003-01-07 Thread Fabrice . Bocquillon
here we go http://www.javaworld.com/javaworld/jw-02-2002/strutsxslt/jw-0201-strutsxslt. zip http://www.oroad.com/opencode/stxx/download.html these are two custom approachs (both with java sources), but if I can tell my feeling on the question, I suggest -if your app is large- that you feed cocoon

RE: linking a struts application to a jndi resource through a datasource

2003-01-07 Thread Mohan Radhakrishnan
HI, We have done this with DBCP. Our doubt is this. If DBCP has a factory, then it should also be a able to use our JTurbo pool connection factory ? Right ? Isn't it like the commons logging factory which recognizes log4j or java.util.Logging. Thanks, Mohan -Original Message-

RE: Struts based app. and SSL doesnt work together

2003-01-07 Thread Maris Orbidans
We dont use mod_jk, we use mod_proxy. Is mod_jk necesasary ? Also after successful login IE shows you are about to be redirected to a connection that is not secure. Does anyone know what does it mean ? Maris -Original Message- From: mech [mailto:[EMAIL PROTECTED]] Sent: Friday,

form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
OK, yea it appears from some of the responses that there is some confusion, I am doing something that is really simple. Here is the form from the jsp-- dropdown.jsp: html:form action = DropDownAction name = dropDownFormBean type = somePath.DropDownFormBean html:select property =

RE: XSLT Struts

2003-01-07 Thread maya menon
The artcile is the same one from Javaworld that you sent me, I already downloaded the example, but it explains nothing. the article is good, but the sample is vague Thanks [EMAIL PROTECTED] wrote:here we go http://www.javaworld.com/javaworld/jw-02-2002/strutsxslt/jw-0201-strutsxslt. zip

Re: Struts based app. and SSL doesnt work together

2003-01-07 Thread Dan Tran
I had a similar problem with JRUN 3.1, after following the instruction and recompiled JRUN connector, the problem is solved. What type of system are you using? -D - Original Message - From: Maris Orbidans [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday,

RE: form scope

2003-01-07 Thread Damm, Gary
Try setting the form scope in your struts-config to request. I believe by default it is set to session. -Original Message- From: LUCERO,DENNIS (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 9:25 AM To: ' ([EMAIL PROTECTED])' Subject: form scope OK, yea it

Re: XSLT Struts

2003-01-07 Thread Mark Lowe
I've never acually done this but I reckon you'd be looking at importing the xalan stuff into your action class and doing your xsl tranformations from there.. Rather than forwarding to happy or unhappy jsp's you can just forward to actions that do xml transformations. so an example would be to

Re: XSLT Struts

2003-01-07 Thread V. Cekvenich
Also consider JSTL X:transform or browser side Styxx or caching HTML in a db field. .V maya menon wrote: The artcile is the same one from Javaworld that you sent me, I already downloaded the example, but it explains nothing. the article is good, but the sample is vague Thanks [EMAIL PROTECTED]

RE: form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
-Original Message- From: Damm, Gary [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 10:31 AM To: Struts Users Mailing List Subject: RE: form scope gary wrote: Try setting the form scope in your struts-config to request. I believe by default it is set to session. When I

form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
I fixed it. thanks gary you got me thinking about the scope the form tag was searching in: I set the scope of the form on the JSP PAGE to request and everything works as expected. Thanks everyone, We come from the land of the ice and snow With the midnight sun, where the hot springs

RE: XSLT Struts

2003-01-07 Thread Yujin Kim
Hello, I read that article too since I'm trying to use xslt with struts. I thought it was a great article, but I didn't agree with their approach. (I sent an email to the author about it and received no answer so far.) BTW, I'm by no means a struts, xsl or java guru. I'm just stating my

RE: form scope

2003-01-07 Thread Joe Barefoot
That's really annoying. The scope for everything inside an html:form tag is supposed to be retrieved from the action mapping that matches the tag's action attribute if the scope is not explicitly specified. I believe the reason that it is not retrieved, in this case, is because you explicitly

Indexed property

2003-01-07 Thread Yujin Kim
Hello, I understand this topic has been discussed before, so I apologize for posting this again. Using strtus 1.1-b3, I'm creating a form bean that contains a collection(ArrayList) and use it to populate the jsp using the iterate tag. With or without indexed attribute in the form elements (i.e

RE: Indexed property

2003-01-07 Thread pqin
Override reset method in your ActionForm Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Yujin Kim [mailto:[EMAIL PROTECTED]] Sent: January 7, 2003 1:21 PM To: 'Struts Users Mailing List' Subject: Indexed property

RE: Indexed property

2003-01-07 Thread Alok Pota
Welcome to the club. I have attached three files (1 jsp, 1 action class and 1 form class). Note that I am trying to dynamically add/delete key-value pairs on the web-page and this how I used struts to do it The example won't work but I have gave u the relevant code for you to zoom into.

RE: Indexed property

2003-01-07 Thread Yujin Kim
PQ, Thank you very much. You made my day. Thanks Alok for your sample codes as well. Overriding the reset method, and modifying the getter method did the trick for me. Yujin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 1:24 PM

Struts Question for begineer

2003-01-07 Thread Ashish Kulkarni
Hi, I am learning struts and need help is doing the following I have one jsp display.jsp which shows name and descritpion with a check box to select one name, When the user selects one name and presses change i want to display a change.jsp with all the info about that name (name is key) and allow

Re: Odd Tiles Behavior with 2003-01-01 Nightly Build

2003-01-07 Thread Zsolt Koppany
Setting flush=true inside of iterate throws an Exception. Zsolt On Tue, 2003-01-07 at 17:28, Cedric Dumoulin wrote: Hi, The PageContext.include(uri) documentation says: The current JspWriter out for this JSP is flushed as a side-effect of this call, prior to processing the include.

Weblogic problem with Struts V1.1-b2 or 3

2003-01-07 Thread Buchwald, Dave (PLC, IT)
I'm currently on a project that has released a production web site using Struts V1.0.2. I'm now trying to migrate to V1.1-anything. We're using weblogic V6.1, with jdk1.3.1, and starting the server has never been a problem. I downloaded V1.1-b2 and b3, thought I performed all the installation

Tiles Plugin Exception

2003-01-07 Thread William Crook
Hi all, I'm using wl 7.0, struts 1.1b w/ tiles. Here is my problem: 1. Make request of an action that forwards to a jsp and it is successful 2. Change the action source code, recompile it, and hot-deploy it to WEB-INF/classes 3. Make the same request and exceptions are thrown (see below) If I

RE: form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
Thanks, you cleared up a little confusion I had about the type attribute in the form tag. -Original Message- From: Joe Barefoot [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 11:09 AM To: Struts Users Mailing List Subject: RE: form scope That's really annoying. The scope

Re: Override action in multiple struts-config.xml

2003-01-07 Thread Craig R. McClanahan
On Tue, 7 Jan 2003, Michael Lee wrote: Date: Tue, 7 Jan 2003 14:29:30 -0500 From: Michael Lee [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Override action in multiple struts-config.xml We have a base

RE: Weblogic problem with Struts V1.1-b2 or 3

2003-01-07 Thread Buchwald, Dave (PLC, IT)
ouch...you're right, reinstalling WS stuff is no pleasure...I just found out that we're only on SP2, so I'll try it now. thanks -Original Message- From: Siggelkow, Bill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 3:01 PM To: 'Struts Users Mailing List' Subject: RE: Weblogic

Re: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Steve Muench
Rick, Sounds like you're not using the latest production release which has lots of enhancements in many area that seemed to frustrate you in previous releases. | To deploy with it you have to develop your app and then it | provides a way to deploy a war file out to the server. To me it seems |

Simulating a wizard in request scope.

2003-01-07 Thread Alok Pota
Ok i know that its easy to do a wizard type pages and have the state of the form be stored in session scope. But does struts provide a way of doing this in a request scope. More so I am looking at struts being able to auto generate the hidden-variables for the respective pages, so that at any

Re: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Steve Muench
BC4J does not contain any LDAP code in its JAR's. We use the standard JAAS API's for security stuff and standard JNDI API's. Likely the class you need is in your ./j2ee/home/jazn.jar The predefined library named BC4J Security in JDev 9.0.3 contains references to the jaas.jar and the jazn.jar

Re: XSLT Struts

2003-01-07 Thread Johan
[EMAIL PROTECTED] wrote: here we go http://www.javaworld.com/javaworld/jw-02-2002/strutsxslt/jw-0201-strutsxslt. zip http://www.oroad.com/opencode/stxx/download.html these are two custom approachs (both with java sources), but if I can tell my feeling on the question, I suggest -if your app is

Re: XSLT Struts

2003-01-07 Thread V. Cekvenich
That would be the past IMO. Apache HTTP and Cocon and similar are PITA. ... you can publish static text from Struts like this: - Store XML content in a db field. (from user input or RSS feed). - XSLT it and cache HTML cache in a db field. Or many variations such as Styxx browser side. You can

ConvertUtils, BeanUtils

2003-01-07 Thread Rene Eigenheer
Craig, I use the opportunity to jump into this and to ask you and everybody here for an advice: I try to follow the good practice to have only Strings within the form-classes and having value objects with the correct types. In the past I coded the copy from vo to form and vice-versa with the

Re: ConvertUtils, BeanUtils

2003-01-07 Thread Craig R. McClanahan
On Tue, 7 Jan 2003, Rene Eigenheer wrote: Date: Tue, 7 Jan 2003 22:19:00 +0100 From: Rene Eigenheer [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: ConvertUtils, BeanUtils Craig, I use the opportunity to

Re: XSLT Struts

2003-01-07 Thread Eric Gignac
This url don't work ! Where I can find this resource ? http://www.javaworld.com/javaworld/jw-02-2002/strutsxslt/jw-0201-strutsxslt Thanks - Original Message - From: Johan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 5:05 PM Subject:

RE: XSLT Struts

2003-01-07 Thread Ahmed ALAMI
I think this will work http://www.javaworld.com/javaworld/jw-02-2002/jw-0201-strutsxslt.html -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re[2]: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Rick Reumann
On Tuesday, January 7, 2003, 3:40:10 PM, Steve wrote: SM Sounds like you're not using the latest production release SM which has lots of enhancements in many area that seemed to SM frustrate you in previous releases. Sorry, I didn't want to sound so negative:) Glad to see the latest release has

Re: Struts Question for begineer

2003-01-07 Thread Austin Lowry
Ashish, That's a pretty involved question. The best thing you can do for yourself as a beginner is pick up a copy of Struts in Action so you can have some background on the technology and how it should work. If you are new to Java and JSP, I can recommend the WROX Press book JSP Web

newbie about struts and databases

2003-01-07 Thread miguel angel rojas aquino
hi, i'm starting in Struts, and am reading the tutorials in the struts site about building applications with it, and i was thinking if there is any easy tutorial about database access using struts, so i can start more rapidly with it (and my boss doesn't get mad at me while convincing him to

RE: newbie about struts and databases

2003-01-07 Thread James Childers
Allow me. That's a pretty involved question. The best thing you can do for yourself as a beginner is pick up a copy of Struts in Action so you can have some background on the technology and how it should work. If you are new to Java and JSP, I can recommend the WROX Press book JSP Web

RE: newbie about struts and databases

2003-01-07 Thread Wendy Smoak
hi, i'm starting in Struts, and am reading the tutorials in the struts site about building applications with it, and i was thinking if there is any easy tutorial about database access using struts, so i can start more rapidly with it (and my boss doesn't get mad at me while convincing

  1   2   >