RE: Newbie! HELP! Why JSP keeps loading and loading...?

2002-01-11 Thread Kiet Nguyen
You should go to a different target, usually a target that maps to a jsp -Original Message- From: Rick Davidson [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 7:26 AM To: Struts Users Mailing List Subject: RE: Newbie! HELP! Why JSP keeps loading and loading...? Here's some

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Kiet Nguyen
There is a patch for wls 5.1 sp8. Search for in on the struts mailing list. wls 5.1 conflicts with struts. -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 6:27 AM To: Struts Users Mailing List Subject: RE: NoClassDefFound Error in weblogic

RE: Looking for a clean required-bean handler

2002-01-03 Thread Kiet Nguyen
This is how my application is setup. I have step 1-5 and there are before and after actions for every step. The only downsize is strut will update the form twice and struts-config.xml is longer. The action classes are simplier and independent. -Original Message- From: Michael

RE: How to use ActionMessages *and* redirects

2001-12-18 Thread Kiet Nguyen
I created an object that contains screenMessages and put in a session. In the JSP it iterate over the message and when done, I clear all messages. kiet -Original Message- From: T. Wheeler [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 7:19 PM To: [EMAIL PROTECTED] Subject:

no cache = false

2001-12-15 Thread Kiet Nguyen
I don't want the browser to cache any of my jsp pages, so I set nocache = false in web.xml file. This works, but when i click the back button on the browser, the page is expired. I want the back button and the browser to request for new page every time (even when the browser has set Never check

RE: multiple buttons on a form

2001-12-13 Thread Kiet Nguyen
The image submit from strutsx seems to work for a submit with an image. However, I don't see a javascript property (onClick) so that a confirm pop-up can be implemented. thanks -Original Message- From: Phase Communcations [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001

RE: multiple buttons on a form

2001-12-13 Thread Kiet Nguyen
a function Javascript called for the buttons, inside of the function you records one hidde-field before calling submit with a parameter passed for the function, for example, then you I can treat several submits. - Original Message - From: Kiet Nguyen [EMAIL PROTECTED] To: 'Struts Users Mailing

strut help

2001-12-08 Thread Kiet Nguyen
Please help. I'm in a dead-end. I need to write the submit button with an image and a pop-up dialog and it will work under netscape 4.7 IE net6 when the browser is set never check for new version for page as the caching technique. I use javascript to submit the form, but when caching is set,

RE: strut help

2001-12-08 Thread Kiet Nguyen
, December 08, 2001 12:37 PM To: Struts Users Mailing List Subject: RE: strut help what is the return false about? try removing that a href= onClick=send('logon.do'); return false img scr=image.gif/a -Original Message- From: Kiet Nguyen [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 08

RE: strut help

2001-12-08 Thread Kiet Nguyen
- From: Kiet Nguyen [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 08, 2001 2:42 PM To: '[EMAIL PROTECTED]'; Struts-User (E-mail) Subject: strut help Please help. I'm in a dead-end. I need to write the submit button with an image and a pop-up dialog and it will work under netscape

Browser cache

2001-12-06 Thread Kiet Nguyen
When the browser has cache on (Never check for new version of the store page), the follow code does not submit the form. I think it is because it is a link. html:link href=javascript:cancelOrSubmit('workOrderSubmitOrder.do','Your order will be submitted for broadcast distribution. Do you want

building war file

2001-07-19 Thread Kiet Nguyen
Weblogic can't find the struts.jar file in my \WEB-INF\lib directory when it compiles my jsp files. Here is my directory structure and I'm use jar -cv0f test.war * at the webapp directory. /webapp images/ META-INF/ WEB-INF/ /classes

deploying app

2001-07-19 Thread Kiet Nguyen
How are everyone deploying their web application? A logical is to build a war file containing jsp/classes/ and struts.jar and xerces.jar Has anyone got this to work with weblogic 51. thanks

RE: Still having problems with finding DTDs if server behind f/w

2001-07-19 Thread Kiet Nguyen
locate the dtd and put it in your classpath (or weblogic classpath if you are using wls). -Original Message- From: Wayland Chan [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 9:21 AM To: [EMAIL PROTECTED] Subject: Still having problems with finding DTDs if server behind f/w

RE: deploying app

2001-07-19 Thread Kiet Nguyen
at jakarta.apache.org Prashanth. -Original Message- From: Kiet Nguyen [SMTP:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 8:35 AM To: Struts-User (E-mail) Subject: deploying app How are everyone deploying their web application? A logical is to build a war file containing

name and value

2001-06-29 Thread Kiet Nguyen
I'm sure someone had this problem. I have a dropdown box with items having name and value ([name=apples, value=1]). Upon submit, the selected value is stored in the form. Then on the confirm page, the selected value is displayed. But on the confirm page I want display the name of the selected

preprocess suggestion on struts change

2001-06-15 Thread Kiet Nguyen
I think action classes should allow a method(preloadPerform) definition. This method would be called prior to the form being load. This way we can initialize form values and do pre-process stuff. Currently I have a link to doSomething.do which execute a corresponding DoSomethingAction class;

RE: select options doesn't work

2001-06-15 Thread Kiet Nguyen
look at the subscription.jsp in the strutsexample. -Original Message- From: Pal, Gaurav [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 7:18 AM To: '[EMAIL PROTECTED]' Subject: select options doesn't work Hi, I have been trying to get the select options tag to work in the html

strut diagram

2001-06-15 Thread Kiet Nguyen
...OLE_Obj... Does any have struts diagram I can use. I created this one, any suggestion. thanks

RE: strut diagram

2001-06-15 Thread Kiet Nguyen
The diagram is attached. -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 1:32 PM To: [EMAIL PROTECTED] Subject: Re: strut diagram Please send this diagram as an attached image. - Original Message - From: Kiet Nguyen [EMAIL PROTECTED

RE: action help

2001-06-13 Thread Kiet Nguyen
I was having similar problem. make sure you have import tags in your jsp %@ page import="com.dgsystems.dgonline.bmo.OrgSummary" %%@ page import="java.util.*" % %@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %%@ taglib

javascript multiple submit

2001-06-13 Thread Kiet Nguyen
I'm trying to use javascript to submit a form. The javascrip function get called, but the form is not submited (i.e. the ActionClass doesn't execute) Here is my jsp. . script language=JavaScript function transmitMessage(msgAction) { document.orderRegularForm.action =

RE: javascript multiple submit

2001-06-13 Thread Kiet Nguyen
your javascript to access the form as an index value such as: document.forms[0].action = /dgonline/workOrderSubmit.do; document.forms[0].submit(); where 0 = first form defined on your page. HTH, Pete Kiet Nguyen wrote: I'm trying to use javascript to submit a form. The javascrip

RE: General Struts J2EE question

2001-06-13 Thread Kiet Nguyen
My app is mostly data entry and struts works very nice. It nicely separates the presentation and business logic. Its session and forms management powerful, yet not complicated to understand. I had develop framework similar to struts using WebMacro instead of JSP. The html files are cleanner,

RE: How to use struts in the weblogic5.1

2001-06-11 Thread Kiet Nguyen
I had problemswith wls sp8. It worked with sp9. I'm using struts beta3. -Original Message-From: zhongqing [mailto:[EMAIL PROTECTED]]Sent: Thursday, June 08, 2000 11:34 PMTo: [EMAIL PROTECTED]Subject: How to use struts in the weblogic5.1 can somebody share some

Pre populate

2001-06-11 Thread Kiet Nguyen
I need to pre-populate my form and do some business processes prior to load a page. Where would be the best place for this. I don't want to put it in the peform method of the from page. And doing business process at the form bean does not seen appropriate. thanks

default select on radio

2001-06-08 Thread Kiet Nguyen
how do I set default values for radio and checkboxes. thanks

Reset the form

2001-06-08 Thread Kiet Nguyen
I have my reset button defined: html:form action=/queryOrg html:image src=images/reset.gif width=113 height=24 property=reset/ Why is that the reset method doesn't get call and the Action class get executed. Anyone with an example?

FW: Reset the form

2001-06-08 Thread Kiet Nguyen
I'm able to define my reset button as follow, but how do I add the image to this button. The reset tag doesn't have src property. html:resetthanks/html:reset -Original Message- From: Kiet Nguyen Sent: Friday, June 08, 2001 10:08 AM To: Struts-User (E-mail) Subject: Reset the form I

is not defined as bean error

2001-05-13 Thread Kiet Nguyen
I'm running the strut-example application within weblogic 51. I have the following error when I try to access a logon page. I think it is trying to access a bean, but it can't find. I'm not configuring something. Sun May 13 12:31:49 PDT 2001:E WebAppServletContext-strutsexample Servlet failed