Re: Security in Struts

2005-05-29 Thread Eddie Bush
Adam, Nothing put me off CMA :-) I think it's fantastic, if it fits your ticket. Unfortunately, in the environment I currently build apps for, CMA is not feasible. Sometimes you get your druthers - sometimes you look at the standard and decide how you can have your druthers, even if others a

Re: Running Tomcat from Eclipse

2005-05-29 Thread Nandan
maybe you need to attach the source if you run in debug mode As dark as the inside of a needle -Brodsky - Original Message - From: "Daniel Kho" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Monday, May 30, 2005 8:10 AM Subject: Re: Running Tomcat from Eclipse yup... post

Re: Running Tomcat from Eclipse

2005-05-29 Thread Daniel Kho
yup... post your question in the tomcat mailing list. On 5/20/05, Yan Hu <[EMAIL PROTECTED]> wrote: > Are we on a STRUTS mailing list? > > --- m Komma <[EMAIL PROTECTED]> wrote: > > Hi, > > I am using > > Eclipse 3.0.1, > > Sysdeo 3.0.0 (tomcat plugin for eclpse) > > and Tomcat 5.5.7 > > I was ab

Re: Security in Struts

2005-05-29 Thread Adam Hardy
Eddie, what put you off CMA? if you don't mind me asking. Adam On 28/05/05 19:00 Eddie Bush wrote: Tarek, Java provides a standard mechanism for you to tell if the person accessing your application has a certain permission. This is available through request.isUserInRole(String). Unfortunat

Re: Struts versions & Jboss

2005-05-29 Thread Michał Steiner
Hond4 napisał(a): Hallo all list members! is it possible to run 2 versions of struts on one Jboss server? Here is similiar problem with solution: http://www.theserverside.com/discussions/thread.tss?thread_id=31389 -- MiSt --

Re: Newbie Question : Session Management without cookies

2005-05-29 Thread Martin Gainty
Mark- Have you looked at mod_rewrite? http://httpd.apache.org/docs-2.0/misc/rewriteguide.html Viel Gluck, Martin- - Original Message - From: "Mark Breitner" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, May 29, 2005 1:52 PM Subject: Re: Newbie Question : Session Man

Struts versions & Jboss

2005-05-29 Thread Hond4
Hallo all list members! is it possible to run 2 versions of struts on one Jboss server? Thx for help, H0nd4 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using tag with a Map

2005-05-29 Thread Wendy Smoak
From: "Eric C. Hein" <[EMAIL PROTECTED]> ...it looks like the list is being pulled from the map like I want it to, but instead of the actual list being used as collection to iterate, the tag lib is calling toString() on the list, and looking for a bean under that name. Okay, I gave up and rea

Re: Newbie Question : Session Management without cookies

2005-05-29 Thread Mark Breitner
Hi - thanks for your answer. I am looking for a way to let strtuts automatically rewrite the urls. But in the book I am reading right now I can´t find any hint on how to do this. Can you tell me how to rewrite the urls, so that user / pwd are send with ? Bye, Mark Breitner > --- Ursprüngliche

Re: Action class defined in action-mappings not being executed - without 2mb webapp source

2005-05-29 Thread Martin Gainty
Rob validation would be my first guess but I see you have that set to false remember that you need to validate the form bean properties as needed and anything in the request then it finds the ActionForward Are you able to access the JSPs defined in 'success' and 'failure' independently What do

RE: Security in Struts

2005-05-29 Thread tarek.nabil
Hi Eddie, Thanks a lot for such an enlightening explanation. -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] Sent: Saturday, May 28, 2005 10:01 PM To: Struts Users Mailing List Subject: Re: Security in Struts Tarek, Java provides a standard mechanism for you to tell if th

RE: Action class defined in action-mappings not being executed - without 2mb webapp source

2005-05-29 Thread David G. Friedman
Robbie, Your execute() signature seems incorrect. You use ServletRequest and ServletResponse. Try using HttpServletRequest and HttpServletResponse as per the API. The one you are using is not the default execute() implementation for a web server. See the descriptions of both execute() methods

Re: DynaActionForm and the 'pull' model

2005-05-29 Thread Dakota Jack
This is a long thread, so it might be worth repeating that Laurie wants her (human) clients to be able to write Java code on the JSP page. She seems to call this "data pulling". On 5/29/05, Ted Husted <[EMAIL PROTECTED]> wrote: > On 5/28/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > > Thanks for

Re: Struts and iBatis

2005-05-29 Thread Larry Meadors
If you want to talk live to rick, he should be back on IRC shortly - the server is irc.darkmyst.org, and you want to join the #funkycodemonkey channel. BTW, there is also a #ibatis channel where you can get help, too (same server). Larry On 5/28/05, Subbiah <[EMAIL PROTECTED]> wrote: > Hi, > I

Re: [OT] Business Layer Ideas

2005-05-29 Thread Ted Husted
On 5/27/05, Duong BaTien <[EMAIL PROTECTED]> wrote: > We use Chain of Responsibility (CoR) implemented by commons-chain and > its Agility to construct a Request/Response framework to connect a > request to its designated service, whether the designated service is in > a web-application service cont

Re: DynaActionForm and the 'pull' model

2005-05-29 Thread Ted Husted
On 5/28/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > Thanks for the reference Craig; but unless I'm mis-reading you, that > still leaves me with data lookup 'hard coded' in Java classes. My goal > is to be able to change a page's data requirements without > recompilation. If it would be OK to e

Re: Struts and iBatis

2005-05-29 Thread James Mitchell
From another post, someone mentioned that he is on vacation. I'm sure he'll be back soon and get the tutorials back online. -- James Mitchell Software Engineer / Open Source Evangelist Consulting / Mentoring / Freelance EdgeTech, Inc. http://www.edgetechservices.net/ 678.910.8017 AIM: jmitc

RE: Action class defined in action-mappings not being executed - without 2mb webapp source

2005-05-29 Thread Robbie Anonymous
I fixed the dtd to be struts 1.2 as thats the version of my struts.jar (Struts 1.2.4). http://struts.apache.org/dtds/struts-config_1_2.dtd";> still doesnt work. I'm using an execute() method and the code (along with method signature) is below /* * AddContactUs.java * * Created on May 26, 20

RE: Action class defined in action-mappings not being executed - without 2mb webapp source

2005-05-29 Thread David G. Friedman
Robbie, I see you are using Struts v1.1 (your included DTD lists it as such) so are you using execute() or perform()? What is your Action method's signature? Regards, David - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Action class defined in action-mappings not being executed - without 2mb webapp source

2005-05-29 Thread Robbie Anonymous
Hi, The Action class defined in my action-mappings not being executed. I know its not being executed as I made the execute window pop up a swing window on the server and it did not. When I click submit on contactUs.jsp, instead of an object com.devfirm.actions.AddContactUs being instantaniated a