ActionServlet - thread safe instance variables

2002-03-25 Thread Karim D. Saloojee
Hi As a newbie to Struts (coming from a Turbine background) I was hoping someone would clarify the design issues with having instance variables in the controller servlet. Does this not pose thread safety issues? If so, how does one deal with them? Turbine took the easy way out and declared only

Struts plugin for Dreamweaver 4.0

2002-03-25 Thread Andi S. Giri
Hello We are implementing Struts on a project, and would like to use the Struts plugin for Dreamweaver 4.0. I could not locate this on macromedia.com Please let me know where I can download this. Andi S. Giri Softsquare winmail.dat Description: application/ms-tnef -- To unsubscribe, e-mail:

Re: Kanji localization

2002-03-25 Thread Daigo Moriwaki
Hi Nav, 2002/03/20 Wed AM 04:10 Struts Newsgroup (@Basebeans.com) <[EMAIL PROTECTED]> worote: > How do I get Kanji characters work under localization? I made a new > Japaneese 'application.resource' file. Even though I made this file, i keep > getting 'missing key blah'. Any ideas? Am I mis

RE: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-03-25 Thread Annie Chang
Hi, Thanks, The error only occurs when I use ApplicationDispatcher[]: Servlet.service() for servlet debugjsp threw exception javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAG

Re: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-03-25 Thread SharmaA96
It means that u should have your application resource ( MESSAGE file ) under the package org.apache.struts.action and the fully qualified class name should be mapped in to the web.xml file the sample code of web.xml is as : Cocoon2 Demo Demo application for Cocoon2 + Cocoon2 Coc

Re: Nested tag tutorial

2002-03-25 Thread @Basebeans.com
Subject: Re: Nested tag tutorial From: "Doug" <[EMAIL PROTECTED]> === I think you'll need struts/index.html, otherwise you'll get a 403. doug "P. G." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > The tutorial may be found at: www.keyboardmonkey.com/struts > > I also had probl

Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-03-25 Thread Annie Chang
Hi, I want to use chechboxes in an iterate as the follows, but there is an error, what's the matter? Error: ApplicationDispatcher[]: Servlet.service() for servlet debugjsp threw exception javax.servlet.ServletException: Cannot find message resources under

Re: OptionsTag bug using nested property?

2002-03-25 Thread Arron Bates
Your work-around is that much of a work-around, as it was the only solution up until a couple of weeks ago. If you're running 1.1beta or something near it, you'll have the optionsCollection tag. It's a more natural fit to the system. Use the name attribute, to select the bean, the property att

OptionsTag bug using nested property?

2002-03-25 Thread Vladimir Levin
I seem to have run into a bug with the struts OptionsTag custom tag when using a nested property. I am including the problem and my workaround, but if someone here has any advice or help, I'd love to have a cleaner solution than my workaround, so if someone here could help me out, it would be appr

Re: when does STRUTS call reset() on form beans ?

2002-03-25 Thread Ted Husted
In 1.0, reset is called just before the servlet autopopulates the bean from the request. In 1.1 beta, it is also called when an html:form tag instantiates the bean (not finding one in the request). If an Action forwards to another action-mapping, reset is called again since the controller will a

Re: Single Servlet Controller Model

2002-03-25 Thread Ted Husted
Vic is right. In a multi-threaded environment there is no performance benefit to having multiple servlets that do the same thing. The threads are lighter than loading another servlet, and make the best use of the available resources. It is important to remember that the requests are *not* queued t

html:options Iterator Creation error -

2002-03-25 Thread Sunder
Hi, I am trying to implement the html:options tag in one of our applications, I have a form bean with the following attributes, private Collection securityOptions = null; private String security = "Default"; In my action class, I populate the collection with PersonalForm perf

file upload utility and virus

2002-03-25 Thread Tng Chee Hiong
Hi. I am using struts file upload utility to upload file and to read the file content. I call the destroy method after the handling of file upload. Is there any chance that I can catch a virus? Also, where does the file get uploaded to (that is what is the default path used)? Thanks.

Re: Tomcat Console Messages - Ryan Norman

2002-03-25 Thread Vic Cekvenich
That is a TomCat question (you can ask at news.basebeans.com / Tomcat.) The messages are sent in both cases, as a service they go to events logs in Windows. They are debug tracking messages that you can turn of. They were nice during development. (In case you take anything to production, you sho

Re: Communication between JSPs

2002-03-25 Thread Vic Cekvenich
One way: public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { NameZoomBean frm = (NameZoomBean) form; if (frm == null) frm = new NameZoomBean(); St

Re: Single Servlet Controller Model

2002-03-25 Thread @Basebeans.com
Subject: Re: Single Servlet Controller Model From: Vic Cekvenich <[EMAIL PROTECTED]> === There are no or very little performance limitations to Struts. Most of the time it is DB access (especially if you use JDO or O/R or EJB, native SQL is fast). Do not worry about performance of Struts or th

RE: Communication between JSPs

2002-03-25 Thread Joseph Barefoot
Hi Bhashkar, You don't "have to" replace the reference if you don't want, but if you want everything to run through the Struts controller, you should. There are a couple of ways pass URL parameters from jsp1 to jsp2 via Struts, but here's how I do it: In jsp1, replace the URL reference to jsp2

RE: Communication between JSPs

2002-03-25 Thread Joseph Barefoot
Oops, forgot to mention something, so I'll reproduce it as it should have been written: In jsp1, replace the URL reference to jsp2 with a URL reference to an Action class's mapped URL (as defined in the actionmapping in struts-config.xml) instead. The Action class retrieves the parameter values

Tomcat Console Messages - Ryan Norman

2002-03-25 Thread Ryan Norman
Hi, I am new to struts. I installed struts 1.0.2. I copied the struts-example.war under the webapps directory and restarted tomcat. When I restarted tomcat as a service, I did not notice anything. When I started tomcat as a console application, I saw lot of messages. Can somebody explain me wh

Cannot preload ActionServlet in JRun3.1using Struts1.1-b1

2002-03-25 Thread Ronel Sumibcay
This may be a problem in JRun's web app class loading implementation or in the commons-logging implementation. The exception occurs if you try to preload the ActionServlet. But if the ActionServlet is initialized from a request it is loaded just fine. It looks like the org.apache.commons.logging.L

Communication between JSPs

2002-03-25 Thread Bhaskar Gopalan
Hi, I'm new to struts and have this silly question: My code does not use struts currently. From JSP1, I call another JSP2 using the "action" and I also pass parameters. Now, I want to incorporate struts in my code. So, do I have to replace the reference to jsp2 by action class? If so, how do i pa

Hi - Ryan Norman

2002-03-25 Thread Ryan Norman
Hi, I am Ryan Norman. I am new to this Struts mailing list. Thanks Ryan Norman

Re: Single Servlet Controller Model

2002-03-25 Thread K J
Is there anyway around it with the current release? Thaks. --- Sandeep Takhar <[EMAIL PROTECTED]> wrote: > I believe the new release (1.1 beta 1) addresses > this? > --- K J <[EMAIL PROTECTED]> wrote: > > One of the things I don't like about Struts is its > > single servlet "gateway" model. Wou

Re: dynamic select box

2002-03-25 Thread Vic Cekvenich
>From the sample DB app: in JSP: In Options helper: /** * Return an unsynchronized collection of options. */ public Collection getContactTypeOptions() { ArrayList v = new ArrayList(); // no need to synchronize try { // Retrieve

Re: Single Servlet Controller Model

2002-03-25 Thread Sandeep Takhar
I believe the new release (1.1 beta 1) addresses this? --- K J <[EMAIL PROTECTED]> wrote: > One of the things I don't like about Struts is its > single servlet "gateway" model. Would it be possible > to extend the ActionServlet? Has anyone done this? > > In general, do you think the single servl

RE: dynamic select box

2002-03-25 Thread Joseph Barefoot
This is how we do it: The ArrayList (in yourActionForm bean) should contain a list of Objects (call it a KeyValuePair bean or something) which contain "getOptionValue" and "getOptionLabel" methods (method names match the values in the JSP tag). Struts will look for these method

RE: what is .war file

2002-03-25 Thread Tim Sawyer
http://java.sun.com/webservices/docs/ea2/tutorial/doc/WebApp3.html I recommend ant (http://jakarta.apache.org/ant) for creating one. Tim. -Original Message- From: divyakant verma [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 2:22 PM To: [EMAIL PROTECTED] Subject: what is .war

Re: What the best approach to access RDB within struts (no EJB) ?

2002-03-25 Thread @Basebeans.com
Subject: Re: What the best approach to access RDB within struts (no EJB) 1 2 3 4 5 6 7 8 9 From: Vic Cekvenich <[EMAIL PROTECTED]> === www.strutsplus.com/downloads.jsp has a sample db access w/Struts. DB forms looks limited. Patrick Schilling wrote: > I have not used it personally, but this l

dynamic select box

2002-03-25 Thread Jose Casas
Hi, I'm new to struts and was wondering if anybody knew how create a select box with struts. I have a bean which is returning an ArrayList. I want to use this ArrayList as the options in the select tag. What code do I need in my jsp to create this select box? Can somebody please help me? Jo

RE: What the best approach to access RDB within struts (no EJB) ?

2002-03-25 Thread Leonardo Maciel
DAO = Data Access Object http://java.sun.com/blueprints/patterns/j2ee_patterns/data_access_object/ Leo -Original Message- From: Dan Cancro [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 5:26 PM To: 'Struts Users Mailing List' Subject: RE: What the best approach to access RDB wi

Struts and Client Side JavaScript Design Question

2002-03-25 Thread Jeff_Mychasiw
Greetings. We are in the early planning stages of a rather large Java/jsp application that if I have my way will use struts. There will be a requirement for some "convenience" features that will need to be in javascript. I understand the pros's and con's of javascript and this will for

RE: What the best approach to access RDB within struts (no EJB) ?

2002-03-25 Thread Dan Cancro
Here are some O/R tools I've seen mentioned on the mailing list and other places. I don't know which ones are the best. *Apache:Torque http://jakarta.apache.org/turbine/torque/index.html *ChiMu:FreeForm http://www.chimu.com/projects/form/ *Exolab.org:Castor http://castor.exolab.org/ *JCorporate:

email format

2002-03-25 Thread Yu, Yanhui
Hi, I am sending my own opinion on the new attachment format on the emails. I hope I am not asking for something that no other people likes. I liked the old format where all the posted messages are listed in the preview of the email, so I can see all the posted messages with titles at a glan

RE: What the best approach to access RDB within struts (no EJB) ?

2002-03-25 Thread Patrick Schilling
I have not used it personally, but this looks interesting. Anyone used it? http://dbforms.org/ One big negative for me is it only supports one database per web application, otherwise it looks pretty cool. -Pat -Original Message- From: Annie Chang [mailto:[EMAIL PROTECTED]]

RE: getting validation errors on initial display of a form

2002-03-25 Thread Dave Newton
Don't go to the action page (the .do), go to the .jsp page! The action is just the target of the form, not the page you start from. (At least that's what I've figured out?!) Dick Starr said: > My problem is that when I execute my form via > http://localhost:8080/starrd/app/names.do I get valida

What the best approach to access RDB within struts (no EJB) ?

2002-03-25 Thread Annie Chang
I'm searching for the best approach to access relational database within struts. Could you give me some suggestion? Thanks in adv. I do not want to use EJB. Any free framework, tools, whatever can help me? What about DAO and/or JDO? What's DAO? Where can I get a comprehensive example?

RE: Struts/Tomcat problem

2002-03-25 Thread Lawlor, Frank
> > message Servlet ActionServlet is currently unavailable > > description The requested service (Servlet ActionServlet is currently > unavailable) is not currently available > > Does anyone have any clues to why this happens? Most often for me this is because there was a problem during the in

RE: Multi Indexed & Nested properties samples?

2002-03-25 Thread Annie Chang
Thank you very much Peter. I have solved the issue. Your suggestion is another choice. I'm trying to find a approach to access database. I'm interested in DAO you mentioned. What's DAO and can you give me a example? Thanks in advance. Annie -Original Message-

what is .war file

2002-03-25 Thread divyakant verma
what is a .war file & what is its use. How can we create a .war file __ Do You Yahoo!? Yahoo! Movies - coverage of the 74th Academy Awards® http://movies.yahoo.com/ -- To unsubscribe, e-mail: For additional commands, e-

Which action to go back?

2002-03-25 Thread sagsag
Let's say I have application that let's me go5 pages deep from some starting point (every 1 has own menu pointing to subpages). And most of these pages have link "Back". Everything would be very easy if Back on some page "Deep" ALWAYS points topage "SomeCaller". The problem is that page "Deep"

RE: why send receipt requests in mail list emails?

2002-03-25 Thread Anthony Martin
Oh-oh, here's my valid reason. You are asking why anyone would turn on return receipts as their default setting. Me, I rarely post to lists compared to the internal office email I send. People in the office rarely reply to my highly detailed boring emails, so I have the receipt turned on so I k

RE: why send receipt requests in mail list emails?

2002-03-25 Thread Joseph Barefoot
LOL. Sure, Anthony, you're right, and I'm certainly not pointing fingers or condemning someone for accidently sending a receipt request in an email! However, I have noticed that some people have this as their default setting, as all their emails contain these requests. This, quite frankly, bugs

error executing the struts example with Tomcat 3.3a

2002-03-25 Thread Gilson Nascimento D Elrei
Hello All I tried to use JRUN to running my struts application and I didn't get success, so i have desisted. Now I have installed Tomcat 3.3a and started running the Struts-Example (.war file). Ok, tomcat seems that executing normally (servlets and jsp tomcat examples running ok!), but when i try

RE: Object Mapping w/ Struts?

2002-03-25 Thread Joseph Barefoot
I, for one, would recommend an EJB solution w/ JBoss if you're going for a full object model of the database. There are a couple of ways of migrating to EJB, but any of them are going to involve some work and learning a little about EJB containers and JNDI. There is a learning curve, but I thou

RE: why send receipt requests in mail list emails?

2002-03-25 Thread Anthony Martin
Good point. There is no reason to ask for a receipt request when sending email to mail lists. Looks like I'm guilty of that last night. I completely understand your dilemma. All those extra windows can get tiresome. I feel the same way about people who post in formats other than plain text, t

Single Servlet Controller Model

2002-03-25 Thread K J
One of the things I don't like about Struts is its single servlet "gateway" model. Would it be possible to extend the ActionServlet? Has anyone done this? In general, do you think the single servlet model could be a performance issues for a very active web application? And if so, how would you a

RE: Pass parameters between Action classes

2002-03-25 Thread Enrique Rodriguez
Hi Jim, Thank you very much, you are completely true. The example now works I was thinking that getParameter and getAttribute was the same. I thought the diference between theirs was that getParameter get a String and getAttribute an Object. ;-) I hope this could help another newbies like m

why send receipt requests in mail list emails?

2002-03-25 Thread Joseph Barefoot
Okay, this is a bit off-topic, but as it involves core mail-list netiquette, I've found it necessary to post something, so here goes: There is absolutely NO reason to issue a receipt request when you send an email to mail lists, as it serves no function whatsoever except to annoy certain people (

Re: Pass parameters between Action classes

2002-03-25 Thread Jim Crossley
Hi Enrigue. "Enrique Rodriguez" <[EMAIL PROTECTED]> writes: > When can i get the paremeters from it??? Only When I'm in a JSP? > > I Attach my example. Please take a look. You seem to be confusing "attributes" with "parameters". They're not the same thing. You're calling setAttribute in Acti

RE: Tiles and Cactus

2002-03-25 Thread Holman, Cal
Cedric>> I started Tomcat and then the tests same results - when done I could no longer navigate the site manually - same error Cactus is generating. I restarted could get in and navigate, no problem, ran the tests and broke it. I think I have isolated the issue - I ran HTTPTest cases first and

(further ?) Re: When does STRUTS call reset() on form beans ?

2002-03-25 Thread Dave Newton
Maris Orbidans asked: > Does it depend on scope of a session bean ? On a related note, I have a simple form with two text fields, a regular ol' form bean, and an action. If the action doesn't validate, it goes back to the form, and the form values are gone. Did I miss something? I thought that

[Fwd: [MVC-Programmers@basebeans.com] [Struts Tips] #2 - Use DispatchAction to organize related operations]

2002-03-25 Thread Vic Cekvenich
To get these articles 2 times a week, the only place you can get these articles is at www.basebeans.com/forums.jsp (and sign up at the bottom link) for the BaseBeans MVC mail list. (also daily Java News feed at www.strutsplus.com/news.jsp) hth, Vic Original Message Subject:

Re: Struts 1.1 beta Sample DB app. = FREE T-Shirt - Struts Menu p roblem

2002-03-25 Thread @Basebeans.com
Subject: Re: Struts 1.1 beta Sample DB app. = FREE T-Shirt - Struts Menu p roblem From: Vic Cekvenich <[EMAIL PROTECTED]> === I just wanted to clear up that my appp and menu demo works fine, it was Jon's another example he had questions. Again the sample demo app does 1.1, Curd, tiles, etc.

Re: Struts 1.1 beta Sample DB app. = FREE T-Shirt - Struts Menu p roblem

2002-03-25 Thread Vic Cekvenich
I just wanted to clear up that my appp and menu demo works fine, it was Jon's another example he had questions. Again the sample demo app does 1.1, Curd, tiles, etc. from my training class. www.basebeans.com/downloads.jsp. Vic Jon.Ridgway wrote: > Hi Vic, > > Many thanks for the respons

RE: Tiles and Cactus

2002-03-25 Thread Holman, Cal
Cedric>> These are the messages from the startup of Tomcat initializing the application. I initialize Log4J and some init parameters in my init routine and then the validator plug in is being initialized. The tests are submitted after successful launch of Tomcat - I am using Ant 1.4 and a Cactu

Error: Cannot find message resources

2002-03-25 Thread Gilson Nascimento D Elrei
I'm trying to running a simple example JSP/Servlet application on JRUN, but i'm receiving this error message below >> javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE I have checked the ARCHIVE message and looking for on search mechanisms ab

RE: getting validation errors on initial display of a form

2002-03-25 Thread Dimitar Stavrakov
In the struts-config.xml try setting validate="false" for the initial action names and then set it to true for the submit action on the form of the names.jsp . This will disable the validate() call when the form is first initialized : -Original Message- From: Dick St

Re: Tiles and Cactus

2002-03-25 Thread Cedric Dumoulin
Checking the errors trace, it appear that struts.action.RequestProcessor has no or has loose its reference to the servlet. This reference is initialized by a call to init(...) which is done when servlet is initialized. Maybe cactus calls Struts before its complete initialization ? Cedri

Re: Extension issues

2002-03-25 Thread Cedric Dumoulin
Hello, It is something that Struts have to improve. The new "plugin" capabilities is the first step, but doesn't solve everything yet. What you can do is to provide your own ActionServlet implementation combining features from the extensions you need. Extend one of the actionServlet (th

Re: How to use role in struts - tiles

2002-03-25 Thread Cedric Dumoulin
Hello, If memory serve, there is a bug when using the role attribute in the put tag defined in an xml file. In other words, it doesn't work ;-( . I increase the priority for this bug. Sorry for any inconvenient. Cedric Reynaldo Timonera wrote: > Hi, > > We're using tiles in our p

Re: Newbie question about Tiles suitability.

2002-03-25 Thread Cedric Dumoulin
Hello, Tiles can certainly help you in designing such site. It is one of the goals that I had in mind when I have developed Tiles. The Tiles new feature examples can be a starting point for such development. Check "my Portal" and "my Menu". Cedric Alex Colic wrote: > Hi, > > I just

Re: Tiles question: Is it possible to insert a ComponentDefinition into a Tile context dynamically?

2002-03-25 Thread Cedric Dumoulin
Hello, If you are in a tile controller, you don't have to create a new ComponentDefinition, you can set the attributes of the current tiles (because you are in the controller). To add / overload an attribute in the context, do something like : String attribute = (String)context.getAttrib

when does STRUTS call reset() on form beans ?

2002-03-25 Thread Maris Orbidans
Does it depend on scope of a session bean ? thanx in advance Maris Orbidans -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Help with: Cannot find bean org.apache.struts.taglib.html.BEAN in scope null

2002-03-25 Thread Dave J Dandeneau
What does the jsp look like? dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 9:56 AM To: [EMAIL PROTECTED] Subject: RE: Help with: Cannot find bean org.apache.struts.taglib.html.BEAN in scope null Annie, The struts.jar is already

RE: Help with: Cannot find bean org.apache.struts.taglib.html.BEAN in scope null

2002-03-25 Thread mike . witt
Annie, The struts.jar is already in \WEB-INF\lib. I have other actions which proceed this one that work just fine. I even have other "html" tags in this jsp which seem to work ok. For example, I have a which is accepted. But as soon as I put in the with the property attribute to refer to on

RE: Help with: Cannot find bean org.apache.struts.taglib.html.BEA N in scope null

2002-03-25 Thread mike . witt
Hi Scott, Part of the purpose of my action is to populate the form with some information from the database, then let the user fill in some more information and run a followup action to handle the user input. I am using the same action class in both cases, but with the parameter set differently t

RE: Application scope beans

2002-03-25 Thread Juan Alvarado \(Struts List\)
John: The following snipet of code should handle what you need: Object someObject = (Object)servlet.getServletContext().getAttribute("nameOfObjectHandleInApplic ation"); The reference to Object above would of course be replaced with the class name of the object you are trying to access. Also, t

Re: Multi Indexed & Nested properties samples?

2002-03-25 Thread Peter Pilgrim
Annie MUTATOR You will need the mutator method obviously `public void setName( String )' PREFERS INTERFACES Instead of using java.util.Vector, prefer to using an Java Collection interface java.util.List. public List getSubscriptionList() { List list = new ArrayList(); // fill her up

Tiles and Cactus

2002-03-25 Thread Holman, Cal
I am trying to test my site using Cactus and HTTPUnit and am having problems. The site works fine when Tomcat is started and a human navigates the site. In other words the /test/do/home/home resolves and the template definition for tiles is rendered. But under Cactus I get 500 errors for any re

RE: reg Forward action

2002-03-25 Thread Kumari, Ramana
Hi Mikael, Great. That worked ! Thank you very much. Ramana -Original Message- From: Mikael Eriksson [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 23, 2002 2:26 PM To: Struts Users Mailing List Subject: Re: reg Forward action Hi Since the perform method should take an Actio

Logical OR, AND etc....in Struts

2002-03-25 Thread Tanmay Ghorai
Hi All, Can you please let me know how to write Logical OR, AND etc in the Jsp pages using struts Logic template. Thanks and Regds Tanmay -- To unsubscribe, e-mail: For additional commands, e-mail:

Struts/Tomcat problem

2002-03-25 Thread Ida Dørum
I get the following error when I'm trying to view a page in my application: [EMAIL PROTECTED]: Apache Tomcat/4.0.2 - HTTP Status 503 - Servlet ActionServlet is currently unavailable type Status report message Ser

Newbie question about Tiles suitability.

2002-03-25 Thread Alex Colic
Hi, I just got told I have to create a web site similar to myYahoo where the user can customize what they want to view on the screen. You know the type, where you can pick and choose from a number of categories and a page is custom created for you. Is this a job for the Tiles framework? Thanks

Re: Multiply Questions Forms to Populate a Registration Database Best course.

2002-03-25 Thread Chuck Amadi
Hi there, I have a work project whereby i have Volunteer Registration Form . Thus each question of the registration form consists of numerous html checkboxes, radio buttons ,textarea and text-entry fields. Each question will populate table within my PostgreSql DB.To enable Sql Programming que

Save/Update data to XML-File

2002-03-25 Thread SSteib
Hi, in the struts-example the user data can be read with the help of a hashtable an a struts digester. But whats about updating the data in the xml-file after user changes? The digester can't do. Is there any possibility with struts to update the hastable data in the xml-file comfortable. Or is t

Re: error # 302 on compilation

2002-03-25 Thread Ben Peter
Hi, if you get these two working together, let me know ;-) I got so frustrated over this that I eventually skipped to neatbeans (which I like much better now). JBuilder looks at the class spec version of compiled classes, and complains if it does not match (which for me results in the message

RE: error # 302 on compilation

2002-03-25 Thread srinivas
thanks ben, i am using jdk1.4.0 with jbuilder5. regards, srinivas. -Original Message- From: Ben Peter [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 12:42 PM To: Struts Users Mailing List Subject: Re: error # 302 on compilation Hi, what compiler are you using? This sounds li

Re: How do I use Tiles w/ iFrame

2002-03-25 Thread Cedric Dumoulin
See intermixed. Cedric "Struts Newsgroup (@Basebeans.com)" wrote: > Subject: How do I use Tiles w/ iFrame > From: "Matt Raible" <[EMAIL PROTECTED]> > === > Simple Scenario: > - > > I want to define a template (layout.jsp) that contains an ifra

Re: error # 302 on compilation

2002-03-25 Thread Ben Peter
Hi, what compiler are you using? This sounds like a jdk1.4-related issue (I had these problems with JBuilder5). The class specs have changed from 1.3.1 to 1.4, and some compilers won't allow to compile against classes that were compiled to other versions of the class spec than the current targ

RE: Pass parameters between Action classes

2002-03-25 Thread jmcabello
Hi Enrique: We´re trying to something like you and we´re using sessions. What are whe doing?: 1.- From one jsp (jspOne), submit for "aid" to find a custoner. You need the customer Id, but you only know about the name of your customer. This is very usually in ERP systems: "the finders". 2.- The

RE: Keep a session in different war

2002-03-25 Thread Chetan Khimjee
Sorry wrong email, apologies.. -Original Message- From: Laurent Goncalves [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 6:46 PM To: [EMAIL PROTECTED] Subject: Keep a session in different war Hi, I'm currently using Weblogic 5.1 SP8 with struts 1.0.2 and when I use an a