bean:message key in javascript

2004-02-10 Thread Richard Raquepo
i have this entry on one of my property files that show a message in korean. error.client.register.exist=li#45320;#44032;#45936;#51060;#53440;#48288;#51060;#49828;#50504;#50640; #51316;#51116;#54616;#45716; #51060;#48120; #46321;#47197;#54620;#44163;#51012; #54644;#48372;#44256; #51080;#45716;

Re: web spider

2004-02-05 Thread Richard Raquepo
we hope you can share it here. thanks, Richard - Original Message - From: McCormack, Chris [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 05, 2004 5:19 PM Subject: RE: web spider I would be interested to see how you have set it up :)

maybe OT: help in customizing error pages

2003-11-09 Thread Richard Raquepo
i am trying to customize 404 error pages: but i can't seem to get the original URI that caused the error: i.e. http://myhost/blahasdfasfsd i search the web and found these but they all return null. System.out.println(javax.servlet.forward.request_uri : +

reloading of properties/resources file

2003-10-10 Thread Richard Raquepo
how can i force the reloading of my properties/resource file in struts? thanks.

struts performance

2003-09-23 Thread Richard Raquepo
we are building an application in struts. though the application is developed in resin our boss want's to deploy it in resin + IIS or apache + IIS. does anyone know any site i can based the performance when using resin or apache with IIS? any links? any comments? thanks a lot.

binaries for struts 1.0.2

2003-09-22 Thread Richard Raquepo
does anyone knows the link where i can download the old struts 1.0.2 release? i need it for test/development purposes. thanks.

Re: Invalid Class file Format (help same problem)

2003-09-16 Thread Richard Raquepo
hello, I get the same error. Although i have copied the tools.jar from the jdk installation to both j2ee/home and j2ee/home/lib followed what others have done but im still not able to hack my application to run. :p can someone help me get my struts application work on Oracle 9iAS (9.0.3.0.0)

Re: Invalid Class file Format (help same problem)

2003-09-16 Thread Richard Raquepo
\msbase.jar;c:\java lib2\ms\mssqlserver.jar;c:\javalib2\ms\msutil.jar;C:\datamapper\source\; anymore suggestion? thanks, Richard - Original Message - From: Stefan Frank [EMAIL PROTECTED] To: Richard Raquepo [EMAIL PROTECTED] Cc: Struts Users Mailing List [EMAIL PROTECTED]; Christian Bollmeyer

Re: Invalid Class file Format (help same problem)

2003-09-16 Thread Richard Raquepo
can't compile the jsp files. how come? do i have to lower the java version i am using right now? anymore suggestions? thanks. -Richard - Original Message - From: Stefan Frank [EMAIL PROTECTED] To: Richard Raquepo [EMAIL PROTECTED] Cc: Struts Users Mailing List [EMAIL PROTECTED] Sent

Re: Invalid Class file Format (help same problem)

2003-09-16 Thread Richard Raquepo
I guess so. Bcoz i downloaded Oracle 9iAS developer version 9.0.4 and my app worked. i guest the production version of Oracle 9iAS 9.0.3 is for jdk 1.3 only. thanks a lot guys... -richard - Original Message - From: Stefan Frank [EMAIL PROTECTED] To: Richard Raquepo [EMAIL PROTECTED] Cc

jstl question

2003-09-10 Thread Richard Raquepo
i have a bean that has this gettter method ... public String getValueNum(String param){ } ... using struts tag i can call it like: bean:write name=bean value=valueNum(test)/ and it will works. now i can't seem to figure out how can i do that using jstl. i need your expert advice on

struts-tags to jstl on resin

2003-09-04 Thread Richard Raquepo
hello everyone. i have been using struts tags and struts-el tags for sometime now. my application works both on Resin and Tomcat. Now my boss told me to re-write my jsp to use JSTL instead. I was developing in a tomcat environment but here comes the problem... When i move my application to

Re: struts-tags to jstl on resin

2003-09-04 Thread Richard Raquepo
List [EMAIL PROTECTED] Sent: Thursday, September 04, 2003 10:40 PM Subject: Re: struts-tags to jstl on resin What does Tomcat do? Print the tag code? Throw an error? Is your taglib URI correct? Do other JSTL tags (like fmt:message/) work? David --- Richard Raquepo [EMAIL PROTECTED] wrote

bean 'xxxx' already defined in Orion

2003-08-14 Thread Richard Raquepo
how can make my app work in orion when i need a variable in to be defined using iterate. here's my JSP. logic:iterate id=policyinfo offset=offsetA length=length name=person property=policyInfo !-- bean:define id=policynum name=policyinfo property=policynum/

passing parameter to a getter method

2003-07-29 Thread Richard Raquepo
help. how can i pass a parameter to a getter method using JSTL of Struts-EL? example in a java i can get values from my bean using ArrayList values = mybean.getSampleValues(id01); now how can i do that in struts/jsp. using logic-el:iterate or for each. Id01 is dynamic it will come

passing parameter to a getter method

2003-07-29 Thread Richard Raquepo
help. how can i pass a parameter to a getter method using JSTL of Struts-EL? example in a java i can get values from my bean using ArrayList values = mybean.getSampleValues(id01); now how can i do that in struts/jsp. using logic-el:iterate or for each. Id01 is dynamic it will come

Re: using Struts datasource from a normal servlet

2003-07-17 Thread Richard Raquepo
- From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:43 AM Subject: using Struts datasource from a normal servlet i have a service class that i can use in my actions by passing the servlet variable to it MyService service

getting hash map values

2003-07-13 Thread Richard Raquepo
Hi. Assuming i have this king of bean: public class MyJavaBean implements Serializable{ public HashMap values = new HashMap(); public String get(String name){ String value = (String) values.get(name); if (value == null) { throw new NullPointerException

using struts datasource from a servlet

2003-06-30 Thread Richard Raquepo
can i call/use the a struts datasource in my servlet. the thing is, i have a struts app. then i created a servlet to do some specific thing. now my question is, can i use the datasource defined in my struts config file in my servlet. if so, how? example code will be very much appreciated.

Re: using struts datasource from a servlet

2003-06-30 Thread Richard Raquepo
(Globals.DATA_SOURCE_KEY); Take a look at the struts-config dtd for more info (particularly if you use modules) http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd Steve -Original Message- From: Richard Raquepo [mailto:[EMAIL PROTECTED] Sent: June 29, 2003 11:22 PM

Re: using struts datasource from a servlet

2003-06-30 Thread Richard Raquepo
the datasource in your data access classes. Steve -Original Message- From: Richard Raquepo [mailto:[EMAIL PROTECTED] Sent: June 29, 2003 11:54 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: using struts datasource from a servlet ic... another question. what

java.net.ConnectException: Connection refused

2003-06-27 Thread Richard Raquepo
hi. i have a struts application that is perfectly running in resin and tomcat in my win2k PC. but then i put in our production server (debian linux) and i got this error: Unable to connect to any hosts due to exception: java.net.ConnectException: Connection refused i can't connect to my

display an image

2003-06-25 Thread Richard Raquepo
i want to write a web app to display an image from a mssql db (image datatype). my action should be displayImage.do?imageid=1 where: imageid is the id of a particular image from the db. now my action class would retrieve this for example: byte[] dataBytes; //an array

display an image

2003-06-25 Thread Richard Raquepo
i want to write a web app to display an image from a mssql db (image datatype). my action should be displayImage.do?imageid=1 where: imageid is the id of a particular image from the db. now my action class would retrieve this for example: byte[] dataBytes; //an

Re: How do I configure multiple struts-config files?

2003-06-24 Thread Richard Raquepo
you can have comma separated config file for struts. you specify it in your web.xml example: web-app servlet servlet-nameaction/servlet-name servlet-classorg.apache.struts.action.ActionServlet/servlet-class init-param param-namedebug/param-name param-value0/param-value

can i reload a message-resource file

2003-06-23 Thread Richard Raquepo
can i reload a message-resource file. so that when i made a small change i don't have to restart my app container. is this already possible? is so, how? thanks...

Re: can i reload a message-resource file

2003-06-23 Thread Richard Raquepo
Subject: Re: can i reload a message-resource file Richard Raquepo rta: can i reload a message-resource file. so that when i made a small change i don't have to restart my app container. is this already possible? is so, how? providing you are using tomcat it might makes worth looking

Re: Multibox persistence problem

2003-06-17 Thread Richard Raquepo
try setting scope=session in your action. HTH - Original Message - From: Mykola Ostapchuk [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:35 AM Subject: Multibox persistence problem Hi, I'm using multibox to display multiple checkboxes: font size=2pre

Re: GenericDataSource looping

2003-06-16 Thread Richard Raquepo
You've left off the type attribute in the data-source tag. Try data-source type=org.apache.commons.dbcp.BasicDataSource don't you get any errors? Richard Raquepo wrote: Im use to use DBCP in Struts 1.1RC1 but then mo back to GenericDataSource in Struts 1.1RC2 but it seem's im having

GenericDataSource looping

2003-06-15 Thread Richard Raquepo
Im use to use DBCP in Struts 1.1RC1 but then mo back to GenericDataSource in Struts 1.1RC2 but it seem's im having a problem with it. According to my console it seem's generic source is lopping endlessly... 429796 [tcp-accept-6802] INFO util.GenericDataSource -createConnection() 429812

Re: Why is dbcp / pool removed?

2003-06-11 Thread Richard Raquepo
I thought GenericDataSource was still included in RC2 or am i wrong? i have remove my old DBCP type datasource and use GenericDataSource but it seems it does not work too. Am i missing something? Help anyone: My struts-config.xml datasource is: data-source key=DATASOURCE set-property

Re: formtag error

2003-06-10 Thread Richard Raquepo
sorry about that... accessing input.jsp i get this error: 500 Servlet Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:712) at

log4j WARN after upgrading to RC2

2003-06-10 Thread Richard Raquepo
any idea on how i can fix this warning? thanks in advance... log4j:WARN No appenders could be found for logger (org.apache.struts.util.PropertyMessageResources). log4j:WARN Please initialize the log4j system properly. -richard

Re: log4j:WARN No appenders could be found for logger (org.apache.struts.util.PropertyMessageResources).

2003-06-10 Thread Richard Raquepo
we have the same problem - Original Message - From: Bjorn T Johansen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 12:15 PM Subject: log4j:WARN No appenders could be found for logger (org.apache.struts.util.PropertyMessageResources). I just upgraded to rc2 and

Help on an error in my Datasource after upgrading to RC2

2003-06-10 Thread Richard Raquepo
i have this data source in my struts-config.xml... this is not a DBCP Connection right? i doesn't work after i upgraded to RC2 data-source key=DATASOURCE set-property property=driverClass value=com.mysql.jdbc.Driver / set-property property=url value=jdbc:mysql://localhost/crmdev /

formtag error

2003-06-09 Thread Richard Raquepo
i cannot acces any jsp or action:help! can someoe show me what am i doing wrong?javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:712) at

Re: Why is dbcp / pool removed?

2003-06-09 Thread Richard Raquepo
im using tomcat. what is included in tomcat then? thanks. I recommend using the package distributed with either your container or your database. David - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 11:07 AM Subject: RE:

i suddenly got this error from nowhere

2003-06-02 Thread Richard Raquepo
my app is working just fine but i can't remember anything that might have cause this error. java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.apache.struts.taglib.tiles.InsertTag.clinit(InsertTag.java:104) at _login__jsp._jspService(/login.jsp:5) at

Re: i suddenly got this error from nowhere

2003-06-02 Thread Richard Raquepo
out from the problem. This problem due to placing of log4j.jar file and reloading of the application after restarting. Thanks Regards, Ashok.D - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, June 02

using message resources

2003-06-02 Thread Richard Raquepo
can someone show me how to use message-resources? i can't seem to get it right by following the documention. the filename of my application resources is ApplicationResources.properties i use to put my message resources in web.xml under my servlet using this: servlet

Re: Upgrading to 1.1

2003-05-30 Thread Richard Raquepo
clear your compiled jsp, be sure you are using the latest struts.jar *.jars of struts1.1rc1 hope this helps - Original Message - From: Abhinav (Cognizant) [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, May 30, 2003 1:09 PM Subject: Upgrading to 1.1

Re: Removing a value from DynaForm?

2003-05-30 Thread Richard Raquepo
i hope i understand your question. in your action class typecast the form variable to your dynaform name then access it as a regular javabean. ex: public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws

Re: Struts Diagram

2003-05-30 Thread Richard Raquepo
i think you can't make attachment here - Original Message - From: Vijay S Pawar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, May 30, 2003 6:29 PM Subject: Struts Diagram Hi Friends, Based on struts-documentation, I have prepared the

checkbox

2003-04-03 Thread Richard Raquepo
is there a maximum # of checkbox that a user can only select... i have a least 500 checkboxes when i all of them is check submit won't work but checking say sumthing around 200 chekboxes , submit will work? is there a limitation of html checkox that i'm not aware of... thanks...

Re: checkbox

2003-04-03 Thread Richard Raquepo
of the final form. -c - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 5:48 AM Subject: checkbox is there a maximum # of checkbox that a user can only select... i have a least 500 checkboxes

url rewriting

2003-04-02 Thread Richard Raquepo
i have this kind of link that will open a new window: a href=test class=redbold onClick=TestWindow=window.open('?LINK.do?','TestWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no, width=620,height=250,left=20,top=20'); return false;

Re: url rewriting

2003-04-02 Thread Richard Raquepo
the session is attached to the browser instance and not the individual window, so by popping a new window with a new action you'll carry the same session attributes without the need to specify the session id. -c - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users

Re: error in my struts config

2003-03-25 Thread Richard Raquepo
] To: Richard Raquepo [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 2:52 AM Subject: Re: error in my struts config Sorry for the delay in responding, but I've been out of town for a week. As far as your error goes, make sure that you are using the same version of Struts and all associated

struts vs tapestry

2003-03-25 Thread Richard Raquepo
how does the two compares? any mixed feeling about it? please tell me your opinions... thanks...

I NEED HELP

2003-03-24 Thread Richard Raquepo
Please view email: 1. error starting my struts app in tomcat 2. error in my struts config I really need help badly. THANKS! -richard

Re: error in my struts config

2003-03-24 Thread Richard Raquepo
-manager.xml/param-value /init-param Konstnatina - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, March 24, 2003 8:17 AM Subject: error in my struts config My web-app is working fine in resin but when i

Re: I NEED HELP

2003-03-24 Thread Richard Raquepo
into a Donkey!! Damit, someone beat me too it =:0) Cheers Simon - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, March 24, 2003 9:35 AM Subject: I NEED HELP Please view email: 1. error starting my struts

error in my struts config

2003-03-23 Thread Richard Raquepo
My web-app is working fine in resin but when i switched to tomcat i got this error. 2003-03-24 14:13:57 StandardContext[/]: Servlet / threw load() exception javax.servlet.UnavailableException: Parsing error processing resource path /WEB-INF/struts-config-tm.xml,/WEB-INF/struts-config-manager.xml

error starting my struts app in tomcat

2003-03-23 Thread Richard Raquepo
i have a web-app that works fine in resin but does not work in tomcat. i always get this error: Mar 24, 2003 3:32:00 PM org.apache.commons.digester.Digester startElement SEVERE: Begin event threw exception java.lang.NoSuchMethodException: Bean has no property named loginRequired at

creating my Class

2003-03-21 Thread Richard Raquepo
I am in the process of designing a class but coudn't figure out how to start it because i'm thinking how struts tags will display my info. My expected output is like this Record1blahblah Record1_sub_detail1blah Record1_sub_detail1blah

Re: creating my Class

2003-03-21 Thread Richard Raquepo
- From: Richard Raquepo [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 10:12 AM To: Struts Users Mailing List Subject: creating my Class I am in the process of designing a class but coudn't figure out how to start it because i'm thinking how struts tags will display my info. My

Re: struts-config.xml

2003-03-20 Thread Richard Raquepo
can you give us a working of your web.xml. i'm kind of thinking your kind of solution. thanks... - Original Message - From: Joseph Fifield [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, March 21, 2003 5:26 AM Subject: RE: struts-config.xml If you are

Re: Action Form Design Problem

2003-03-18 Thread Richard Raquepo
Does session propagate to the pop-up window and vice-versa? - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 1:47 PM Subject: Re: Action Form Design Problem Treat it as a multi-page form. Store the form bean in the session

help in my ServletException

2003-03-17 Thread Richard Raquepo
guys help me out what cause this error? I have all my class compiled so i don't know what to check. help me out... thanks.. [ServletException in:../tm/edit-busempinfo-body.jsp] Exception creating bean of class com.fltic.crm.form.BusEmpInfoForm: java.lang.ClassCastException'

Error in Prepared Statement in my Struts Action Class

2003-03-17 Thread Richard Raquepo
I doing an app with struts. Although my problem is not directly related to struts maybe any could help me out. I have this prepared statement SQLDef.BUSEMPINFO_INSERT= INSERT INTO busempinfo (lastupdate) VALUES (?) but when i use this on my Java servlet like this pstmt =

Re: Error in Prepared Statement in my Struts Action Class

2003-03-17 Thread Richard Raquepo
List [EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 9:37 AM Subject: Re: Error in Prepared Statement in my Struts Action Class On 3/18/2003 2:28 AM, Richard Raquepo wrote: I doing an app with struts. Although my problem is not directly related to struts maybe any could help me out. I have

Re: Dynamic form actions

2003-03-13 Thread Richard Raquepo
We'll i kind of interested in trying your solution. Can you post some jsp codes in here. I think many people will appreciate it. Thanks. - Original Message - From: Mark [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 14, 2003 11:52 AM Subject: Dynamic form actions I just

problem in struts

2003-03-12 Thread Richard Raquepo
i am trying to re-use my formbean which i used in my adding of a record and trying to use inediting my record. i can't seem to show the data to the screen for editing. what's wrong with my code? i am attaching my code in this email. please help me. many thanks in advance... -Richard

problem in struts

2003-03-12 Thread Richard Raquepo
i am trying to re-use my formbean which i used in my adding of a record and trying to use in editing my record. i can't seem to show the data to the screen for editing. what's wrong with my code? i am attaching my code in this email. please help me. many thanks in advance... -Richard

Re: problem in struts

2003-03-12 Thread Richard Raquepo
no error just empty fields... - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 4:30 PM Subject: Re: problem in struts Do you get a specific error on the page when you try to display the

Re: problem in struts

2003-03-12 Thread Richard Raquepo
no errors. jusr empty fields. - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 4:30 PM Subject: Re: problem in struts Do you get a specific error on the page when you try to display the

Re: problem in struts

2003-03-12 Thread Richard Raquepo
Tuck [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 4:43 PM Subject: Re: problem in struts Looks like your form bean is not initialized .. Richard Raquepo wrote: no error just empty fields... - Original Message - From: Kwok Peng

Help in my struts error

2003-03-09 Thread Richard Raquepo
i have this error whenever i am doing a save and cancel in my jsp.i have used a form bean. but i didn't do any fancy thing in my form beanso i don't know why i get this error. any idea why? thanks...java.lang.IllegalArgumentException: argument type mismatch at

Re: Help in my struts error

2003-03-09 Thread Richard Raquepo
Thanks - Original Message - From: Dan Allen [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, March 10, 2003 12:02 PM Subject: Re: Help in my struts error Richard Raquepo ([EMAIL PROTECTED]) wrote: i have this error whenever i am doing a save and cancel

Re: paginator tags

2003-03-06 Thread Richard Raquepo
Can you give me actual jsp code on how you used the pager tag. i find it hard to customize it. thanks - Original Message - From: Ashish Kulkarni [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, March 07, 2003 5:36 AM Subject: Re: paginator tags Hi u may

Re: Multiple beans in request scope?

2003-03-06 Thread Richard Raquepo
Try encapsulating all the three beans in one bean. - Original Message - From: Jeff Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 07, 2003 8:21 AM Subject: Multiple beans in request scope? I'm building my first real struts app. (Okay, its also my first real Java app,

how can i make my pages sensetive to back and forward

2003-03-05 Thread Richard Raquepo
Help anyone... how can i make my pages sensetive to back and forward? i tried putting this in my html META HTTP-EQUIV=Pragma content=no-cache META HTTP-EQUIV=Cache-Control CONTENT=no cache META HTTP-EQUIV=Expires CONTENT=Thursday, 10-Jan-69 00:00:00 GMT META HTTP-EQUIV=Expires CONTENT=-1

how can i make my pages sensetive to back and forward

2003-03-05 Thread Richard Raquepo
Help anyone... how can i make my pages sensetive to back and forward? i tried putting this in my html META HTTP-EQUIV=Pragma content=no-cache META HTTP-EQUIV=Cache-Control CONTENT=no cache META HTTP-EQUIV=Expires CONTENT=Thursday, 10-Jan-69 00:00:00 GMT META HTTP-EQUIV=Expires CONTENT=-1

trouble on my editing

2003-03-03 Thread Richard Raquepo
I am doing a webapp in struts... i'm using a sample program i found during my web searches. I was able to do fine, like saving and deleting but i always seem to get this error whenever i try to setting the form to the session. My code is: GetUserAccountService service = null;

Fw: trouble on my editing

2003-03-03 Thread Richard Raquepo
I am doing a webapp in struts... i'm using a sample program i found during my web searches. I was able to do fine, like saving and deleting but i always seem to get this error whenever i try to setting the form to the session in my edit action. My code is: GetUserAccountService service = null;

Re: Results in multiple pages

2003-02-28 Thread Richard Raquepo
www.javanovic.com - see articles. i'm sure it can help you and try going browsing to this thread http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topicf=58t= 000767 hope this helps - Original Message - From: Konstantina Stamopoulou [EMAIL PROTECTED] To: Struts Users

Re: Results in multiple pages

2003-02-28 Thread Richard Raquepo
be able to find the solution. I knew I could count on the mailing list! Konstantina - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, February 28, 2003 10:15 AM Subject: Re: Results in multiple pages

formbean

2003-02-27 Thread Richard Raquepo
i have a bean which is of type Arraylist which i return from my action. i want to be able to display this in my formbean. but i also want to default to the selected value in case the user has a error in entry. html:select .. how can i do this? anyone? thanks.

do to put onChange on a html:select tag

2003-02-27 Thread Richard Raquepo
how do i put a onChange function in a html:select tag? help anyone? many thanks in advance...

error in my html:select tag

2003-02-27 Thread Richard Raquepo
i have this code in my jsp :53 html:select property=provincecode styleClass=normalblack onchange=province(userAccountForm,'bean:write name=userAccountForm property=citycode/') but i get this error: [ServletException in:/manager/addtm-body.jsp] /manager/addtm-body.jsp:53: expected

combining two form bean in one form

2003-02-27 Thread Richard Raquepo
can i combine two formbean? i mean i have a PersonalInfoForm bean and ContactInfoForm bean. can i combine them to in one html? how? thanks in advance...

Re: combining two form bean in one form

2003-02-27 Thread Richard Raquepo
write two different jsps for both form bean later write third one and include the previous two in that :) - Original Message - From: Richard Raquepo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, February 28, 2003 10:49 AM Subject: combining two form

combining two form bean in one form

2003-02-27 Thread Richard Raquepo
is this possible? to have the inputs of the two beans in one html? orig can i combine two formbean? i mean i have a PersonalInfoForm bean and ContactInfoForm bean. can i combine them to in one html? how? thanks in advance...

Re: re:combining two form bean in one form

2003-02-27 Thread Richard Raquepo
well what im trying to ask is this: assuming i have two form-bean definition in my struts config example namely: personInfoForm and contactInfoForm what im trying to ask if it's possible for the two to exist in one html form. i mean i will be entering the information in the two form-bean on

help removing a formbean in session

2003-02-26 Thread Richard Raquepo
i have this in my struts-config action path=/AddTmAccount type=com.fltic.crm.action.manager.AddTmAccountAction scope=session set-property property=loginRequired value=true/ forward name=success path=/manager/addtm.jsp/ /action action path=/SaveTmAccount

Dispaly a tag

2003-02-25 Thread Richard Raquepo
I have placed this string in one of my struts action session.setAttribute(mylist,liList 1/liliList 2/li); I tried displaying it using bean:write name=mylist/ I't showed the content but changed the supposed tag charcterswith gt; and lt; how can i display the correct tag li thanks

Re: Dispaly a tag

2003-02-25 Thread Richard Raquepo
- From: Todd Pierce [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 2:53 PM Subject: RE: Dispaly a tag http://jakarta.apache.org/struts/doc-1.0.2/struts-bean.html#write -Original Message- From: Richard Raquepo [mailto:[EMAIL PROTECTED

removing formbean in session

2003-02-25 Thread Richard Raquepo
i have a formbean i used in my action. Now, how do i remove the valeus of my formbean because it keeps on showing up when i returned to the form again. thanks.

Printing tag size

2003-02-24 Thread Richard Raquepo
i have this tag: bean:size id=size name=useraccounts/ now how can i display the value of size? what the getter method for the bean:size? thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Bean Style

2003-02-20 Thread Richard Raquepo
Hi! Is there a general rule for creating view beans... I mean should i use Integer instead of int? If so, Why? Thanks. -richard

Help in Logic Tag

2003-02-20 Thread Richard Raquepo
i want to be able to show a message like No records found is there was no records found or logic/iterate did not do any iteration. Can anybody provide us a solution to this kind of problem? thanks a lot!. i have this in my JSP: logic:iterate id=referralsInfo name=referralsinfos tr

Re: Help in Logic Tag

2003-02-20 Thread Richard Raquepo
/logic:greaterThan logic:equal name=collectionSize value=0 ... /logic:equal -Original Message- From: Richard Raquepo [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 February 2003 2:05 PM To: Struts Users Mailing List Subject: Help in Logic Tag i want to be able to show a message like

Re: Help in Logic Tag

2003-02-20 Thread Richard Raquepo
Got it! Thanks everyone! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Scroll

2003-02-19 Thread Richard Raquepo
hello anybody? Can anyone show me how to implement a Scroll in my page. Assuming i have 20 or more result returned from my bean i want to display the first 5 only and let the user scroll either forward or backward. Can someone show me or give me a working sample. thanks a lot everyone!

Re: Displaying

2003-02-19 Thread Richard Raquepo
I have this error: 'No getter method for property personalInfo.name of bean person' help anyone? i have my PersonalInfo class and it has a get and set method for name. public void setName(String name){ this.name = name; } public String getName(){ return name; } - Original Message -

Re: Displaying

2003-02-19 Thread Richard Raquepo
here's part of the code: . Person person = new Person(); PersonalInfo personalInfo = new PersonalInfo(); if ( taskId != null ) { System.err.println(--- Writing personc class : + taskId); personalInfo.setName(Richard); person.personalInfo = personalInfo;

Re: Displaying

2003-02-19 Thread Richard Raquepo
ok. thanks. i seem to forgot that... sorry... thanks a lot again... - Original Message - From: Nicolas De Loof [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 6:29 PM Subject: Re: Displaying Does your Person class have a getter for

Displaying

2003-02-18 Thread Richard Raquepo
how to i display my bean using the tags included in struts if my bean is like this: code public class Person{ PersonInfoBase personinfo; ContactInfoBase contactinfo; } public class PersonInfoBase{ getLastName(); getBirthdate(); } public class ContactInfoBase{ getAddress(); getZip();