RE: JBuilder w/Struts Support

2001-08-02 Thread markus . colombo
Hi, just tried the steps below with JBuilder5/Struts1.0/Weblogic6: Omitted steps 7 8 step 10: the classpath from step 9 still included ...\struts.jar which I had to remove to make it run Thanks for your tips Markus -Original Message- From: Anthony Martin [mailto:[EMAIL PROTECTED]]

Iterate tag - type attribute

2001-08-02 Thread Nathan Coast
Hi, quick question, what is the purpose of the type attribute in the iterate tag? Cheers Nathan ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to

RE: Iterate tag - type attribute

2001-08-02 Thread Geddes, Mark (ANTS)
It allows you to specify the class of the object made available for each iteration, identified by the id attribute. Otherwise it defaults to type Object, I believe. -Original Message- From: Nathan Coast [mailto:[EMAIL PROTECTED]] Sent: 02 August 2001 09:28 To: Struts-User (E-mail)

How to pre-populate an actionForm in the perform method?

2001-08-02 Thread Hartmut Bernecker
Hello, when a URL (myUrl.do) is invoced, the ActionServlet instantiates a myForm (according to the struts-config.xml), forwards control to a myAction object; the perform() method of myAction calls the reset() method of the myForm object and then forwards to a JSP page. Would some of you give me

objects still being cached why?

2001-08-02 Thread Alex Colic
Hi, I am still having that problem with objects being cached. In my jsp I have some data that is displayed regularly. Therefore I have put that object into the context via: context.setAttribute(CommonProblemList ,tbeList ); When the data the list is based upon changes, I have a monitor class

RE: struts.jar for Websphere is Final?

2001-08-02 Thread Assenza, Chris
The modified JAR file that I put up is based on Struts 1.0 final. Chris -Original Message-From: Calabrese, Jason [mailto:[EMAIL PROTECTED]]Sent: Thursday, August 02, 2001 11:20 AMTo: Struts-User (E-mail)Cc: 'Luis Olivares'Subject: RE: struts.jar for Websphere is Final? I'm

Re: Commons jars not found in v1.0 binary distributions

2001-08-02 Thread Randall Parker
I have since downloaded the Aug 1 2001 nightly and found the commons jars are part of that binary distrib. So I'm just going to start with a nightly. On Wed, 01 Aug 2001 23:31:06 -0700, Randall Parker wrote: I downloaded from here

Re: Templates: a design question

2001-08-02 Thread troy hart
In my mind it's a cleaner separation to do it with multiple files. The page(s) responsible for the content can focus exclusively on that content, and the page responsible for laying out the template (i.e. putting the named content elements in place) can focus on that. It ends up being very easy

RE: JBuilder w/Struts Support

2001-08-02 Thread Bill G
Found this at borland.public.jbuilder.ide newsgroup. After putting the two JARs in JBuilder5/lib/ext (from http://codecentral.borland.com/ as Struts Support Addin.) , you'll want to go to the Dependencies page and choose Include All for your Struts library. That will ensure that struts.jar is in

RE: struts

2001-08-02 Thread Kemp, James A. [Alan] [VIS]
Title: RE: struts Yuriy: does that mean that you have a working struts application running on WebLogic6? thanks, alan -Original Message- From: Yuriy Zubarev [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 5:28 PM To: [EMAIL PROTECTED] Subject: Re: struts Hello,

session problem...

2001-08-02 Thread Rama Krishna
hi all, howto make struts not to create a session byitself. i want to create a session and then check if the session is not expired. i don't want struts to create this. defaultly, struts is storing the Locale and Formbean in session. any ideas, or am i missing something??? thanks,

struts

2001-08-02 Thread Kemp, James A. [Alan] [VIS]
anybody out there been able to portthe struts frameworkinto Weblogic 6 yet?

Re: Exception in rewrite attribute of forward tag

2001-08-02 Thread Martin Cooper
A 'rewrite' attribute is not defined for the 'forward' element, which is why you are seeing the error. See the struts-config DTD for more details. Perhaps you meant 'redirect' instead of 'rewrite'? -- Martin Cooper At 01:56 PM 8/2/01, Prashanth_Thm wrote: Hi, I am putting an action

Form processing question

2001-08-02 Thread Greg Maletic
I have a JSP that is used to edit data on a ActionForm bean. There are two ways for users to reach this JSP: 1) if they're adding a new object into my app; 2) if they're editing an existing object in my app. I'm using two mappings in my struts-config.xml file to represent these two types of

Re: http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd

2001-08-02 Thread Anthony Xin Chen
Hello Ben, Thursday, August 02, 2001, 10:01:53 AM, you wrote: BG In IE5 gives: BG The XML page cannot be displayed Cannot view XML input using style sheet. BG Please correct the error and then click the Refresh BG javascript:location.reload() button, or try again later. Cannot have a BG

Re: Confirmation page

2001-08-02 Thread Ted Husted
The simplest thing would to put the properties from the original form into the confirmation form as hidden fields. The original form should submit to an action that will just forward it to the confirmation page. If the mappings for both forms (original and confirmation) use the same form bean,

RE: Iterate tag - type attribute

2001-08-02 Thread Geddes, Mark (ANTS)
Its useful when you wish to use the object within a JSP scriptlet. -Original Message- From: Nathan Coast [mailto:[EMAIL PROTECTED]] Sent: 02 August 2001 13:03 To: '[EMAIL PROTECTED]' Subject: RE: Iterate tag - type attribute sure, the bit I don't get is why you would want to do this.

checkbox

2001-08-02 Thread Stefan Faist
Hello All, I have the fallowing iteration: logic:iterate id=aktivitaet name=projektForm property=aktivitaeten tr tdnobrbean:write name=aktivitaet property=aktivitaetname//nobr/td tdnobrbean:write name=aktivitaet property=beschreibung//nobr/td // Here I want to have a checkbox.

RE: Confirmation page

2001-08-02 Thread Paul Perevalov
Hi, You can pass localized confirmation text in the hidden field of your form and use it in your javascript function when you show confirmation dialog. Good luck, Paul Perevalov -Original Message- From: Yuriy Zubarev [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 5:52 PM

RE: Confirmation page

2001-08-02 Thread Calabrese, Jason
write out the locale-dependent text in the jsp to a javascript variable -Original Message- From: Yuriy Zubarev [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 2:52 PM To: [EMAIL PROTECTED] Subject: RE: Confirmation page Hello, The problem we have is that conirmation text

RE: How to pre-populate an actionForm in the perform method?

2001-08-02 Thread devon . bowen
when a URL (myUrl.do) is invoced, the ActionServlet instantiates a myForm (according to the struts-config.xml), forwards control to a myAction object; the perform() method of myAction calls the reset() method of the myForm object and then forwards to a JSP page. It is the JSP page itself

http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd

2001-08-02 Thread Ben Gill
In IE5 gives: The XML page cannot be displayed Cannot view XML input using style sheet. Please correct the error and then click the Refresh javascript:location.reload() button, or try again later. Cannot have a DTD declaration outside of a DTD. Line 26, Position 12 !ENTITY % BeanName CDATA

Re: Building struts UIs

2001-08-02 Thread Ted Husted
There's been an initial discussion of a related topic on DEV. Look for Struts Code Generators at mail-archive.com. One question here is whether we should hookup with Torque, which is reducing it's dependancies on Turbine. Though this is more about generating pages and classes, rather than

RE: DTD Reference Problem Encountered while exercise the Struts Employeelist Example in VAJ WTE 3.5.3

2001-08-02 Thread Assenza, Chris
That message indicates that your change worked as far as WTE/WAS is concerned. :) Didn't it get any further this time? Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 10:04 AM To: [EMAIL PROTECTED] Subject: RE: DTD Reference

RE: Using struts in VAJ3.5.2 and apache test environment 1.0

2001-08-02 Thread Assenza, Chris
WebSphere has an older version of Jasper incompatible with Struts 1.0's form tag (as written). Someone came up with a quick fix for the tag and a modified struts.jar with the fix included can be download @ http://www.enfused.com/struts.jar -Chris -Original Message- From: DUPRAT

Re: Stust start up error

2001-08-02 Thread Martin Fekete
problem is that struts.jar in tomcat lib directory don't contain org.apache.struts.webapp.example.User. this class is only in struts.jar in struts-example directory. feky - Original Message - From: keith wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 03, 2001 7:27 AM

Re: Stust start up error

2001-08-02 Thread Martin Fekete
problem is that struts.jar in tomcat lib directory don't contain org.apache.struts.webapp.example.User. this class is only in struts.jar in struts-example directory. feky - Original Message - From: keith wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 03, 2001 7:27 AM