RE: datasource classpath issue with MySQL driver

2002-07-02 Thread Jesse Alexander (KADA 11)
Hi, at some time I had problems with MySQl-driver when I used the compressed jar-file. Try to use the uncompressed jar-file. hope this helps Alexander -Original Message- From: matt_raible [mailto:[EMAIL PROTECTED]] Sent: Montag, 1. Juli 2002 06:08 To: [EMAIL PROTECTED] Subject: Re:

RE: i18n Gets Even Weirder: It is Reading from the File, but Only Certain Languages and a Mystery Value

2002-07-02 Thread Jesse Alexander (KADA 11)
Hi, have you specified the correct charset in the html-header? meta http-equiv=content-type content=text/html; charset=ISO-8859-1 Well it will not be ISO-8859-1, but something different. This website should tell you which (in case...): http://www.iana.org/assignments/character-sets hope this

JSP's in WEB-INF and action forward

2002-07-02 Thread Joe Latty
Ok I am trying to tow the party line here... Firstly, I have put all my JSP's in the WEB-INF directory. Now the only way to get to these pages is by action forwards. If I have an iterator which produces a grid which I would have previously coded like this e.g. logic:iterate id=comp

Re: JSP's in WEB-INF and action forward

2002-07-02 Thread Amir Nashat
Joe, Seems like a simple solution to me but I might be over looking something. With what you have done as long as you forward to company.do then all the request parameters will be there. It is important to forward and not redirect. Thus, when you do forward all the query string parameters

RE: JSP's in WEB-INF and action forward

2002-07-02 Thread Joe Latty
This wont work because the actual link should be href=/WEB-INF/jsp/company.do?action=... which is not allowed. -Original Message- From: Amir Nashat [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 2 July 2002 6:07 PM To: [EMAIL PROTECTED] Subject: Re: JSP's in WEB-INF and action forward

RE: Problem with Struts 1.1b1 and Log4J 1.2.4

2002-07-02 Thread fabrice dewasmes
Hi, i had the same question. I haven't gone very deep in the problem but here's what i assumed : Struts makes use of log4j for its logging purpose. When it comes to initialize itself it happens that it loads your log4j but as it is yours you've got initialize it before any debug stuff get

Struts development procedure

2002-07-02 Thread @Basebeans.com
Subject: Struts development procedure From: Hu Ji Rong [EMAIL PROTECTED] === Hi, Normally, we start web app development from a set of page designs that have been mocked-up as static HTML and javascripts. Is there any article describes the steps and procedures to transfer such as HTML prototype

query string

2002-07-02 Thread Billy Ng
I try to use the html:link tag html:link page=/products.do%= product.getProductID() %Product 1/html:link to render the link like a href=/myWebapp/products.do?id=1Product 1/a However, it becomes a href=/myWebapp/products.do?%= product.getProduct() %Product 1/a What did I do wrong? What is

RE: query string

2002-07-02 Thread fabrice dewasmes
Hi, if you've got only one parameter here's what you should write html:link page=/products.do paramId=id paramName=product paramProperty=productProduct 1/html:link for more parameters it rapidly becomes more problematic : you have to pass a bean which has a map of paramName - value to build

Re: query string

2002-07-02 Thread Duke Ronlund
Hi, The html:link tag provides paramId, paramName and paramProperty attributes for this very purpose. so html:link page=/products.do%= product.getProductID() %Product 1/html:link would become html:link page=/products.do paramId=id paramName=BeanName paramProperty=productIdProduct 1/link

Re: Does anyone have any good examples of recursion using nested:iterate tags ?

2002-07-02 Thread @Basebeans.com
Subject: Re: Does anyone have any good examples of recursion using nested:iterate tags 1 2 3 4 5 6 7 8 9 From: [EMAIL PROTECTED] === hello, i have similar problem ; how to use nested tags on dynamic forms? if you knowhow tell me please, Thomas Uzytkownik [EMAIL PROTECTED] napisal w wiadomosci

strange things

2002-07-02 Thread rainer juenger
Hi, Everything just used to work fine for weeks! All of a sudden we are getting an error 503 back: Servlet action is currently unavailable. - we checked the rights of the files on our SuSE Linux Server, running Tomcat 4.01 under JDK 1.3.1_02 - restarted the server several times - compiled the

Question on implementation with frames

2002-07-02 Thread @Basebeans.com
Subject: Question on implementation with frames From: Hu Ji Rong [EMAIL PROTECTED] === Hi, I have a web page with 3 frames, a menu on top with three links to different pages. When the links are clicked, the destination page will be displayed in the middle frame. The bottom frame have a list of

RE: strange things

2002-07-02 Thread andre . powroznik
By the way, it seems there is an error in your struts-config.xml. Or you changed it or you changed this file, or your tomcat config, or your J2SDR or JRE config... Maybe you can send your struts-config.xml if it is not too big... Andre POWROZNIK -Original Message- From: rainer

a custom servlet forwarding like an action?

2002-07-02 Thread @Basebeans.com
Subject: a custom servlet forwarding like an action? From: Torgeir Veimo [EMAIL PROTECTED] === I need to forward to a jsp inside a subapp from a servlet, and needs to saveMessages() similar to what an action does before forwarding to a JSP, to use the message taglib in those jsps. Anyone done

multiple pages with single form bean?

2002-07-02 Thread @Basebeans.com
Subject: multiple pages with single form bean? From: Hu Ji Rong [EMAIL PROTECTED] === Hi, Where can I find a such as sample to use single form bean for multiple pages and one single action classes? I want to use that to implement the web app as describe in my previous post Question on

Re: strange things

2002-07-02 Thread rainer juenger
Hi andre, thanks for your answer. By the way, it seems there is an error in your struts-config.xml. I know, it looks like that. But I haven't changed it since some time Or you changed it or you changed this file, or your tomcat config, or your J2SDR or JRE config... no, actually not! thats

RE: Question on implementation with frames

2002-07-02 Thread Rahul Kumar Saxena
Hi JiRong, You can use single action class for all the three links and based on link clikced you can forward the request to corresponding page. In order to store the value accros the links, you have to store you form in session. For that you can declare session scope in Struts-config. Apart

RE: strange things

2002-07-02 Thread andre . powroznik
There is something strange here : input=/application/datensteckbriefe/forms/form_trinkwasser.jsp forward name=success path=app/trinkwasserform?todo=speichern/ forward name=preview path=/application/datensteckbriefe/forms/form_trinkwasser_preview.jsp/ /action forward name=success : A

Re: strange things

2002-07-02 Thread rainer juenger
Hi Andre, Grr. Thanks. saw it. Its strange. I did that change some days ago an of course reloaded/restarted the Server several times. It is a pitty that Struts hasn't a more detailed validation with error messages. thanks for your help!! Rainer There is something strange here :

RE: strange things

2002-07-02 Thread andre . powroznik
You are welcome. So you see something changed ;-) -Original Message- From: rainer juenger [mailto:[EMAIL PROTECTED]] Sent: 02 July 2002 12:12 To: Struts Users Mailing List Subject: Re: strange things Hi Andre, Grr. Thanks. saw it. Its strange. I did that change some days ago an of

Re: strange things

2002-07-02 Thread emmanuel.boudrant
Hi, I've got an error when I access to my JSP Error is : # # HotSpot Virtual Machine Error, Internal Error # Please reports this error at # http://java.sun.com./cgi-bin/bugreport.cgi # # Error ID: .. Os is : Solaris 8 JDK is : 1.3.1_02 Java HotSpot client VM is : build

HotSpot Virtual Machine Error

2002-07-02 Thread emmanuel.boudrant
Hi, I've got an error when I access to my JSP Error is : # # HotSpot Virtual Machine Error, Internal Error # Please reports this error at # http://java.sun.com./cgi-bin/bugreport.cgi # # Error ID: .. Os is : Solaris 8 JDK is : 1.3.1_02 Java HotSpot client VM is : build

RE: HotSpot Virtual Machine Error

2002-07-02 Thread Anand Raman
hi emm, The best which you can do in a situation like this is search for the error id on the sun java's bug parade page. http://developer.java.sun.com/developer/bugParade/ There would definitly be a few more people who have faced this problem and possibly a few work arounds also. Another point,

Re: Struts development procedure

2002-07-02 Thread Ted Husted
For the most part, there is a 1:1 relationship between the Struts HTML tags and the static HTML tags. There are some tools, like the Struts CodeMaker, that will do that conversion for you listed on the resource page. http://jakarta.apache.org/struts/resources/guis.html Basically, you can just

RE: HttpSession initialisation

2002-07-02 Thread Heligon Sandra
Thanks a lot Craig for your help, Among the solutions, is one better of the others? What precautions do we have to take if the application is responsible of the initialisation. After creating the session, where is the session stored ? Do you have an example of session's initialisation ? With

RE: datasource classpath issue with MySQL driver

2002-07-02 Thread Stephen . Chambers
I've had this problem as well, even after I unzipped the jar file. I put it out on the list twice and never got much response. You can try different versions of the driver, but there is something buggy with the MySQL driver and Struts. I was on RH 7.1 Steve

RE: Logic Iterate not finding my bean

2002-07-02 Thread Kamholz, Keith (corp-staff) USX
I don't know if this will solve your problem, but you're making a common mistake. In the bean:write tag, the name attribute should be the same as the id attribute in the logic:iterate tag. So use name=refnum in your bean:write. Hope this helps. ~ Keith -Original Message- From:

Exception when running JSP in Struts

2002-07-02 Thread greg1java
I am trying to run a JSP, but keep getting the exception: } catch (Throwable t) { if (out != null out.getBufferSize() != 0) out.clearBuffer(); if (pageContext != null) pageContext.handlePageException(t); } finally { try { I do not have this code in my JSP }catch

Re: Tiles DTD Not Found?

2002-07-02 Thread Cedric Dumoulin
We are currently in the process of moving Tiles from the contrib directory to the main struts directory. It looks like the digester used to parse Tiles definition file can't find the appropriate DTD. Normally, the digester is configured to look for the DTD at specified URL, and in a

RE: Tiles DTD Not Found?

2002-07-02 Thread Jerry Jalenak
Cedric, Thanks for the reply. I'll pull down the latest nightly build and give it a try. Jerry -Original Message- From: Cedric Dumoulin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 8:01 AM To: Struts Users Mailing List Subject: Re: Tiles DTD Not Found? We are currently

Re: Struts development procedure

2002-07-02 Thread James Holmes
The Struts Console will also do this in the standalone version. There is a tool inside the program called the Page Converter that will convert HTML forms to Struts forms. Struts Console: http://www.jamesholmes.com/struts/ -james [EMAIL PROTECTED] --- Ted Husted [EMAIL PROTECTED] wrote: For

RE: Tiles DTD Not Found?

2002-07-02 Thread Jerry Jalenak
Cedric, That was it. Everything seems to be OK with Tiles for now! Thanks again. Jerry -Original Message- From: Jerry Jalenak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 8:06 AM To: 'Struts Users Mailing List' Subject: RE: Tiles DTD Not Found? Cedric, Thanks for the

RE: Logic Iterate not finding my bean

2002-07-02 Thread wbchmura
This was one of the many iterations I tried logic:iterate id=bean name=rowset type=org.apache.commons.beanutils.BasicDynaBean Next element is bean:write name=bean property=refnum/ /logic:iterate -Original Message- From: kkamholz [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: Logic Iterate not finding my bean

2002-07-02 Thread Kamholz, Keith (corp-staff) USX
How is the bean that is being used in the iteration structured? It may be helpful if you send some code from your bean class. ~ Keith http://www.buffalo.edu/~kkamholz -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 9:21 AM To: [EMAIL

How to transfer control

2002-07-02 Thread @Basebeans.com
Subject: How to transfer control From: bkrishna [EMAIL PROTECTED] === Hi All, How to transfer/forward from one JSP to another JSP on clicking a button. Thanks. Bala. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Which components use for create manager entities (Actions or Java Beans) ?

2002-07-02 Thread Heligon Sandra
If I need to create some entities in order to managing specific tasks like Session management, Authentication management, Database transaction management etc... in a Struts application. Are these components controller components or model components (because

RE: How to transfer control

2002-07-02 Thread Nelson, Laird
How to transfer/forward from one JSP to another JSP on clicking a button. http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/ Cheers, Laird -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

back office tool (urgent, TIA)

2002-07-02 Thread Adolfo Miguelez
Hi All, we are planning to incorporate a back office tool for the projects developed at our company. Our RDBMS is Oracle 8i. It should, at least provide a easy handling in CRUD operations, and MAYBE allow data model management (modify tables, rows, constraints...). The primer intend is to

Re: getting link parameters from a bean

2002-07-02 Thread Lolik Tum
this is how I do it: javascript:openwin(\/searchEmp.do?mode=Clear\) and function openwin(url) { nwin=window.open(url, nwin,config=scrollbars=yes,resizable=yes,toolbar=yes,location=yes,status= yes,menubar=yes,); nwin.focus(); } - Original Message - From: micael [EMAIL PROTECTED]

How to use nested: tags on dynamic forms?

2002-07-02 Thread @Basebeans.com
Subject: How to use nested: tags on dynamic forms? From: [EMAIL PROTECTED] === Hello, I try to use the nested tags on (dynamic) forms, and I have a problem.:( To display a few records from collection list (or from other data) and when the user selected the record (line) must by displayed

can the optionscollection tag use an array?

2002-07-02 Thread Bill Milbratz
Hi, I'm looking over the documentation for the new html:optionscollection tag and wanted to clarify a detail: Can the 'collection of objects' (identified by the 'property' attribute) be an array of objects? Or must it be a java.util.Collection? This is an issue because use of arrays would cut

RE: back office tool (urgent, TIA)

2002-07-02 Thread Eyassu, Daniel
If you have MS Access, you can use its wizards to create CRUD operations on a database, such as Oracle 8i very quickly. It will automatically create all the necessary GUI elements(HTML or application) for you. If you have additional business logic(other than CRUD operations), it gets more

Using Checkboxes

2002-07-02 Thread Anand Narayan
I am trying to use checkboxes in the following manner: I retrieve a list of records and display them in a table format(one record per table row) with a checkbox associated with each record. The user can click on the checkboxes of any or all records and perform actions on the selected records.

RE: DynaBeans, DynaClass, DynaMen - Display Tags

2002-07-02 Thread wbchmura
Apparently the Display Tags library does support Dynabeans... I had an action screwed up Works well! -Original Message- From: Chmura, William B. Sent: Monday, July 01, 2002 12:28 PM To: struts-user Subject: RE: DynaBeans, DynaClass, DynaMen definatly will submit them... Tried

Re: getting link parameters from a bean

2002-07-02 Thread Nina-Annick Stranzenbach
Hi Lolik, thanks for your answer, but I need to get the link parameter from a bean because it is dynamic. So instead of writing mode=Clear which is no problem, if you know your parameter IS Clear, I need to get my parameter from a bean because I don't know beforehand what it will be...

RE: Digester?

2002-07-02 Thread Michael Marrotte
I used cvs diff -u, added as attachment and reopened bug 8244. But, I'm having trouble subscribing to COMMONS-DEV. I tried sending blank email to the following: [EMAIL PROTECTED] [EMAIL PROTECTED] And got a failure notice each time. What am I doing wrong? Any help is greatly appreciated.

Wow

2002-07-02 Thread wbchmura
I got Dynaforms, Validator, Tiles, DynaBeans, a nice display tag library for table display, a nice DAO layer and a few other things all working in Struts. It took awhile to get everything working right but I am amazed at how little code it is taking now to do each part and how robust the

RE: Wow

2002-07-02 Thread Jerome Jacobsen
Can you give us some details on the nice display tag library? Is it something you came up with, found and modified, or just found? What does it do for you? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 10:45 AM To: [EMAIL PROTECTED]

RE: Login process

2002-07-02 Thread James Mitchell
okhere ya go... http://www.open-tools.org/struts-atlanta/downloads/ ...coming soon..Proposal for new struts-example that demonstrates all features in the Struts framework (and I mean ALL)...stay tuned James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded

RE: JSP's in WEB-INF and action forward

2002-07-02 Thread Christian Velez
If the ITERATE element below is in a form and the form contains other variables, you can use hidden fields to get the required values into the request object. (Your example does not refelect this) If you don't have variables, you don't need to post a form. The values that you are interested in

repopulate the text field inside iterate after posting

2002-07-02 Thread Xinhong Luo, NY
I am experiencing a problem with struts. I used the textbox to collect the input for each fund. After the jsp was redisplayed, the text field was populated as: [Ljava.lang.String;@533a6b I read some posts about this before and it seems on one can solve it. I really appreciate the help if you

RE: Wow

2002-07-02 Thread John Menke
What did you use for your DAO layer? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 10:45 AM To: [EMAIL PROTECTED] Subject: Wow I got Dynaforms, Validator, Tiles, DynaBeans, a nice display tag library for table display, a

RE: Wow

2002-07-02 Thread Robert Morse
Care to share a little more detail so others can benefit from your effort? --Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 7:45 AM To: [EMAIL PROTECTED] Subject: Wow I got Dynaforms, Validator, Tiles, DynaBeans, a nice display tag

Re: [Off Topic] Iterating through Parents/children help

2002-07-02 Thread @Basebeans.com
Subject: Re: [Off Topic] Iterating through Parents/children help From: Matt Raible [EMAIL PROTECTED] === Here's what I came up with using JSTL, but there's GOT to be a better (recursive) way of doing this: c:forEach var=catalog items=${myCatalog} c:out value=${catalog.name}/br/ %-- Show

RE: datasource classpath issue with MySQL driver

2002-07-02 Thread Clay Graham
thanks, I am using 7.1 too, I did download the new one and it doesn't help. I am going to try this: http://marc.theaimsgroup.com/?l=tomcat-userm=102225547106556w=2 the new pooling may be more robust anyway clay -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL

multibox bug

2002-07-02 Thread Toni Nehme
Hi, I am using multibox in a Logic:iterator see below: logic:iterate id=fruits name=FRUITS scope=session property=fruits type=ch.thales.model.Fruit tr tdhtml:multibox property=selectedItems/td tdbean:write name=fruits property=fruitName//td /html:multibox /tr

Re: Problem with Struts 1.1b1 and Log4J 1.2.4

2002-07-02 Thread hemant
Fabrice and Hemant I had this problem too but I overcame it the hard way. Many a times, its the IDE that causes this kinda confusion. Here is what I did, I wrote a startup servlet that starts up logging , creates the connection pools via poolman, and loads a few other things. step1: I loaded

Re: Problem with Struts 1.1b1 and Log4J 1.2.4

2002-07-02 Thread hemant
One other thing, Make sure your Startup Servlet does not extend ActionServlet. I made it extend HttpServlet and the problem went away. Thanks hemant - Original Message - From: hemant [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 11:54 AM

Error trying to run struts-example application on Tomcat 3.3.1 (java.lang.NoSuchMethodError...)

2002-07-02 Thread Gilson Nascimento D Elrei
I have to instaled Tomcat 3.3.1 on Win98 and upload struts-example.war on Root directory, when try to execute I receive the error below: My ClassPath variable is void ! Any suggestion is wellcome! Thanks in advance. Location: /struts-example/index.jsp Internal Servlet Error:

Re:Help Help Help multibox bug

2002-07-02 Thread Toni Nehme
From: Toni Nehme [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: multibox bug Date: Tue, 02 Jul 2002 11:35:24 -0400 Hi, I am using multibox in a Logic:iterator see below: logic:iterate id=fruits name=FRUITS scope=session property=fruits

Re: How to transfer control

2002-07-02 Thread @Basebeans.com
Subject: Re: How to transfer control From: bkrishna [EMAIL PROTECTED] === I am doing the following: 1. open a jsp page (First) 2. click a button to open another jsp page (Second) (here I am using javascript open command. this opens a new window) 3. in the new window(Second) I specify some

/html:form inserts blank space?

2002-07-02 Thread Jerry Jalenak
Call me crazy, but.. I have a form inside of a table cell - td .. html:form action=myAction.do method=post html:text maxlength=60 property=name size=60 / /html:form /td When I turn on my table borders, there is an additional 20 or

Re: /html:form inserts blank space?

2002-07-02 Thread emmanuel.boudrant
It's a html problem, not struts, Place forms tag inside table tag table html:form action=myAction.do method=post tr td /td /tr /html:form /table or table tr html:form action=myAction.do method=post td /td /html:form /tr /table -Emmanuel --- Jerry Jalenak [EMAIL PROTECTED] a écrit : Call

Re: /html:form inserts blank space?

2002-07-02 Thread Daniel Jaffa
As long as the form tag is not inside of the TD your are safe. This IE rendering problem not a html issue. - Original Message - From: emmanuel.boudrant [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 12:41 PM Subject: Re: /html:form inserts

RE: multibox bug

2002-07-02 Thread Toni Nehme
Yes, I did include teh struts-bean.tld. Toni. From: Xinhong Luo, NY [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: multibox bug Date: Tue, 2 Jul 2002 12:29:41 -0400 hi, did you include the following in

RE: Ant build struts 1.1b failed

2002-07-02 Thread Bill Milbratz
I've seen this error when you have an old version of xalan.jar in your classpath in front of the latest version. Older versions of xalan didn't have the transformer factory. fwiw, I'd double check all the xalan.jars in your classpath (and on your system) to ensure you don't have old ones

RE: Ant build struts 1.1b failed

2002-07-02 Thread Yibing Li
I have fixed the problem by simply copying xalan.jar to the ant lib and have the system classpath point to that directory. Thanks, Yibing -Original Message- From: Bill Milbratz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 12:54 PM To: 'Struts Users Mailing List' Subject: RE:

RE: /html:form inserts blank space?

2002-07-02 Thread Jerry Jalenak
Never in a million years would I have thought of that. Thanks! -Original Message- From: emmanuel.boudrant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 11:42 AM To: Struts Users Mailing List Subject: Re: /html:form inserts blank space? It's a html problem, not struts,

RE: Ant build struts 1.1b failed

2002-07-02 Thread Joe Germuska
At 11:53 AM -0500 2002/07/02, Bill Milbratz wrote: I've seen this error when you have an old version of xalan.jar in your classpath in front of the latest version. Older versions of xalan didn't have the transformer factory. fwiw, I'd double check all the xalan.jars in your classpath (and on

html:link tag

2002-07-02 Thread @Basebeans.com
Subject: html:link tag From: bkrishna [EMAIL PROTECTED] === Hi All, I am trying to go back to the original window from which the new window is opened by the following link tag, but it is opening a new window all the time. Here is my code. Let me know what I am doing wrong. logic:iterate

Re: multibox bug (Help needed)

2002-07-02 Thread Toni Nehme
Does anybody know how to fix this bug? Thanks. From: Toni Nehme [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: multibox bug Date: Tue, 02 Jul 2002 11:35:24 -0400 Hi, I am using multibox in a Logic:iterator see below: logic:iterate

RE: /html:form inserts blank space?

2002-07-02 Thread Tangney, John
As a matter of course, I run HTML Tidy (see http://tidy.sourceforge.net/) on the output of the JSP (use View Source in IE). Tidy identifies this particular problem, among others. --johnt -Original Message- From: Jerry Jalenak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002

Wow - Continued...

2002-07-02 Thread wbchmura
Okay, here is answering the questions on what it was I did... Disclaimer: I am new at Struts and web apps so if there is a better way to do something I want to hear it. Really. Getting all this working at once was a pretty steep learning curve.

struts:select struts:options

2002-07-02 Thread greg1java
Does anybody have any examples of how you create a struts:select / struts:options using just a static list of options and not a collection? Thanks G. Taylor -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Why would I want to maintain my JSP's in a JSP-SRC directory?

2002-07-02 Thread wbchmura
Can anyone think of a good reason why I would want to maintain all of my JSP files in a JSP-SRC directory and have ant move them during the compile to a real JSP dir? I am leaning toward doing it for some subconcious reason that I cannot figure out Thanks! -- To unsubscribe, e-mail:

RE: struts:select struts:options

2002-07-02 Thread wbchmura
Is this what you are talking about? html:select property=campus html:option value=SimsburySimsbury/html:option html:option value=GrahamGraham/html:option html:option value=Wolf LakeWolf Lake/html:option html:option

RE: multibox bug (Help needed)

2002-07-02 Thread Mark Nichols
You haven't given us enough information to solve your problem for you. I suggest you reexamine the action that precedes this JSP to make sure that the proper bean is placed in the proper context under the proper name. If you want help I also suggest that you read the How to Ask Questions link

Form Validation

2002-07-02 Thread Kamholz, Keith (corp-staff) USX
Hey everyone, I'm having some issues with form validation. I click on a link to go to a page with a form on it. However, the validate method gets called when I go to the form page rather than when the form is submitted. Maybe I should be using a link to an action that redirects to the form

Validating Input - Winterfeldt and Husted

2002-07-02 Thread richard
The Struts documentation says Validator Resources Validating Input by David Winterfeldt and Ted Husted. Sample chapter from Java Web Development with Struts; available as a free download (PDF). Unfortunately it neglects to say

Re: [Off Topic] Iterating through Parents/children help [SOLVED]

2002-07-02 Thread @Basebeans.com
Subject: Re: [Off Topic] Iterating through Parents/children help [SOLVED] From: Matt Raible [EMAIL PROTECTED] === First page: --- c:forEach var=catalog items=${libraryCatalog} c:out value=${catalog.name}/br/ %-- Show all the items in this catalog --% c:forEach

Structs installation

2002-07-02 Thread Khan, Manuchehar A (ACF)
Has anyone configures structs on JDeveloper...I set up all directory structure and started with one index.jsp file...I am getting this error. [ERROR] MessageResourcesFactory - -MessageResourcesFactory.createFactory java.l ang.ExceptionInInitializerError: java.lang.NullPointerException

Structs installation

2002-07-02 Thread Khan, Manuchehar A (ACF)
Please disregard last message. I did not entered my jsp file correctly.. Has anyone configures structs on JDeveloper...I set up all directory structure and started with one index.jsp file...I am getting this error. [ERROR] MessageResourcesFactory - -MessageResourcesFactory.createFactory

Struts and Tomcat 3.2.3

2002-07-02 Thread Ricardo de Souza Moura
Anybody uses Struts with Tomcat 3.2.3 ? I am with problems, because when I try call the ActionServlet the first time and the struts-config.xml is parsed. I get the parsing error... Anybody know this problem? _ MSN Photos é a

RE: Form Validation

2002-07-02 Thread wbchmura
I had this problem. What you need to do is to have two actions that point to the same place... Here is an example out of my code... When I use a link to get to the form I call createNew.do... After that, the form action and everything else uses submitNew.do they go to the same place, but

RE: Form Validation

2002-07-02 Thread Kamholz, Keith (corp-staff) USX
That sounds like it will probably work. Thanks! ~ Keith http://www.buffalo.edu/~kkamholz -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 2:10 PM To: [EMAIL PROTECTED] Subject: RE: Form Validation I had this problem. What you need

RE: query string

2002-07-02 Thread Martin Cooper
Other responses have pointed out a better way to do this, but to answer the question of what you did wrong: You tried to mix an expression and a literal within the value of an attribute, which is not legal. What would have worked is this: html:link page='%= /products.do + product.getProductID()

RE: Struts and Tomcat 3.2.3

2002-07-02 Thread Clay Graham
can you be more descriptive, I had some problems at first and fixed them... clay -Original Message- From: Ricardo de Souza Moura [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 11:02 AM To: [EMAIL PROTECTED] Subject:Struts and Tomcat 3.2.3 Anybody uses Struts

RE: html:Checkbox tag in Logic:iterate does not work

2002-07-02 Thread Kamholz, Keith (corp-staff) USX
Hey Toni, Can you let me know when you figure this out? I'm trying to do something very similar. Thanks! ~ Keith http://www.buffalo.edu/~kkamholz -Original Message- From: Toni Nehme [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:10 PM To: [EMAIL PROTECTED] Subject:

logic:iterate problem with jsp:include tags

2002-07-02 Thread Jeremy Haile
I have a strange problem with the logic:iterate tag. I have used this tag numerous numerous times (not in this context however) and have never seen this type of problem. First, I will explain the symptoms: Say my page is laid out in five sections: A, B, C, D, E and a logic:iterate tag

Session Sample

2002-07-02 Thread Olikkadavath, Bobby
Is there a sample somewhere of a login sample with session management and which also handles session expiry using struts

Struts 1.1 on Weblogic

2002-07-02 Thread Anand Narayan
I am getting the following error while trying to port an app from Struts 1.0 to 1.1 Has anyone encountered anything similar. Thanks Jul 2, 2002 3:22:22 PM EDT Error HTTP [WebAppServletContext(7902680,sps-web-test,/sps-web-test)] Root cause of ServletException javax.servlet.jsp.JspException:

Re: Why would I want to maintain my JSP's in a JSP-SRC directory?

2002-07-02 Thread Adam Hardy
Because your subconcious wants to precompile them all? [EMAIL PROTECTED] wrote: Can anyone think of a good reason why I would want to maintain all of my JSP files in a JSP-SRC directory and have ant move them during the compile to a real JSP dir? I am leaning toward doing it for some

RE: Why would I want to maintain my JSP's in a JSP-SRC directory?

2002-07-02 Thread wbchmura
My subconcious thought to precompile them all they would go into a working directory or is that not true on tomcat? -Original Message- From: ahardy.struts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:51 PM To: struts-user Subject: Re: Why would I want to maintain my JSP's

Can osCache work with Struts applications?

2002-07-02 Thread Steinar Bang
Platform: 1GHz Intel PIII w/512MB RAM, RedHat linux 7.2, Sun JDK 1.3.1, tomcat 3.3, Struts 1.0 Can the osCache taglibs http://www.opensymphony.com/oscache/ be made to work with Struts 1.0 applications running in tomcat 3.3? Does anyone have experience with, or thoughts on

Re: Why would I want to maintain my JSP's in a JSP-SRC directory?

2002-07-02 Thread Adam Hardy
Never done it, sorry. [EMAIL PROTECTED] wrote: My subconcious thought to precompile them all they would go into a working directory or is that not true on tomcat? -Original Message- From: ahardy.struts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:51 PM To:

Processing an action for an index page?

2002-07-02 Thread James Turner
Maybe this is a common question, but I haven't found an obvious answer. I'd like to have a URL like http://mysite/webapp/. Now, if I just wanted to have it go to index.jsp or index.html in that directory, I'd know how to do it. However, what I'd like to do is have Struts process the request

RE: Processing an action for an index page?

2002-07-02 Thread Kevin Henrikson
I think most people just do as you guessed. Put a simple index.jsp that forwards to your initial action. That's how we do it. -kevin -Original Message- From: James Turner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:40 PM To: [EMAIL PROTECTED] Subject: Processing an

JBuilder and Struts

2002-07-02 Thread James Turner
Has anyone seen a fix yet for Struts so that you don't get this problem if you compile your JSP: index.jsp: Could not load TagExtraInfo class org.apache.struts.taglib.html.MessagesTei: Unable to load class org.apache.struts.taglib.html.MessagesTei Thanks, James -- To unsubscribe, e-mail:

RE: JBuilder and Struts

2002-07-02 Thread Dave Hodson
click on project properties/build/jsp and uncheck check JSPs for errors at build-time --- Dave Hodson MessageCast, inc. Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www.messagecast.net -Original Message- From: James Turner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02,

  1   2   >