RSS now

2001-10-03 Thread Vic Cekvenich
OK, I am arround to do an RSS. Does RSS always have one image per channel? How do I find available RSS feeds? Moreover? If I can get a stupid servlet to do a simple Read Vic Ted Husted wrote: There's a menu package here http://husted.com/about/struts/resources.htm#extensions that

Re: html:checkbox question

2001-10-03 Thread martin . cooper
Take a look at the html:multibox tag. I believe this will do what you want. -- Martin Cooper - Original Message - From: Kilmer, Erich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 12:30 PM Subject: html:checkbox question On my page I want to show checkboxes

Struts and EJBs ----alami

2001-10-03 Thread ALAMI Ahmed - BOR
Helo everyone While deploying my application containing Struts and EJBs with the deploytool, i hava a problem when compiling. The deploytool can't recorgnize the classes under struts.jar. So if someone knows how to resolve this problem or can help me to find a good article for deploying

Re: multibox and reset() ERIK

2001-10-03 Thread martin . cooper
You need to implement the reset() method, as Erik has mentioned. It was created to solve exactly the problem you are having. -- Martin Cooper - Original Message - From: Krueger, Jeff [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 11:59 AM Subject: RE: multibox

Re: Itetaring over an array list of bean values

2001-10-03 Thread martin . cooper
Try something like this: logic:iterate ...name=images id=img type=your.package.Image .. .. html:img name='%= img.getName() %' height='%= img.getHeight() %' width='%= img.getWidth() %' / /logic:iterate That is, specify the type of entries you are iterating over, and

IterateTag

2001-10-03 Thread GABOREAU Véronique
Hi everyone, I have a problem using for the first time the 'Iterate' tag : I have an ArrayList in a formBean. I want to update display information about each object (of class bcSortiRecord) contained in the array list and also that the user can modify some fields of the same object. My

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Cedric Dumoulin
Hi David, Tiles --CAN-- be nested. I sometime have error like yours when there is an exception in an inserted jsp. A common way to debug such problem is to test separately each inserted Tile. Also, this error can be throw if you try to insert Tiles inside iterator tag, or inside body

Re: Bug in Struts Template

2001-10-03 Thread Cedric Dumoulin
Hi, It is a bug from your web container, not from Templates lib. Which web Container do you use ? You can bypass this problem by adding flush=true in all your get tags (i.e. : template:get ... flush=true /) Cedric Minh Tran wrote: Hi, can someone please let me know if there is

Re: Tiles MessageTag resources

2001-10-03 Thread Cedric Dumoulin
Hi, Tiles partially provide a way to accomplish such thing : * For the 'page' attribute, you have to retrieve messageTag value yourself, and set it with a scriplet %=page%. * For put tags, you can write something like : tiles:put name=title bean:message

Re: ActionFom NoClassDefFoundError- But I don't even tell the app that the class exists

2001-10-03 Thread David A. D. Konrad
Hi Jon, im not an expert, but my suggestion is, that you write an importdirective in the very beginning of your JSP-file, like this %@ page language=java import=org.cayambe.web.action.name of your value object % regards, - Original Message - From: Jon Rose [EMAIL PROTECTED] To:

Struts (JSP+Servlet) Framework and EJB Framework!

2001-10-03 Thread Long Nguyen
Hi all! Struts framework may be focus on presentation tier. This time I need a framework for business logic tier (EJB framework). Would you like to show me some EJB framework that you know ? Regards! Long Nguyen

RE: Struts MVC Framework Vs. XSLT Tranformation for Web UI Handli ng

2001-10-03 Thread Peter Pilgrim
I agree that XSLT with large documents in intensively memory hungry. Unless you cache the content result or have a large parts of content that share redundant sub parts then it is big requirement on the final production system. The other end of the scale is XSLT with smaller syndication sites.

Re: RSS now

2001-10-03 Thread Peter Pilgrim
You find out about RSS from `http://groups.yahoo.com/group/rss-dev/files/namespace.html' This is the RSS 1.0 though -- Peter Pilgrim | |++44 (0)207-545-9923 \ \ ___ / / ... . - ( * ) --- --

Re: Itetaring over an array list of bean values - THANKYOU VERY MUCH

2001-10-03 Thread chiji nwankwo
That worked fine thank you very much. From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Itetaring over an array list of bean values Date: Wed, 3 Oct 2001 00:24:51 -0700 MIME-Version: 1.0 Received: from [64.125.133.20] by hotmail.com (3.2) with ESMTP id

Re: I NEEDED OF SOME HELP USING THE ITERATE TAG!!! - THANK YOU VERY MUCH

2001-10-03 Thread chiji nwankwo
Thanks for your response, it worked. Martin Cooper showed me another way to do it heres the example. logic:iterate ...name="images" id="img" type="your.package.Image" .. .. html:img name='%= img.getName() %' height='%= img.getHeight() %' width='%= img.getWidth() %' //logic:iterateThanks Chiji

Fw: Form Bean functionality/scope

2001-10-03 Thread Ted Husted
Here's a posting from the Struts JGuru forum http://jguru.com/forums/Struts that I thought might make for an interesting discussion. David Hardy writes: We have a form with 50 sets of 4 fields, representing an address object. The form-bean will be used to handle the fields contained in

Re: html:link forward and Tiles

2001-10-03 Thread Cedric Dumoulin
Hi Sean, In the actual Tiles implementation, you can't access directly a jsp page intended to be used by a definition, or inserted by a insert tag. If you do so (access it directly from your web browser) you will got errors, because Tiles context will not be set. To access a Tile page,

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
Hmmm... I will explore more deeply, but the three tiles I was trying to include were really just raw HTML. No real .JSP code whatsoever. Also, don't all tags that care about body content have to implement BodyTag? Like tiles:put? Thanks David - Original Message - From: Cedric Dumoulin

Best practices regarding query strings and actions

2001-10-03 Thread chiji nwankwo
Hi, Is there a recommended way tomap query strings to actions so that their values are not displayed in the address bar. eg http://www.test.com/do/getClipper?action=searchpageNumber=12 Thanks ChijiGet your FREE download of MSN Explorer at http://explorer.msn.com

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
Well, I don't think it's either of the two cases you cited. Here is what I have essentially: Ive leftout some minor niceities in the interest of space. This is not using any tags other than tiles. --A.jsp-- tiles:insert template=B.jsp tiles:put name=leftColumn value=C.jsp/ /tiles:insert

Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3)

2001-10-03 Thread tnist
Hello, I apologize for this duplicate post and its length, but I have not received much input on my first post, so I am trying again with some additional information. My environment is as follow: Struts 1.0 Tomcat 3.2.3 Apache 1.3.14 Windows 2000 mod_jk

Re: Struts and EJBs ----alami

2001-10-03 Thread Matt Raible
What appserver are you using, if it's iPlanet, try using j2eeappreg from the command line to deploy you ear, and then add struts.jar, WEB-INF/classes, earName/EJBJarFolder to your kregedit classpath. If not iPlanet - maybe the steps above will help you. There's also some ANT extensions written

RE: Please - a little help with NoSuchMethodError with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I have removed all the sub directories of the work directory under Tomcat and this has made no difference. I have set the jasper log to debug to try to see if it would shed any light on what was happening. I did the following test: 1. First I hit the standard examples provided

RE: Please - a little help with NoSuchMethodError withTomcat, Struts and Apache

2001-10-03 Thread Cameron Ingram
Todd, I just went through the install process of getting apache tomcat and struts working together. It appears that you have done every thing pretty much correct. With the exception that you don't need to modify the tomcat-apache.conf file. I believe this only needs to be done with version

Re: Using Struts with XML ?

2001-10-03 Thread Michael Baldwin
Hi Denis, I'm pretty new to struts myself, but it sounds like you could use action form as a container for your value objects and route to JSPs that understand which bits of XML are needed to assemble the final output and to do the compilation (maybe using a tag library to access your XSLT

Re: Best practices regarding query strings and actions

2001-10-03 Thread Ted Husted
You could shorten the query string somewhat, and end up with something like http://www.test.com/do/getClipperSearch?pageNumber=12 but you can't eliminate it without using a form, and sending the parameters by POST rather than GET. This is just how HTTP works, and there's not much to be done

Re: Please - a little help with NoSuchMethodError with Tomcat, Struts and Apache

2001-10-03 Thread Rick Smith
Hmmm, I just installed Tomcat 3.2.3 and added struts-examples from 1.0 and I don't have the commons*.jar files in my WEB-INF\lib. How did they get in there? All I have is struts.jar. Rick [EMAIL PROTECTED] wrote: Rick, I have removed all the sub directories of the work directory under

RE: Please - a little help with NoSuchMethodError with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I placed them there after receiving the NoSuchMethodError thinking that perhaps they would make a difference, but they did not. Thanks, Todd -Original Message- From: Rick Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 9:00 AM To: [EMAIL PROTECTED]; Todd Nist

Re: Please - a little help with NoSuchMethodError with Tomcat, Struts and Apache

2001-10-03 Thread Rick Smith
I don't know what to tell you. I would start with a clean install of Tomcat 3.2.3 somewhere other than where you have it now and add the struts-example.war to webapps and start Tomcat standalone and see what happens. I'm running on Linux but I can't imagine that would make a difference with

RE: Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3)

2001-10-03 Thread David Stewart
Title: RE: Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3) I have had similar problems. The fix that worked for me was append the JkMount /*.do ajp13 at the end of the httpd.conf file for Apache. This seemed to solve the problem I was having. Hope this helps.

Re: Unable to get Struts working with Tomcat and Apache - NoSuchM ethodError (Day 3)

2001-10-03 Thread Rick Smith
Is this only a problem running with mod_jk or does it happen standalone, too? Rick David Stewart wrote: I have had similar problems. The fix that worked for me was append the JkMount /*.do ajp13 at the end of the httpd.conf file for Apache. This seemed to solve the problem I was

freeing resources

2001-10-03 Thread Anish Acharya
Title: RE: Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3) Hello everyone. Just a quick question for you. I want to free certain resources and clear certain objects from the session scope when a user ends their respective session. Where is the best place to do

Re: freeing resources

2001-10-03 Thread Peter Alfors
I think you want to look into the HttpSessionBindingListener. Search the archives for this, I believe others have asked pretty much this same question. HTH, Pete Anish Acharya wrote: Hello everyone. Just a quick question for you. I want to free certain resources and clear certain objects from

Re: freeing resources

2001-10-03 Thread Jonathan M Crater
create a logout action. in it you can simply call session.invalidate() on the user's session. this will invalidate the session and remove all attributes bound to it. Anish Acharya wrote: Hello everyone. Just a quick question for you. I want to free certain resources and clear certain

template:get as value for an attribute

2001-10-03 Thread Eric Rizzo
I need to use the value from a template:get as the value for an attribute of another tag, as in: html:form action=template:get name='formAction' Is this possible? Do I have to resort to using a scriptlet? An example would be helpful. TIA, Eric -- Eric Rizzo, Software Engineer

Poolman question

2001-10-03 Thread Johnson, Nathaniel
Sorry to ask this question hear, but I can not find any help about poolman anywhere... Anyway, does anyone know how to use the GenericPool in PoolMan to get custom objects pooling... I can get it working with Strings, but MyObject bombs out here is the log from poolman October 3, 2001

SSL revisited again

2001-10-03 Thread Michael Mok
Hi There was a previous discussion in regards to catering for SSL redirection. These emails are listed on Ted's website (www.husted.com). I took the suggestions from these discussion and managed to implement the SSL redirection. However I realise that beans assigned to the request object

where is ActionMessages--it's not in struts.jar

2001-10-03 Thread Jonathan M Crater
i'm trying to use the ActionMessages class and the corresponding html:messages tag, but the ActionMessages class is not part of the struts1.0 jar. has it been added later? where do i find it?

html:select

2001-10-03 Thread Roumen Ganeff
Hi I am trying to display a select, which will be for informational purposes only, and thus is not connected to the form I am currently displaying. It fills in the options correctly, but the select itself demands to have property='something'. When I write it, it tries to look it up against the

Re: where is ActionMessages--it's not in struts.jar

2001-10-03 Thread David Winterfeldt
It was added after the 1.0 release and it is in the nightly builds. David --- Jonathan M Crater [EMAIL PROTECTED] wrote: i'm trying to use the ActionMessages class and the corresponding html:messages tag, but the ActionMessages class is not part of the struts1.0 jar. has it been added

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Cedric Dumoulin
I have try a lot of possibilities with Tiles, but never this one ;-). You are facing the same problem than with iterate tag, because put tag implements 'BodyTag'. It does so to be able to read its body. In fact, only tags needing to read their body implements 'BodyTag'. Unfortunately, it

Re: Best practices regarding query strings and actions

2001-10-03 Thread Mike Bridge
It's too bad there isn't a way to do that. When one of the goals is to get some dynamic pages listed in search engines (which is a pretty common request), it would be nice to be able to construct a dynamic url like this in struts:

RE: Please - a little help with NoSuchMethodError with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I took your advice and started with a clean install of Tomcat 3.2.3. I then installed struts and placed the struts*.war file in the tomcat webapps dir. I then tested it in standalone and all worked fine. So then I added back in the mod_jk and ajp13 connection to Apache and low and behold

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Eric Rizzo
Cedric Dumoulin wrote: I have try a lot of possibilities with Tiles, but never this one ;-). You are facing the same problem than with iterate tag, because put tag implements 'BodyTag'. It does so to be able to read its body. In fact, only tags needing to read their body implements

RE: Unable to get Struts working with Tomcat and Apache - NoSuchM ethodError (Day 3)

2001-10-03 Thread David Stewart
Title: RE: Unable to get Struts working with Tomcat and Apache - NoSuchM ethodError (Day 3) Rick, I didn't have the problem running in standalone using the localhost:8080 only with mod_jk. David Stewart Director of Product Development Phone: 512.305.0173 Fax: 512.305.0175 mailto:[EMAIL

Re: Best practices regarding query strings and actions

2001-10-03 Thread Ted Husted
Well, that's a different question ;-) Another approach would be to use urls like, http://www.test.com/do/getClipper/search/action%3dsearch/pageNumber%3d12/ where the part after the search is passed as the query string as extra information. I'm told this would make some proxy servers happier

Where is the most recent Struts.jar

2001-10-03 Thread Christophe Marchand
Hi all ! Where could I find the most recently full built struts.jar ? I have some troubles with message resource files... Thanks a lot === Christophe Marchand Mail prof : [EMAIL PROTECTED] Mail perso : [EMAIL PROTECTED]

messages resource-file

2001-10-03 Thread Christophe Marchand
Hi all ! I've deployed a struts-based application under JRun 3.1. I have some problems in loading messages resource-file. After having investigate, it appears that getServletConfig().getInitParameter("application") returns null. Here is my web.xml : ...servlet

RE: Bug in Struts Template

2001-10-03 Thread Minh Tran
I am using Websphere Application Server 4.0 Let met try the flush.. hopefully it will work.. thanks, Minh -Original Message- From: Cedric Dumoulin [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 1:17 AM To: [EMAIL PROTECTED] Subject: Re: Bug in Struts Template

RE: Bug in Struts Template

2001-10-03 Thread Assenza, Chris
In WebSphere you *must* use the flush attr. :) Chris Christopher Assenza Phone: 412.201.6026 Fax: 412.201.6060 Email: [EMAIL PROTECTED] ACCESSDATA Moving Your Business from Point A to Point e.SM http://www.accessdc.com/ -Original Message- From: Minh Tran [mailto:[EMAIL

Re: messages resource-file

2001-10-03 Thread Dragomir Nikolov
Hello Christophe, Check if you have put portal-messages.properties into WEB-INF/classes/com/oxiasoft.portal.presentation/ directory Or this propertie is in some other direcotry in the CLASSPATH variable. Greetings Dragomir Christophe Marchand wrote: Hi all !I've deployed a struts-based

Dynamically changing template and template source on a Master JSP page

2001-10-03 Thread Minh Tran
Has anyone ever tried to do this? I would like to have a master JSP page this looks something like this: %@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' % template:insert template='/SiteTemplate.jsp' template:put name='title' content='SCMTest' direct='true' /

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
I was afraid you were going to say that. The more I work with struts, the more I think that XMLC beats JSP for a view mechanism. Of course, it's been a years since I used XMLC and it might not work as well as I'd like it to with the struts event model, as I haven't tried it. - Original

Re: messages resource-file

2001-10-03 Thread Christophe Marchand
It does. The problem is that getServletConfig().getInitParameter(...) always return null. In JRun managment console, I can see init-parameters for my servlet, but in code, I can't retreive them... I do not understand what happens... Any Idea ? - Original Message - From:

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
Actually tiles works reasonably well this way, AS LONG AS you only need the content from a single action per page. But, I agree this sucks. - Original Message - From: Eric Rizzo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 12:24 PM Subject: Re: Tiles: using

RE: Dynamically changing template and template source on a Master JSP page

2001-10-03 Thread Thinh Doan
I had the same need and was thinking about doing this: template:insert template='%=session.userTemplate%' the sesion var will be set upon successful login. Might work. Thinh -Original Message- From: Minh Tran [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 12:46 PM To:

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
Original Message - From: Cedric Dumoulin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 12:05 PM Subject: Re: Tiles: using tileContent inside another tile I have try a lot of possibilities with Tiles, but never this one ;-). It wasn't my intent to be so

RE: messages resource-file

2001-10-03 Thread Thinh Doan
init params are application context variables. Test in jsp first as follows: %=application.getInitParameter("xyz")% T. -Original Message-From: Christophe Marchand [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 03, 2001 12:51 PMTo: [EMAIL PROTECTED]Subject: Re:

Off- topic question regarding mod_webapp.so

2001-10-03 Thread Domingo Aguilera
I want to make apache 1.3 connect to my struts app deployed in Tomcat 4.0. According to documentation , what I need is mod_webapp.so I've made some search but have not found a mod_webapp.so (EAPI) for Linux Documentation states how to build from sources such mod_webapp.so but, where are those

Cannot retrieve definition for form bean null?

2001-10-03 Thread Kilmer, Erich
In my action mapping is a form definition optional or not? In this case I have no need to define an ActionForm so I left it off the action mapping in the struts config file: forward name=adminbillertestadd path=/adminbillertestadd.do/ actionpath=/adminbillertestadd

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Eric Rizzo
David Corbin wrote: Actually tiles works reasonably well this way, AS LONG AS you only need the content from a single action per page. Can you expand on that? I haven't looked at Tiles yet, but am hoping it might meet my need. Are you saying it will let me do the equivalent of nesting

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
Here is what I've been able to do successfully: 1) Declare standardPage.jsp. 2) Declare standardForm.jsp which is based on standardPage.jsp. 3) Implement a dozed forms using standardForm.jsp, where the contents of the form are specifcied inline with the reference to standardForm.jsp. 4) Similar

email security problem - any solutions ?

2001-10-03 Thread David Bolsover
Hi all This is definitely off topic for struts - but since I am implementing a new application using the struts framework - and I know there are lots of clever struts users out there - here goes: I have an action class that automatically fires off e-mails to the traders telling them of orders

java.lang.NoClassDefFoundError -- new guy question

2001-10-03 Thread Jay . B . Febbo
Hi All - I have struts.jar in app/WEB-INF/lib and I am receiving a runtime error. Struts.jar is not in my classpath. My example app works so I'm not sure where to look.. Thanks. javax.servlet.ServletException: org/apache/struts/action/ActionForm at

Re: email security problem - any solutions ?

2001-10-03 Thread Rick Smith
this might help http://security.dstc.edu.au/projects/java/tutorials/messaging.html David Bolsover wrote: Hi all This is definitely off topic for struts - but since I am implementing a new application using the struts framework - and I know there are lots of clever struts users out there -

Re: email security problem - any solutions ?

2001-10-03 Thread Kyle Brown
Try using PGP and encoding the contents of the email. Have the traders pre-register for their private keys with you. Kyle Brown David Bolsover [EMAIL PROTECTED] on 10/03/2001 02:59:42 PM Please respond to [EMAIL PROTECTED] To: Struts User [EMAIL PROTECTED] cc: Subject: email security

RE: java.lang.NoClassDefFoundError -- new guy question

2001-10-03 Thread Paap, Keith
I ran into a java.lang.ClassNotFoundException: org.apache.struts.action.ActionFormBean problem a week or so back and was able to resolve it just by retrieving the new Digester 1.1 jar and putting it in the /WEB-INF/lib directory. Based on information passed along to me the updated digester has

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Eric Rizzo
David Corbin wrote: Here is what I've been able to do successfully: 1) Declare standardPage.jsp. 2) Declare standardForm.jsp which is based on standardPage.jsp. 3) Implement a dozed forms using standardForm.jsp, where the contents of the form are specifcied inline with the reference to

beginner's question

2001-10-03 Thread Jean Huang
Title: beginner's question I just installed tomcat 3.2.3, and it runs OK. But once I copy struts-example.war into the directory /webapps, and restart tomcat, it failed to start. The start window vanishes without any information. What should I do now?

Re: Best practices regarding query strings and actions

2001-10-03 Thread Mike Bridge
I gave that a shot just now on the struts build from yesterday, with: http://www.test.com:8080/mywebapp/do/getClipper/test and I get the same error that is described in the url http://www.mail-archive.com/struts-user@jakarta.apache.org/msg12716.html: Error: 400 Location:

OS / Browser tag?

2001-10-03 Thread dhay
Hi everyone. Just wondering if anyone has written a tag to do something specific to OS or Browser? I'm probably going to write my own if no-one else has already done it! Cheers, Dave

How to customize the way Validation Error is display

2001-10-03 Thread Minh Tran
Does anyone know how to control and customize the way the validation error is display when when fills out incorrect form information? Thanks, Minh

Re: Best practices regarding query strings and actions

2001-10-03 Thread Ted Husted
I never understood why it would work in the first place. I'm sure the ActionServlet is getting the extra information, but it's trying to match the URI against one of the mappings defined in the config file. So I think we would have to change the way the controller looks up the URI's, and deal

RE: Dynamically changing template and template source on a Master JSP page

2001-10-03 Thread Minh Tran
Hi Thinh.. yeah i've tried something like that.. using getAttribute and setAttribute from the request object.. it seems to work.. but what I am most concerned about is the ability for Struts to be able to function in terms of form validation and prefill... if this happens.. since the Master jsp

Re: OS / Browser tag?

2001-10-03 Thread dhay
Sorry, maybe that wasn't clear! I am basically looking for an IF tag which utilises the OS and/or the browser that the client is running on. eg IF Unix and Netscape THEN would be logic:IF_os_browser os=unix browser=Netscape //do something /logic:IF_os_browser and the tag

RE: beginner's question

2001-10-03 Thread Bhamani, Nizar
Title: beginner's question Go to DOS prompt and run start from that directory. You should be able to see the error. This will give you some idea to get it fixed. -Original Message-From: Jean Huang [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 03, 2001 4:01 PMTo: [EMAIL

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread David Corbin
A little. Can you give a simple example? I'm not sure what your definitions of is based on and specified 'inline with reference to... are, and I think some code might clarify them for me. I've left out all the directives for the taglibs, but each file needs the tiles prefix to be defined

Re: Tiles: using tileContent inside another tile

2001-10-03 Thread Eric Rizzo
David Corbin wrote: [snip] --start standardList.jsp tiles:insert template=standardPage.jsp tiles:put name=titletiles:getAsString name=title//tiles:put tiles:put name=body table border=6 background=silver tiles:getAsString name=listBody/

Struts DB example

2001-10-03 Thread Bill G
I'm looking for a working Struts DB example that demonstrates the following; Four screens - insert a record, update a record, delete a record and select records From one table with 3 columns ID, FirstName, LastName. I've looked around various places and cannot find this. Thanks!

FormTag.lookup problem - getting VERY frustrated!

2001-10-03 Thread Jeff Canna
I'm hoping that someone can help me out, I'm running out of theories...I've included the stack trace and, what I think is relevant snippets from the files involved. If someone could even suggest a way to debug this I'd appreciate it Below is part of the exceptions stack trace:

Re: Cannot retrieve definition for form bean null?

2001-10-03 Thread rankinn
Defining a form in your action is definately optional, not sure why you would get that error message - though I have had errors reporting null beans that were acctually masking a different problem. Sorry I couldn't be more help, good luck. Nicola Rankin

collection attribute in html:options tag

2001-10-03 Thread Fang, Frank
Title: collection attribute in html:options tag Does any one know or have some sample code on how to use collection attribute in html:options tag, I tried two ways, but It doesn't work. one of them is defining a arraylist in form bea, but I don't know how to referece it, another is putting an

RE: collection attribute in html:options tag

2001-10-03 Thread Brett Porter
Title: RE: collection attribute in html:options tag Have a look at the struts examples webapps (there is a taglib one, as well as struts-example itself). - Brett -Original Message- From: Fang, Frank [mailto:[EMAIL PROTECTED]] Sent: Thursday, 4 October 2001 8:39 AM To: '[EMAIL

Using the Indexed attribute.

2001-10-03 Thread Matt Keveney
Which Struts release contains support for the"indexed" attribute (used in various HTML tags). I discovered to my chagrin that this isn't supported in the 1.0 download. Is there some clever way to achieve the same thing in 1.0? I can properly initialized my fields using the 'iterate' tag,

Re: How to customize the way Validation Error is display

2001-10-03 Thread Adam Grohs
Have a look at an implimentation description and sample that I've put together at www.leanonme.org. Hope this helps. Thanks, Adam S. Grohs [EMAIL PROTECTED] - Original Message - From: Minh Tran [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 3:40 PM Subject:

Re: Struts DB example

2001-10-03 Thread Francisco Hernandez
check out the struts example, its very simple - Original Message - From: Bill G [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 3:19 PM Subject: Struts DB example I'm looking for a working Struts DB example that demonstrates the following; Four screens -

RE: Struts DB example

2001-10-03 Thread Bill G
Francisco, That is not a database example. Thanks though. -Original Message- From: Francisco Hernandez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 4:43 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Struts DB example check out the struts example, its very

RE: Struts DB example

2001-10-03 Thread Brett Porter
Title: RE: Struts DB example have a closer look. -Original Message- From: Bill G [mailto:[EMAIL PROTECTED]] Sent: Thursday, 4 October 2001 9:50 AM To: [EMAIL PROTECTED] Subject: RE: Struts DB example Francisco, That is not a database example. Thanks though. -Original

weblogic 6.0 and STRUTS problem

2001-10-03 Thread BinhMinh Nguyen
Hi I have the below error when I copy the struts-upload.war to webLogic6.0sp1. It just cannot load the app. Can you tell me why? Thanks Binh t: 'action' java.lang.NoSuchMethodError at org.apache.commons.digester.Digester.parse(Digester.java:859) at

STRUT 1.1 beta and release versions

2001-10-03 Thread BinhMinh Nguyen
Do you have any idea when struts 1.1 beta is out and normally how long after beta version, the release version is out. by the way, I have big time problem problem upgrading strut1.0 to overnight release version. please give some advises Thank you very much Binh

Re: Using the Indexed attribute.

2001-10-03 Thread Matt Keveney
Is there some clever way to achieve the same thing in 1.0? I can properly initialized my fields using the 'iterate' tag, but I want the parameter names to come back as field01, field02, ... or some-such. All I figured out a solution myself... though it may not conform with the preferred

RE: Struts DB example

2001-10-03 Thread Bill G
Title: RE: Struts DB example Bret, Sorry, I should be more specific. The sample app that you and Franciscorefer to does not illustrate connecting to a real RDMS nor does not illustrateconnection pooling, where the connection logic goes etc... That's the kind of stuff I'm interested

RE: Struts DB example

2001-10-03 Thread Brett Porter
Title: RE: Struts DB example The struts example struts-config.xml file has an example of how to create a connection pool. However, from what I now understand that is deprecated. The struts-documentation webapp does have details about it though if you are interested. I thought there was a

Re: Struts DB example

2001-10-03 Thread Francisco Hernandez
Title: RE: Struts DB example check out http://java.sun.com/j2ee/blueprints/design_patterns/data_access_object/index.html lots of people like use a DAO as illustrated in that page. for larger source check out this DAO too:

Re: Using the Indexed attribute.

2001-10-03 Thread Eric Mickelson
I work with a guy who has this same problem. Maybe he can help you :-) On Wednesday, October 3, 2001, at 03:50 PM, Matt Keveney wrote: Which Struts release contains support for the "indexed" attribute (used in various HTML tags).  I discovered to my chagrin that this isn't supported in the 1.0

Looking up defined mappings

2001-10-03 Thread Mark Derricutt
Hi, I'm quite new to struts so am probably missing something here, I have a JSPTag that wants to find what mappings have been configured. I was hoping I could just access the mappings member of ActionServlet but its protected, but I extended it into my own one providing a findMappings() method

RE: Looking up defined mappings

2001-10-03 Thread Mark Derricutt
Flag tis post, I just did: req.setAttribute(mapping, mapping); in the start of my Action code, then just pulled it out in my tag with ActionMapping mapping = (ActionMapping) pageContext.getRequest().getAttribute(mapping); String[] appMappings = mapping.getMappings().findMappings();

RE: Struts DB example

2001-10-03 Thread Bill G
Title: RE: Struts DB example Hi Bret/Francisco, I appreciate the info, but that does not help me. PLEASE READ - I was hoping that someone out there could point me to a REAL working Struts/Database example. For me,as long as the sample works with a modernRDBMS with JDBC is sufficient.

RE: how to use a radio button

2001-10-03 Thread Sunanda_Veeraganti
i need 2 radio buttons with yes no if one is clicked other should be disabled and vice versa ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to