help removing a formbean in session

2003-02-26 Thread Richard Raquepo
i have this in my struts-config action path=/AddTmAccount type=com.fltic.crm.action.manager.AddTmAccountAction scope=session set-property property=loginRequired value=true/ forward name=success path=/manager/addtm.jsp/ /action action path=/SaveTmAccount

Re: help removing a formbean in session

2003-02-26 Thread Gemes Tibor
Richard Raquepo wrote: i have set scope to session so that on error the textbox will be populated with previos user entry. If the validation succeeds then i'll save the record. But here's my problem whenever i return to the my AddScreen the last values is still there. How to i manually call the

Can not run my application since update with Struts1.1 Release Candidate 1

2003-02-26 Thread Heligon Sandra
Since I updated the new version of the Struts framework I have the following errors: - Problem with the Validator Plugin [INFO] ValidatorPlugIn - -Loading validation rules file from '/WEB-INF/validator-rules.xml' [ERROR] ValidatorPlugIn - -Operation timed out:

Re: Frames and the Tile PutList

2003-02-26 Thread Cedric Dumoulin
Hi, The extra '[' ']' are there because you declare the apps attribute as a list. You should either declare it as a normal attribute (put .../), or use an index to peek up the appropriate element in the list (not supported by getAsString or get or insert, you should get the list and use a

how can I get request URI ?

2003-02-26 Thread Veaceslav Chicu
Hi, in browser I have http://localhost:9080/app/adm/listGroups.do listGroups.do is directed to listGroups.jsp in jsp %= request.getServletPath() % returns: /app/adm/listGroups.jsp how can I retrive /app/adm/listGroups.do I want original url from the browser thank you, Slavic

Re: how can I get request URI ?

2003-02-26 Thread Gemes Tibor
Veaceslav Chicu wrote: I want original url from the browser request.getRequestURI() Hth, Tib - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how can I get request URI ?

2003-02-26 Thread Veaceslav Chicu
in the browser http://localhost:9080/app/adm/listGroups.do in jsp: %= request.getServletPath() % %= request.getRequestURI() % results: /adm/listGroups.jsp /app/adm/listGroups.jsp it's also listGroups.jsp I want listGroups.do that is in the browser other

DynaActionForm vs ActionForm

2003-02-26 Thread James Prance
Having used DynaActionForms in my app, i now wonder what use ActionForms are? Is there ever a case for needing an ActionForm and if so when and why? I thought there may be something to do with session states but i'm not sure.

Re: DynaActionForm vs ActionForm

2003-02-26 Thread Nick Sharples
James Prance writes: Having used DynaActionForms in my app, i now wonder what use ActionForms are? Is there ever a case for needing an ActionForm and if so when and why? I thought there may be something to do with session states but i'm not sure. Uploading files with FileForms?

NumberFormat Exception with ActionServlet

2003-02-26 Thread ashokd
Hi, I extended ActionServlet and written my CustomActionServlet. Some time I am getting NumberFormat Exception when I added any jsp scriplets in my jsp page, like % System.out.println(I am working..); % The exception is at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)

Re: DynaActionForm vs ActionForm

2003-02-26 Thread James Prance
can you give an example.. Nick Sharples [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] James Prance writes: Having used DynaActionForms in my app, i now wonder what use ActionForms are? Is there ever a case for needing an ActionForm and if so when and why? I thought

Re: DynaActionForm vs ActionForm

2003-02-26 Thread Gemes Tibor
James Prance wrote: Having used DynaActionForms in my app, i now wonder what use ActionForms are? Is there ever a case for needing an ActionForm and if so when and why? you want your own reset() implementation you have a tool which generates your Forms (eg xdoclet) Tib

Re: DynaActionForm vs ActionForm

2003-02-26 Thread Nick Sharples
James Prance writes: can you give an example.. Nick Sharples [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] James Prance writes: Having used DynaActionForms in my app, i now wonder what use ActionForms are? Is there ever a case for needing an

RE: [Q] BEAN SCOPE

2003-02-26 Thread David Bolsover
Are you explicitly putting wigadminwizardform into session scope in OMInterfaceInfoAction? db -Original Message- From: Chetan Sahasrabudhe [mailto:[EMAIL PROTECTED] Sent: 26 February 2003 07:51 To: Struts Users Mailing List Subject: Re: [Q] BEAN SCOPE man i have attached my

Display error in JSP page with ActionError class

2003-02-26 Thread Heligon Sandra
I would like to display en error in a JSP page without define a Key-Value in the resources.properties file. Because I retrieve the error message from a common file, used by all the applications of the project. So I have only a String and no key, how is it

Re: [Q] BEAN SCOPE

2003-02-26 Thread Chetan Sahasrabudhe
Yep my struts-config action look like this actionpath=/ominterfaceinfo type=wigadmin.struts.action.OMInterfaceInfoAction name=wigadminwizardform input=ominterfaceinfo scope=session validate=true /action -

RE: Display error in JSP page with ActionError class

2003-02-26 Thread ROSSEL Olivier
This problem was discussed yesterday. Please look at the thread Reporting an Exception message in a JSP. -Message d'origine- De: Heligon Sandra [mailto:[EMAIL PROTECTED] Date: mercredi 26 février 2003 11:38 À: '[EMAIL PROTECTED]' Objet: Display error in JSP page with ActionError

Re: Display error in JSP page with ActionError class

2003-02-26 Thread Brian Blignaut
Try this define a key in your resources.properties file like this foo.bar={0} errors.add(ActionErrors.GLOBAL_ERROR, new ActionError(foo.bar, My Problem); This will place 'My Problem' at the place marked by {0} Then when you create your action errror object you do it

RE: Searching the Archive

2003-02-26 Thread James Mitchell
It will be automatically populated on your formbean. -- James Mitchell Software Engineer/Struts Evangelist -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 2:06 AM To: Struts Users Mailing List Subject: RE: Searching the Archive

Re: [Q] BEAN SCOPE

2003-02-26 Thread Brian Blignaut
You must specify the attribute value for you action mapping David Bolsover wrote: Are you explicitly putting wigadminwizardform into session scope in OMInterfaceInfoAction? db -Original Message- From: Chetan Sahasrabudhe [mailto:[EMAIL PROTECTED] Sent: 26 February 2003 07:51 To:

Re: [Q] BEAN SCOPE

2003-02-26 Thread Chetan Sahasrabudhe
attribute as what ? I tried putting attribute value as my formbean name, nothing is happening when I checked in struts dtd for struts-config the explaination says attribute Name of the request-scope or session-scope attribute that is used to access our ActionForm

RE: [Q] BEAN SCOPE

2003-02-26 Thread du Plessis, Corneil C
I cannot see a problem with the way you have used 'name' in the action mapping. Another way of tracking the problem is to log/System.out.println access to the Form validate by logging the session id as well. Then you can find out if the session is somehow recreated. -Original Message-

Re: Best way to understand Struts

2003-02-26 Thread Puneet Agarwal
Hi Amit, Since no-one has replied to this question, shall we understand that there is no such UML diagram. How would it be if we draw it ourselves and ask them whether we understand this correctly. Cheers Puneet - Original Message - From: Amit Keshav Kulkarni [EMAIL PROTECTED] To: Struts

Re: Best way to understand Struts

2003-02-26 Thread James Prance
guys..there is a great sequence diagram in Ted Husted's book.. Struts in Action. I've just got a copy and its the best developers guide to anything i've ever read..really step by step stuff.. hope this helps James Puneet Agarwal [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi

Re: [Q] BEAN SCOPE

2003-02-26 Thread Brian Blignaut
As whatever you want it to be, this is the value that struts will store your form under in the session and the value it will use to retrieve the form. Look at the source code. //Form creation (BeanUtils) String attribute = mapping.getAttribute(); if(attribute == null)

Re: [Q] BEAN SCOPE

2003-02-26 Thread Brian Blignaut
Sorry my, mistake, with further searching I see that the get attribute method returns the name if the attribute is not specified public String getAttribute() { if(attribute == null) return name; else return attribute; } Brian Blignaut wrote: As whatever

Re: Best way to understand Struts

2003-02-26 Thread Chetan Sahasrabudhe
Amit, Puneet http://www.mycgiserver.com/~eboudrant/#uml11 this is the site where u will get UML for struts 1.1 u dont need to write it on ur own :) somebody has already spent time on it Happy working chetan - Original Message - From: Puneet Agarwal [EMAIL PROTECTED] To: Struts Users

Re: [Q] BEAN SCOPE

2003-02-26 Thread Chetan Sahasrabudhe
itz done guys, thanks for ur help. brian thanks for taking efforts in sending me code. in my code there was a old function removing object from session thanks :) - Original Message - From: Brian Blignaut [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday,

RE: html-el:link and logic-el:iterate and tiles --- Just a simple question.

2003-02-26 Thread Jeff Born
Thanks that was what I was missing... I ended up with: html-el:link page=${item.link} jsp:getProperty name=item property=value//html-el:link Last questions is the jsp:getProperty needed? I was hoping to find a html-el:link / implementation that Produced Aproduced text/A.. Is that possible?

NumberFormat Exception with ActionServlet

2003-02-26 Thread ashokd
Hi, I extended ActionServlet and written my CustomActionServlet. Some time I am getting NumberFormat Exception when I added any jsp scriplets in my jsp page, like % System.out.println(I am working..); % The exception is at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)

Struts-Validator: Problem

2003-02-26 Thread Vedd Sampang
Hi I have just started to use the Validator. The problem is that my validation for the page are fired when the page is loaded. Rgds Ved - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

LocalStrings

2003-02-26 Thread Vedd Sampang
Hi What is the use of LocalStrings.properties and how is it used? Is there any documentation? Rgds Ved - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validator Woes

2003-02-26 Thread Vedd Sampang
Hi I was using DynaActionForm. I decided to change to DynaValidatorForm. After changing to DynaValidatorForm, the jsp pages that used to be displayed have stopped. Also, the control is not reaching the Action class. There is no error on the console (JBOSS), but the browser displays that the page

RE: LocalStrings

2003-02-26 Thread James Mitchell
They are used by the framework. Do you ask because of the logging messages? -- James Mitchell Software Engineer/Struts Evangelist -Original Message- From: Vedd Sampang [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 8:33 AM To: [EMAIL PROTECTED] Subject:

Security without the use of Servlet Filters

2003-02-26 Thread Jason Vinson
I asked a while back about implementing a security check for session data, and some people recommended using Filter Objects. My current project is working with the Servlet 2.2 spec, so I don't have the option of using Filters. Someone else mentioned overriding the Default Action that all my

RE: Security without the use of Servlet Filters

2003-02-26 Thread Jarnot Voytek Contr AU HQ/SC
Are you planning to use container managed security? I supposed either way you can try what we've done - as I posted it in another thread yesterday: It may be easier for you to extend RequestProcessor and override processRoles(...) and perform your own authorization there. I started down that

populating textbox with bean property

2003-02-26 Thread Chonalal, Anil (Contractor)
Hi, I am new to struts and just trying to find out how to populate a textbox with a bean property, for example I have the following: bean:write name=system property=name / and would like the textbox value to be the name of the system: tdhtml:text property= size=50//td does anyone know how to

RE: populating textbox with bean property

2003-02-26 Thread Sri Sankaran
Just like you did with the bean:write. html:text name=system property=name size=50/ Or am I missing something from your question? Sri -Original Message- From: Chonalal, Anil (Contractor) [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 9:02 AM To: '[EMAIL

security question #2

2003-02-26 Thread Jason Vinson
I am using the below code to check for the presence of session attributes for security. Are there any issues I may be overlooking by doing it this way? TIA, Jason // // Default spgAction class

Action extension problem

2003-02-26 Thread graeme_w_brown
We are planning to use Struts as part of our framework code. As part of this work I have created an extension of the Action class that contains generic functionality (ExtendedAction). This new class is further extended by another class with authenticating capabilities (AuthenticatingAction). Which

RE: populating textbox with bean property

2003-02-26 Thread Chonalal, Anil (Contractor)
Thanks for that, I did the same before and was getting some exception, but it works fine now. Cheers. Anil -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED] Sent: 26 February 2003 14:31 To: Struts Users Mailing List Subject: RE: populating textbox with bean property

RE: Action extension problem

2003-02-26 Thread Wendy Smoak
Is there a more elegant way of solving this problem other than to add more extended classes each time and duplicate the code? Have you considered a Servlet Filter for the authentication part? And the 'generic functionality' might be able to be moved out into 'Helper' classes rather than put

Re: Best way to understand Struts

2003-02-26 Thread Sundar Narasimhan
I have longed for something like this too -- because while struts attempts to solve some very real problems, and does a good job at it, I think the documentation and the mental model that people need to have can be reset straight by a key few pieces of documentation that are still missing. -

Re: Help with optionsCollection error

2003-02-26 Thread Ian Hunter
I don't understand the question -- if your example is working, the setter method is getting called and it's storing whatever got passed to it. Can you ask the question a different way? - Original Message - From: Peng Tuck Kwok [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

RE: DynaActionForm vs ActionForm

2003-02-26 Thread Wendy Smoak
Gemes Tibor wrote: you want your own reset() implementation You can still override reset in DynaActionForm... you just get out of writing all the get/set methods. I have a DynaValidatorForm in which I've implemented both reset and validate-- I couldn't convince the validator to handle a

RE: security question #2

2003-02-26 Thread John Espey
Jason, One thing you may want to consider is using the Template pattern here. Make your class abstract, declare an abstract method called doExecute or something like that, have your execute method call doExecute where it currently calls super.execute() (the super call is unnecesary I think). Sub

RE: security question #2

2003-02-26 Thread du Plessis, Corneil C
You can use container based security. http://jakarta.apache.org/struts/userGuide/preface.html#jaas -Original Message- From: Jason Vinson [mailto:[EMAIL PROTECTED] Sent: 26 February, 2003 16:38 To: Struts Users Mailing List Subject: security question #2 I am using the below code to check

RE: Can not run my application since update with Struts1.1 Release C andidate 1

2003-02-26 Thread Heligon Sandra
Finally I resolved one on the two errors. The error concerning the ClastCastException was due to a modification of my UML model when I updated the Struts classes. The generated code was false. The BaseAction doesn't extend no more the struts Action class. But I don't have resolved the second

jstl runtime expression evaluation

2003-02-26 Thread John Thorhauer
Hi, I have a question about JSTL expressions. Here is my scenario: I am storing several objects into the users Session using keys that are defined in a .property file and I want to reference these objects in JSTL. Here is an example: The key that will be used to store a Book is defined as a

RE: Action extension problem

2003-02-26 Thread graeme_w_brown
Thanks for your reply. Is there a more elegant way of solving this problem other than to add more extended classes each time and duplicate the code? Have you considered a Servlet Filter for the authentication part? A good idea, unfortunately we are still using Websphere v4.x which doesn't

Re: Best way to understand Struts

2003-02-26 Thread Brian Holzer
Hi Puneet, Here are a couple of URLs that may help you out. http://www.mycgiserver.com/~eboudrant/?nostat=true#uml11 http://www.mycgiserver.com/~eboudrant/?nostat=true#uml11 Brian Puneet Agarwal 02/26/03 05:41am Hi Amit, Since no-one has replied to this question, shall we understand

websites that use Struts..

2003-02-26 Thread James Prance
The list on the Apache website, half the links dont work... does anyone know of some websites out there on the old 'interweb' that are currently live using struts.. I need to find some good examples to convince our PM's that this is our way forward.. James

Re: jstl runtime expression evaluation

2003-02-26 Thread Kris Schneider
How 'bout: c:set var=book value=${sessionScope[BOOK_KEY]}/ Quoting John Thorhauer [EMAIL PROTECTED]: Hi, I have a question about JSTL expressions. Here is my scenario: I am storing several objects into the users Session using keys that are defined in a .property file and I want to

RE: Can not run my application since update with Struts1.1 Relea se Candidate 1

2003-02-26 Thread SWICKLUND
I had a similar problem. My App Server is behind a firewall and cannot directly access the web. For some reason, the version of the commons-validator.jar bundled with RC1 does not satisfy the DTD lookup. I resolved this by downloading the current release of the validator framework (1.0.1) and

Re: Best way to understand Struts

2003-02-26 Thread Brian Holzer
Sorry about that, I meant to add this URL http://rollerjm.free.fr/pro/Struts.html Brian Brian Holzer 02/26/03 09:41am Hi Puneet, Here are a couple of URLs that may help you out. http://www.mycgiserver.com/~eboudrant/?nostat=true#uml11

Re: jstl runtime expression evaluation

2003-02-26 Thread John Thorhauer
On Wed, 2003-02-26 at 10:42, Kris Schneider wrote: How 'bout: c:set var=book value=${sessionScope[BOOK_KEY]}/ that worked. thanks a bunch. john - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: websites that use Struts..

2003-02-26 Thread Rick Reumann
On Wed, 26 Feb 2003 15:42:17 - James Prance [EMAIL PROTECTED] wrote: The list on the Apache website, half the links dont work... does anyone know of some websites out there on the old 'interweb' that are currently live using struts.. I need to find some good examples to convince our PM's

RE: Struts and Portlets

2003-02-26 Thread PILGRIM, Peter, FM
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] On Tue, 25 Feb 2003, Mete Kural wrote: From: Mete Kural [EMAIL PROTECTED] ---- --- Craig R. McClanahan [EMAIL PROTECTED] wrote: I'm definitely interested in making it possible to reuse

Re: websites that use Struts..

2003-02-26 Thread James Prance
Cheers Rick.. thats will help, what i really need to demonstrate is its not just another latest techies geegaw.. seeing them in action will do more for them at this stage i feel.. Rick Reumann [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Wed, 26 Feb 2003 15:42:17 - James

Re: monkey tree - must be session-based?

2003-02-26 Thread Pani R
Affan, Iam sorry, I dont the answer for u r question. But, just wondering if you know a way to access a SESSION variables from the constructor of MONKEYTREEBEAN which is an ActionForm. -Pani. -- On Wed, 26 Feb 2003 08:27:56 Affan Qureshi wrote: I have been using Nested tags to create

Re: websites that use Struts..

2003-02-26 Thread Rick Reumann
On Wed, 26 Feb 2003 16:03:01 - James Prance [EMAIL PROTECTED] wrote: Cheers Rick.. thats will help, what i really need to demonstrate is its not just another latest techies geegaw.. seeing them in action will do more for them at this stage i feel.. Just recently someone posted about a

RE: websites that use Struts..

2003-02-26 Thread James Mitchell
Here's the original post. -- James Mitchell Software Engineer/Struts Evangelist -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: mercredi 26 février 2003 11:41 To: Struts Users Mailing List Subject: Re: websites that use Struts.. On Wed, 26 Feb 2003

Javasript and checkboxes

2003-02-26 Thread Sloan Seaman
Is there an easy way in Struts to check if a checkbox has been checked via javascript before you let the user submit? I am using Struts javascript for other validation, but I don't' see anything for checkboxes... I know how to hand code this but I am wondering if Struts has this covered...

RE: websites that use Struts..

2003-02-26 Thread Chappell, Simon P
And, I will once again mention that we are using Struts here at Lands' End for an internal application and are in the process of developing a customer-facing application with it. Simon - Simon P. Chappell

RE: websites that use Struts..

2003-02-26 Thread Brandon Goodin
Here is a collection of sites that use struts: http://www.bearmountainmercantilec.com http://www.joebasirico.com http://www.whitefishre.com http://www.eisenhartbuilders.com http://www.parkersvilllecollection.com - contact page only. Brandon Goodin Phase Web and Multimedia PO Box 85 Whitefish MT

RE: websites that use Struts..

2003-02-26 Thread Brandon Goodin
Opps... One of my links was bad. :-o http://www.bearmountainmercantile.com Brandon Goodin Phase Web and Multimedia PO Box 85 Whitefish MT 59937 P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED]

RE: websites that use Struts..

2003-02-26 Thread Ron Day
Mandalay Bay Hotels uses Struts: www.mandalaybay.com -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 10:56 AM To: Struts Users Mailing List Subject: RE: websites that use Struts.. Opps... One of my links was bad. :-o

RE: websites that use Struts..

2003-02-26 Thread Brandon Goodin
Found this one too. https://service.capitalone.com/oas/login.do?objectclicked=LoginSplash Brandon Goodin Phase Web and Multimedia PO Box 85 Whitefish MT 59937 P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: Brandon Goodin [mailto:[EMAIL

RE: websites that use Struts..

2003-02-26 Thread Mark Galbreath
http://shop.t-mobile.com Mark -Original Message- From: Ron Day [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 11:58 AM To: Struts Users Mailing List Subject: RE: websites that use Struts.. Mandalay Bay Hotels uses Struts: www.mandalaybay.com -Original

Javascript displayed on page

2003-02-26 Thread Sloan Seaman
What woudl cause Struts to put Javascript into a page but NOT put script type=text/javascript language=Javascript1.1 !-- Begin and //End -- /script It seems to be leaving it out for me on a certain page. On other pages it works fine though. Also, is there any way to get strust to send only the

RE: websites that use Struts..

2003-02-26 Thread Raible, Matt
My site uses it: http://raibledesigns.com If you login (link at bottom right) as test/roller, you can edit the test weblog at http://raibledesigns.com/page/test. The Editor UI is written in Struts, and the main weblog UI is using Velocity. Powered by Roller (http://www.rollerweblogger.org).

RE: Struts and Portlets

2003-02-26 Thread PILGRIM, Peter, FM
-Original Message- From: PILGRIM, Peter, FM ---- servlet container and a Servlet. As such, I think the best role for Struts is to answer the how do you program a portlet rather than how do I build a portal server. ---- Does anyone have a copy of the JSR 168

Re: how to implement/describe an action that can be invoked on from any view and forward the request back to that view?

2003-02-26 Thread Ivan N. Zhidov
Andrew, what I did was to define views where this action may be invoked from in global forwards and use the forward alias as a paramter so now the action knows where to forward the request to. The use of global forwards allows me to conceal the real view names so the user still doesn't see them.

RE: Running example app on Websphere 4.0

2003-02-26 Thread Shkolnik, Mike
Finally got it to work. The solution is similar to the one suggested by Ryan below - After I restarted the app server, I also needed to restart the actual application. I also forgot to regenerate web server plugin after installing the example app, which caused it not to work. Thank you to

Upload and BeanUtils problem

2003-02-26 Thread Sébastien Col
Hi, I'm trying to get the html:file tag working, but I'm stuck. When I submit my form, I have a NoClassDefFoundError exception for org/apache/commons/beanutils/MethodUtils. The commons-beanutils.jar file is in my /WEB-INF/lib directory, so I don't understand. Any idea? Following is the exception

RE: Netscape 4.7x and Struts performance problems

2003-02-26 Thread scarter
Unfortunately, I don't have the luxury of developing to IE only. We're deploying a struts app to a pretty broad audience, about 20% of which still prefer Netscape 4.x. The problems I think we're having relate to the way Tiles were implemented by one of our developers. He had very complex table

Re: Struts and Portlets

2003-02-26 Thread Mete Kural
Hi Vic, Sounds good to me. Good. You are welcome to start analyzing Liferay's source code then. You can either download the source zip archive available here http://sourceforge.net/project/showfiles.php?group_id=49260 or log in to the sourceforge cvs with this command: cvs -d:pserver:[EMAIL

RE: Can not run my application since update with Struts1.1Releas e C andidate 1 -- duplicate of [NOT FIXED] WHAT IS SOLUTION TOVALIDATOR- RULES.XML remote dtd problem?

2003-02-26 Thread Peterkofsky, Don
This is the same issue I am reporting in my post titled [NOT FIXED] WHAT IS SOLUTION TO VALIDATOR-RULES.XML remote dtd problem? See post below. -Original Message- From: Heligon Sandra [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 12:24 AM To: '[EMAIL PROTECTED]'

RE: websites that use Struts..

2003-02-26 Thread Raible, Matt
Baahhh, they don't like modern browsers eh? Using Mozilla, I get the following page. No response needed, just thought maybe the developers are listening ;-) You cannot access Online Account Services with your current Web browser. Possible reasons for this could be one of the following: *

Re: websites that use Struts..

2003-02-26 Thread asatrasala
Hello, I think tomcat administration uses struts. that will be a good one and also websphere 5.0 administration. I am not sure, I remember reading somewhere [EMAIL PROTECTED] wrote: Cheers Rick.. thats will help, what i really need to demonstrate is its not just another latest techies

Dropdown list

2003-02-26 Thread Prabu Babu
Hi, I have a form say X. I have GetX action which prefills form and SetX action which process the values entered by user. I have dropdown list [fetched by GetX and populated in form object]. When the form is posted, and it fails in validation, i am losing this dropdown list [ArrayList]. I get

RE: Can not run my application since update with Struts1.1Releas e C andidate 1 -- duplicate of [NOT FIXED] WHAT IS SOLUTION TOVALIDATOR - RULES.XML remote dtd problem?

2003-02-26 Thread Raible, Matt
If you can get to the DTD with your browser, and you're behind a firewall, you may have to add your proxy information to Tomcat. To do this, create a CATALINA_OPTS environment variable, and add something like the following: -Dhttp.proxyHost=myproxy -Dhttp.proxyPort=85 -Original

Re: websites that use Struts..

2003-02-26 Thread Vinay Chandupatla
I think www.enterprise.com , use Struts -- Original Message -- From: asatrasala [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] Date: Wed, 26 Feb 2003 09:31:28 -0800 Hello, I think tomcat administration uses struts. that will be a

RE: websites that use Struts..

2003-02-26 Thread Jerome Jacobsen
I get the same thing with IE 6.0 with 128 bit encryption. -Original Message- From: Raible, Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 12:29 PM To: 'Struts Users Mailing List' Subject: RE: websites that use Struts.. Baahhh, they don't like modern browsers

RE: Dropdown list

2003-02-26 Thread Jarnot Voytek Contr AU HQ/SC
Is the input attribute of your SetX action set to the jsp or the GetX action? You can either set it to the GetX action so that the drop-down collection gets reloaded, or stick the drop-down collection in session scope so the jsp can access it on the next request... -- Voytek Jarnot Quidquid

Using Struts with Cocoon?

2003-02-26 Thread Clement, Stephen
Anyone used struts with Cocoon? Is it feasible? Is it worth it? How best to do this? -To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: websites that use Struts..

2003-02-26 Thread Brandon Goodin
I'm using IE6.0.2 with 128-bit and it works great. I didn't develop the app... but i do use their credit card. Brandon Goodin Phase Web and Multimedia PO Box 85 Whitefish MT 59937 P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: Jerome

RE: Dropdown list

2003-02-26 Thread Wendy Smoak
Prabu wrote: I have a form say X. I have GetX action which prefills form and SetX action which process the values entered by user. I have dropdown list [fetched by GetX and populated in form object]. When the form is posted, and it fails in validation, i am losing this dropdown list

[OT] database access philosophy

2003-02-26 Thread Kirby Vandivort
Hello, I'm in the process of converting an old webapp over to using struts and, in the process, I decide to clean up the database access. Old Way: I had written a connection pool and instantiated an instance of this that was passed to all methods that needed the db, and they they had the sql

RE: Netscape 4.7x and Struts performance problems

2003-02-26 Thread David Graham
Who said anything about IE only? I develop all my apps to the xhtml 1.0 spec as closely as possible. Like magic, they work in all the major browsers :-). David From: scarter [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL

tripping over request variables again

2003-02-26 Thread Jason Vinson
For some reason, I am not catching on to the idea of beans in the request. Here's my code: request.setAttribute(caseInfo, theCase); theForm.setCaseInfo(theCase); and my jsp: td valign=topbbean:write name=caseInfo scope=request property=id/ /b/td td valign=topbbean:write name=caseInfo

RE: Can not run my application since update with Struts1.1 Releas e Candidate 1 -- duplicate of [NOT FIXED] WHAT IS SOLUTION TO VALIDATOR- RULES.XML remote dtd problem?

2003-02-26 Thread SWICKLUND
This does not resolve the overall issue... Why is the DTD, which is stored in the commons-validator.jar not being recognized in RC1? The lookup should recognize the DTD in the path and not even require a remote lookup. |-+--- | | Raible,

Action without FormBean

2003-02-26 Thread Chen, Gin
I set up the following: action path=/myAction type=com.ui.action.MyAction parameter=userAction/ //myJsp.jsp html:form action=/myAction /html:form Thats it nothing in between the form tags and I get exception can not access formbean null. Well I dont want a formbean. Is this not a legal form?

AW: Using Struts with Cocoon?

2003-02-26 Thread Juraj . Lenharcik
Hi, I use struts cocoon together. I have an area in my webapp which has some reports. These reports are in xml and generated either by an EJB or an Action. After the generation of such a XML this is saved in this area which is controlled by cocoon. If a request (directly or as redirect from

RE: [OT] database access philosophy

2003-02-26 Thread Jarnot Voytek Contr AU HQ/SC
The two typical solutions are disconnected RowSets and copying the ResultSet into a collection of value objects. Pros and cons abound for either method - one pollutes your code with sql packages and one involves copying a lot of data... -- Voytek Jarnot Quidquid latine dictum sit, altum viditur.

Re: Action without FormBean

2003-02-26 Thread David Graham
html:form must have a form bean. Form beans are the framework's way of dealing with forms. David From: Chen, Gin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: Action without FormBean Date: Wed, 26 Feb 2003

RE: [OT] database access philosophy

2003-02-26 Thread Andy Kriger
Check out this article http://www.javaworld.com/javaworld/jw-05-2002/jw-0524-sql.html A nice to way to keep the ResultSet in yr db classes and allow your other classes to remain ignorant of db access. -Original Message- From: Kirby Vandivort [mailto:[EMAIL PROTECTED] Sent: Wednesday,

RE: Action without FormBean

2003-02-26 Thread Sri Sankaran
Yes, you *must* have a name attribute if you are going to use an html:form. Here's a snippet from the docs for html:form If the name and type attributes are not specified, then the form bean will be located, and created if necessary, based on the form bean specification for the associated

Re: [OT] database access philosophy

2003-02-26 Thread David Graham
I usually copy each row into a domain layer object like Person or Account. That's probably too slow for a batch type application but it works fine for web applications. Alternatively you can use a RowSet which is disconnected from the database. David From: Kirby Vandivort [EMAIL

Desperate search for struts tree view-component

2003-02-26 Thread Andrei Svirida
Hello Struts Gurus, I'm searching for some tree-view component for struts. Ideally it should provide the same type of tree view as Explorer tool on Win32 does. I would greatly appreciate any tip regarding this. -- Andrei Svirida, Projekte Entwicklung MIDRAY GmbH - a debitel company Phone:

  1   2   3   >