RE: Keep a session in different war

2002-03-24 Thread Chetan Khimjee
Alex Seen this dudes name on a mailing list, any relation to u... -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 w

RE: java.lang.VerifyError

2002-03-24 Thread srinivas
no i have them in packages, what i have noticed is that only jsp's which have taglibs throw this error and when i roll back to struts 1.0.1 every thing seems to be ok. thanks for ur reply, srinivas. -Original Message- From: SUPRIYA MISRA [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25,

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

2002-03-24 Thread Barr, Scott [IBM GSA]
Hi I have come across this problem before when the input FormBean is the same type as the output FormBean for an Action. Removing the input FormBean at the end of the Action (when you tidy up old objects) will remove the bean you are adding to the Requst or Session. Scott > -Original Messa

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

2002-03-24 Thread Annie Chang
Please make sure Struts lib(all the jar file) are in your application's classpath. Simply, you can copy all jar files of Struts to your application's \WEB-INF\lib . It should be OK. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, March 24, 2002 8:35 PM

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

2002-03-24 Thread mike . witt
I'm getting an error (Cannot find bean org.apache.struts.taglib.html.BEAN in scope null) when I attempt to use one of my ActionForm properties in the JSP file. I've looked the struts-config.xml over 100 times and I can't figure out what I'm doing wrong. Here are the pertinent portions of my stru

Re: Multi Indexed & Nested properties samples?

2002-03-24 Thread Arron Bates
1. Nope. Only that ArrayList will be slightly faster at runtime because there's no synchronization for threads on the class (and doesn't need to be, as there's only one bean to a user). Vector will work fine though. Most likely not a noticeable speed difference. 2. Yes, they are nested beans.

struts is dead long live webworks

2002-03-24 Thread jelmer
http://www.theserverside.com/home/thread.jsp?thread_id=12593 -- a troll a day keeps the doctor away :) -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: java.lang.VerifyError

2002-03-24 Thread SUPRIYA MISRA
do you have classes that are not in a package. Tomcat 4.0 will not allow default packages. >From: "srinivas" <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >Subject: java.lang.VerifyError >Date: Sun, 24 Mar 200

Re: Multi Indexed & Nested properties samples?

2002-03-24 Thread Annie Chang
Hi Arron, Thank you for your reply. 1. My form bean in the same way as you said. But the types of "subscriptions" and "webs" are Vector, not ArrayList. Is this an issue? My 3 java classes for this form are attached in my former email, please take a look at them. 2. The elements of "subscriptio

Re: Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread theron . kousek
thank you!!! You have solved my problem!!! Theron John Kroubalkian

Re: Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread theron . kousek
Hi Aaron: I tried using a stylesheet but perhaps I am doing it wrong: My stylesheet class looks like: .selectStyle { font-size: 7pt; font-family: verdana; font-weight: bold max-width: 110; } and the html:select looks like:

Re: Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread Arron Bates
Or, use a stylesheet! :) That's a good one actually. Problem is though, you'll never see what's cut off by the width in IE. NS6 actually shows the whole thing when it drops down. Quite cool NS!. Arron. John Kroubalkian wrote: >Have you tried using a stylesheet to help out? > >Ex. The follo

Re: Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread Arron Bates
I'm afraid that there's nothing you can do about it. Limitation defined by Html, because no horizontal scroll bar will appear so users can read the whole string. You'll either have to split it up into the different parts or abreviate it in some way. Arron. [EMAIL PROTECTED] wrote: >I'm hav

RE: front end madness?

2002-03-24 Thread Paul Sijpkes
Hi Theron, We use Dreamweaver UltraDev 4.0, which comes with JSP support. All java bean coding is done in IntelliJ IDEA. cheers, Paul Sijpkes Analyst/Programmer Hammond Street Developments Telephone (B/H): 03 9875 5904 Email: [EMAIL PROTECTED] -Original Message- From

Re: Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread John Kroubalkian
Have you tried using a stylesheet to help out? Ex. The following does some inline styling and then assigns our user-defined style "selectskinny" to the tag.

Re: Multi Indexed & Nested properties samples?

2002-03-24 Thread Annie Chang
Arron, I want to let the user modify all informations in one page like this way: * | User Information: | Name: Telephone:_ | Email:_Address:__ | |

Re: Multi Indexed & Nested properties samples?

2002-03-24 Thread Arron Bates
Annie, Somehow you're using a tag library that doesn't have the indexed tag ability. The error is complaining that you've specified the indexed="true" attribute, but it doesn't know about it one way or another. When you speak of two vecotrs, is one return from a bean in the other?... Anyways,

Re: Multi Indexed & Nested properties samples?

2002-03-24 Thread Arron Bates
Annie, Somehow you're using a tag library that doesn't have the indexed tag ability. The error is complaining that you've specified the indexed="true" attribute, but it doesn't know about it one way or another. When you speak of two vecotrs, is one return from a bean in the other?... Anyways,

error # 302 on compilation

2002-03-24 Thread srinivas
hello, i get this error when i compile my source file. What could be the reason? Should i get the source of struts and compile? Error #: 302 : cannot access class org.apache.struts.taglib.html.ErrorsTag; no source found; must be compiled, because java.lang.Object.getClass referenced by class org

Controlling MaxWidth for html:options or html:select?

2002-03-24 Thread theron . kousek
I'm having a hardtime controlling the field-width for a dropdown using html:select with html:options: For example: My "states" collection contains states like: Alaska Arkansas

java.lang.VerifyError

2002-03-24 Thread srinivas
hello, did any body get this error. I downloaded the latest version of struts, compiled my source files. When i access the jsp's which were other wise working before throw this error. java.lang.VerifyError: (class: project/struts/form/TestForm, method: validate signature: (Lorg/apache/struts/act

RE: Pass parameters between Action classes

2002-03-24 Thread Enrique Rodriguez
Thanks Tim, I know it, but i think that my example should work. Why don't go??? I asked for it ;-) _ Enrique Rodriguez Lasterra > Tim Sawyer [mailto:[EMAIL PROTECTED]] > > > > You could always use the session instead of the request, and if you're > bothered about us

RE: Pass parameters between Action classes

2002-03-24 Thread Tim Sawyer
You could always use the session instead of the request, and if you're bothered about using up session memory, remove the stuff from the session when you've read it back. So, same code as you have, but call session.setAttribute("param", param) Tim. -Original Message- From: Enrique Rodri

RE: Pass parameters between Action classes

2002-03-24 Thread Enrique Rodriguez
Redirect to true I never use this option. One thing that could be important is that in the browser location bar always appear Action1.do. Is this an expected behaviour??? Regards, Enrique. _ Enrique Rodriguez Lasterra > Robert Nocera > > A JSP is a servlet s

Multi Indexed & Nested properties samples?

2002-03-24 Thread Annie Chang
Hi, Can I jump in and ask a question related with this? I modified the example come with struts 1.0.2. I want let the user edit all Subscriptions at the same time within the page "registration.jsp" My requirements are similar to (but I want multi array properties in one form, see bl

How to use role in struts - tiles

2002-03-24 Thread Reynaldo Timonera
Hi, We're using tiles in our proejct. It's great! We wanted to use the role attribute of the put tag, have anyone used this before? How do I set the user role to something and then have the put tag in tiles definition work. Thanks for your help, Reynaldo

RE: Pass parameters between Action classes

2002-03-24 Thread Robert Nocera
A JSP is a servlet so the "request" in your JSP is the same as the "request" passed to your Action from the ActionServlet. Maybe your forward has redirect set to "true"? If it does, the browser is making a new request and so anything you added with request.setAttribute will be lost. Robert Noce

Re: Displaying recursively defined bean...

2002-03-24 Thread Sandeep Takhar
does this work with struts 1.0? thanks, Sandeep --- Arron Bates <[EMAIL PROTECTED]> wrote: > Alex, > > This is continuing a discussion we had a month ago > (moreover, I had to > dig through my emails to find out who I was arguing > with over it :)... > > With further deliberation on its imple

RE: Pass parameters between Action classes

2002-03-24 Thread Enrique Rodriguez
Hello, Thanks for your response. I think the problem is with the request object. When can i get the paremeters from it??? Only When I'm in a JSP? I Attach my example. Please take a look. Regards, Enrique. _ Enrique Rodriguez Lasterra > Jim Crossley > > > As long a

Need example on using roles in struts-tiles

2002-03-24 Thread Reynaldo Timonera
Hi, We are now in the middle of a project and we're using tiles. Does anyone have a sample code on how to use roles in tiles? Thanks, Reynaldo