RE: multiple Forms, one ActionForm and layers

2002-02-26 Thread Chen, Yong
Yes you can. You will need to use html:form action=/do/undergrad ... /html:form html:form action=/do/grad ... /html:form html:form action=/do/research ... /html:form in your struts-config.xml add three forms sections form-bean name=undergradForm type=form.myForm/ form-bean name=gradForm

RE: Using Struts inside Broad Vision

2002-01-10 Thread Chen, Yong
BroadVision has modified the Struts to work with their legacy backend (Corba stuff). And I believe it is not the same Struts as the Jakarta's. Some methods is not supported or implemented. Hopefully, they will eventually just use the standard Struts libraries. Yong Chen -Original

RE: Multibox in iterate

2002-01-09 Thread Chen, Yong
make sure in your ActionForm class, you have an attribute called testChecked and coresponding getter/setter Yong Chen -Original Message- From: Viljoen, Danie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 6:54 AM To: 'Struts Users Mailing List' Subject: Multibox in

RE: Html:form without inputs (button only) doesn't work w/o form bean ?

2002-01-08 Thread Chen, Yong
if you don't specify the form class in your action config, make sure in your Action class, you don't have any code to access the form variable. yc -Original Message- From: Kilmer, Erich [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 08, 2002 9:10 AM To: '[EMAIL PROTECTED]' Subject:

RE: scope for form beans

2002-01-08 Thread Chen, Yong
what if one of your forms is never used in a session? and with session level bean, how would you know the form bean doesn't contain old data? form is request based not session based. you can certainly store some info. from the form in the session. yc -Original Message- From: Kuntz

RE: Struts IDE

2002-01-03 Thread Chen, Yong
the window's explorer file extension. Thanks -Original Message- From: Chen, Yong [SMTP:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 4:16 PM To: 'Struts Users Mailing List' Subject: RE: Struts IDE By combining the opentool external browser support http://codecentral.borland.com

RE: Building struts-example in JBuilder

2001-12-20 Thread Chen, Yong
Have you applied opentool nostruts from Ken? http://codecentral.borland.com/codecentral/ccweb.exe/listing?id=16369 Yong Chen 713.230.3355 -Original Message- From: Kevin J. Turner [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 2:23 PM To: Struts Users Mailing List Subject:

RE: Struts-JNDI lookups

2001-12-20 Thread Chen, Yong
I the JNDI is running on another app server, make sure you are putting right URL string in your InitialContext. Use jndi.properties is another way. Put it in your classpath somewhere, like your project classes directory. Yong Chen 713.230.3355 -Original Message- From: Joanna Chan

RE: Struts IDE

2001-12-20 Thread Chen, Yong
By combining the opentool external browser support http://codecentral.borland.com/codecentral/ccweb.exe/listing?id=17071 and set your windows explorer's file extension .jsp with Dreamweaver UltraDev, you can easily edit the page in dreamweaver from Jbuilder. Yong Chen -Original

RE: Using JBuilder5 with Struts v1.1 (nightly build)

2001-12-04 Thread Chen, Yong
I think the problem with Weblogic is the JAXP. I had a similar issue when I try to use xtags from strub tablib library. Weblogic somehow doesn't like JAXP. I got some workaround to including different libraries when packaging the war file for weblogic. Yong Chen 713.230.3355 -Original

JBuilder 5 and Validator Framework

2001-11-26 Thread Chen, Yong
Hi, I am using Jbuilder 5, Tomcat 3.2 to develop my web app in struts framework. I tried to integrate David Winterfeldt's http://home.earthlink.net/~dwinterfeldt/ Validation framework into my project, however, I got this error when Tomcat is trying to load validation.xml file: 2001-11-26

Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Chen, Yong
Hi, Does any one successfully using the following setting: o Jbuilder 5 ent. ver o Weblogic 6.1 as web server and app server o using struts thanks yc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Chen, Yong
List' [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 3:17 PM Subject: RE: Jbuilder 5/Weblogic 6.1/Struts I think, JBuilder 5 doesn't support weblogic 6.1. Please check with borland. And you can work with Struts in JB5.0 without Struts Plugin. -Original Message- From: Chen, Yong

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Chen, Yong
weblogic 6.1. Please check with borland. And you can work with Struts in JB5.0 without Struts Plugin. -Original Message- From: Chen, Yong [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 2:32 PM To: Struts-User (E-mail) Subject: Jbuilder 5/Weblogic 6.1/Struts Hi

RE: tomcat 3.2.1 and IIS problem

2001-05-08 Thread Chen, Yong
has anyone tried this on w2k server ? Yong Chen -Original Message- From: Sundaram Ramasamy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 4:26 PM To: [EMAIL PROTECTED] Subject: RE: tomcat 3.2.1 and IIS problem Hi, In Jakarta virtual directory properties, I checked scripts

RE: Apache and Tomcat

2001-05-02 Thread Chen, Yong
you need a line in httpd.conf to mapping /*.do Yong Chen Sr. Principal Consultant BVGS South Central - Houston BroadVision Inc. Our job - and our business strategy - is to help customers establish a thriving e-business ecosystem that links the enterprise with its employees, consumers,

RE: jsp include exception when using struts on weblogic 6

2001-05-01 Thread Chen, Yong
JSP spec says: %@ include is a directive, it is effective in the translation-time, it is static jsp:include is an action, it is done in request-time, thus it can be static and dynamic. Your code is trying to do some dynamic including, so use jsp:include instead. Yong Chen

RE: mod_jk troubles

2001-04-26 Thread Chen, Yong
See mail archive article on your problem. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg00476.html Yong Chen [EMAIL PROTECTED] -Original Message- From: Steve Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 6:07 PM To: 'Struts-User (E-mail) Subject:

RE: MultipartIterator

2001-04-26 Thread Chen, Yong
Would casting do you any good? while ((element = (MultipartElement) iterator.getNextElement()) != null) Yong Chen -Original Message- From: hunkpapa [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 5:17 PM To: [EMAIL PROTECTED] Subject: MultipartIterator Hi i've

RE: FW: Session scope

2001-04-23 Thread Chen, Yong
Application server level load balancing is the answer to the problem. I don't see there is a strong reason to synchronize two sessions on two different app servers. Because the web server or proxy server will establish the link between the client and app server the very first time the