Tiles and Java

2003-10-12 Thread Sudip Kumar Bhattacharya(HOTPOP)
Hi Everybody, I just wanted to know if I can use the parameters passed to a tile in java code? Can someone provide me some sample code which demonstrates this? To elaborate, I am passing some parameters to a tile. The tile is a JSP page and in that JSP page I have some java code as well. I would

RE: communication between control layer & factory/model

2003-10-12 Thread Navjot Singh
can't you pass a HashMap back? >-Original Message- >From: Adam Hardy [mailto:[EMAIL PROTECTED] >Sent: Saturday, October 11, 2003 6:42 PM >To: Struts Users Mailing List >Subject: communication between control layer & factory/model > > >I've been happy until now passing objects backwards and

RE: x,y coordinate location

2003-10-12 Thread Andrew Hill
Which is line 61? -Original Message- From: Das, Amar [mailto:[EMAIL PROTECTED] Sent: Monday, 13 October 2003 12:11 To: '[EMAIL PROTECTED]' Subject: x,y coordinate location Hi, The struts documentation says that "The property name of this image tag. The parameter names for the request wil

x,y coordinate location

2003-10-12 Thread Das, Amar
Hi, The struts documentation says that "The property name of this image tag. The parameter names for the request will appear as "property.x" and "property.y", the x and y representing the coordinates of the mouse click for the image. A way of retrieving these values through a form bean is to define

JSTL Question...

2003-10-12 Thread Jacob Wilson
Hi, I have a question regarding JSTL. Is there anyway to do sorting of the colums on a table using JSTL. I know there is one table tag that does sorting... But, does it sort all the values that is present in the collection or does it do just page level sorting??? Is there any other tag libr ary

RE: needs resources!?

2003-10-12 Thread hari_s
You can try this.. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Morten Sent: Sunday, October 12, 2003 6:10 AM To: [EMAIL PROTECTED] Subject: needs resources!? Hi. Running Tomcat 4.0.6 w. Struts 1.1. I have some JSP like the following: When I try to exe

RE: Newbie

2003-10-12 Thread Kunal H. Parikh
Hi Gaurav ! Perhaps you should get started by reading "Read Me First - A path for newbies" available @ http://jakarta.apache.org/struts/resources/1st.html I would also recommend StrutsStudio from http://www.exadel.com to start with as a tool and look at the struts-config file it generates. Strut

Re: How to get debug level?

2003-10-12 Thread Craig R. McClanahan
Daiju Kato wrote: Hello all, I'm migrating my application from struts 1.02 to 1.1. servlet.getDebug() is deprecated. So, I would like to get value at debug level information at context setting in server.xml. Does anyone know how to get debug level? In Struts 1.1, all debug logging is done th

Tiles - Localization possible through tiles-def?

2003-10-12 Thread Sean Dockery
I am relatively new to Tiles, so forgive me if there's a simple solution to this... I came across the following situation: tiles-defs.xml: Default.jsp: <%@ taglib uri="/struts/tiles.tld" prefix="tiles"%> I can't thi

How to get debug level?

2003-10-12 Thread Daiju Kato
Hello all, I'm migrating my application from struts 1.02 to 1.1. servlet.getDebug() is deprecated. So, I would like to get value at debug level information at context setting in server.xml. Does anyone know how to get debug level? Thanks. Daiju Kato

Re: Newbie

2003-10-12 Thread Gaurav Vaish
Hi Koni, Thanks once again. I slept downloading Struts and Tomcat on my slow connection. Will start work after my dinner. ;-) Cheers, Gaurav - Original Message - From: "Koni Roth" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Sunday, October 12

Re: html:options

2003-10-12 Thread ajay brar
hi! thanks for that. no the values are not application wide, they may change depending on the sequence of user actions. LabelValueBean sounds like an excellent idea thanks cheers ajay From: Jeff Kyser <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users

Websphere and Tibco

2003-10-12 Thread Martin Gainty
My apologies for being Way off topic Has anyone seens Websphere integration tools for Tibco? Many Thanks, Marty Gainty

Re: html:options

2003-10-12 Thread Jeff Kyser
name/value pairs from a database are handled nicely in a list of LabelValueBeans. I'd pull the code to load that list from the database out into a model class, or perhaps into a Singleton loaded by an InitServlet (at startup - if the contents weren't changing, or were at least application-wide) The

html:options

2003-10-12 Thread ajay brar
hi! i have the following scenario in my database i have an Agency table(which includes the attribute AGENCY_ID) and a Client tables(which includes a AGENCY_ID that maps to the id in the Agency table) agencies are created first through a web interface. after that you create Clients. what i want is

Re: HOW and WHERE do I call my EJB from

2003-10-12 Thread Christian Bollmeyer
Am Sonntag, 12. Oktober 2003 02:53 schrieb Kunal H. Parikh: > Hi All ! > > I am trying to start out with struts. > > I have successfully deployed an EJB in JBOSS and want to call it from > my Struts-based web app. -- CLIP! > My Questions: > = > 1. Should I call my EJB from the execute

Re: Newbie

2003-10-12 Thread Koni Roth
Try to find a tool which fits your needs at http://jakarta.apache.org/struts/resources/tools.html I've never worked with tools that generate code visually. Generated code tends be difficult and uncomfortable to maintain. Good luck. Koni Gaurav Vaish wrote: Hi Koni, Thanks for the starter.

Re: Newbie

2003-10-12 Thread Gaurav Vaish
Hi Koni, Thanks for the starter. As what struts is meant for - MVC - I was just wondering if there's a GUI available to generate JSP / Servlets (at least stubs) visually. Cheers, Gaurav - Original Message - From: "Koni Roth" <[EMAIL PROTECTED]> To: "Struts Users Mailing List

RE: [OT] Is JSTL in action update for Struts 1.1

2003-10-12 Thread Carlos Sanchez
Struts doesn't use JSTL, you can use JSTL + Struts to make your web app. JSTL in action is a great book, with a good reference. I've read mainly the fmt tags section and I liked this more in another great book "Core JSTL: Mastering the JSP Standard Tag Library" by David M. Geary > -Mensaj

needs resources!?

2003-10-12 Thread Morten
Hi. Running Tomcat 4.0.6 w. Struts 1.1. I have some JSP like the following: When I try to execute this, I get: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageCo

Re: Newbie

2003-10-12 Thread Koni Roth
Hi Gaurav Download and install Struts 1.1 and study the example. http://www.apache.org/dist/jakarta/struts/binaries/jakarta-struts-1.1.zip Additionally I recommend buying a book: http://jakarta.apache.org/struts/resources/books.html Have fun Koni Gaurav Vaish wrote: Hi, I am new to struts (rea

[OT] Is JSTL in action update for Struts 1.1

2003-10-12 Thread Marco Tedone
Hi, now that JSTL and Struts-el are the main technologies in Struts, I was wondering whether 'JSTL in Action' is updated with the JSTL version used by Struts. Did anyone read this book? Could anyone give me her impression about it? Have a nice sunday, Marco ---

Newbie

2003-10-12 Thread Gaurav Vaish
Hi, I am new to struts (read: novice). How and from where do I start? I mean... how do I go about implementing the MVC thing? Cheers, Gaurav - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: