[MVC-Programmers] Doug asked about industry controversies.

2003-06-28 Thread mvc-programmers-admin
Doug asked about industry controversies. This link will tell you more: http://www.softwarereality.com/ExtremeProgramming.jsp .V ___ MVC-Programmers mailing list [EMAIL PROTECTED] http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

[MVC-Programmers] How to stop JSP access

2003-06-30 Thread mvc-programmers-admin
Hi All What i want to do is make sure that you are logged on before you can access any pages I have extended the RequestProcessor this works,  but the problem is that people can still point to the .JSP pages Any tips? Thanks Jon protected boolean processPreprocess(HttpServletRequest request

Re: [MVC-Programmers] How to stop JSP access

2003-06-30 Thread mvc-programmers-admin
Put all JSPs under WEB-INF. NO ONE CAN NOW GET TO THEM, only trough action or servlet. .V [EMAIL PROTECTED] wrote: Hi All What i want to do is make sure that you are logged on before you can access any pages I have extended the RequestProcessor this works,  but the problem is th

RE: [MVC-Programmers] RE: How to preserve form values?

2003-06-30 Thread mvc-programmers-admin
I do the same - only my model object has "selected items" that are updated in the Action -Original Message- From: Doug Schnelzer [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 12:39 PM To: [EMAIL PROTECTED] Subject: [MVC-Programmers] RE: How to preserve form values? Telli, The

Re: [MVC-Programmers] How to stop JSP access

2003-06-30 Thread mvc-programmers-admin
Thanks that works great jon [EMAIL PROTECTED] 2003-06-30 12:40 PM Please respond to mvc-programmers                 To:        [EMAIL PROTECTED]         cc:        (bcc: Jon Pallas/EHV/CE/PHILIPS)         Subject:        Re: [MVC-Programmers] How to stop JSP access         Classificat

[MVC-Programmers] Using strut tag values inside other tags

2003-06-30 Thread mvc-programmers-admin
Hi, I was wondering if it was possible to use strut tag values inside other ones... i.e. evaluate the tag value and add it as part of another tag. For example i'd like to do something like I'm sure if this is possible i'd have to delimit it or something... if anyone knows, much appreciated. Th

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
It is possible to write like that: value= Santhi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 9:02 PM To: [EMAIL PROTECTED] Subject: [MVC-Programmers] Using strut tag values inside other tags Hi, I was wondering if it was possible to

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
Hi Santhi, You cannot use a struts tag within another tag, same like JSP tags, But another alternative that you can use is expressions. value="<%= firstName %>" Regards, Ginny -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 6:43 AM T

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
Sample that is working: Thank you Santhi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 1:07 PM To: [EMAIL PROTECTED] Su

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
Hi, You can use struts tag or Jsp tags without other html basic tag but not within other JSP/Struts tags Ginny -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 11:13 AM To: '[EMAIL PROTECTED]' Subject: RE: [MVC-Programmers] Using strut tag

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
Yes. You are right. Thank you Santhi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:56 PM To: [EMAIL PROTECTED] Subject: RE: [MVC-Programmers] Using strut tag values inside other tags Hi, You can use struts tag or Jsp tags without oth

RE: [MVC-Programmers] Using strut tag values inside other tags

2003-07-01 Thread mvc-programmers-admin
Sorry I mean u can use struts or JSP tags with other html basic tags -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 11:56 AM To: [EMAIL PROTECTED] Subject: RE: [MVC-Programmers] Using strut tag values inside other tags Hi, You can use st

[Fwd: Participate in the Royale Beta]

2003-10-21 Thread mvc-programmers-admin
FYI bellow, I signed up. Also a fun article: http://www.newsforge.com/article.pl?sid=03/10/09/0552252&mode=thread&tid=11&tid=11 .V ps: I am going to accelerate port to online forums, which will let people w/ not news group access participate. In the mean time, I am setting it up to not post

new bP release v0.9.87

2003-11-06 Thread mvc-programmers-admin
I released new version v0.9.87, available at basicPortal.sf.net. New features: -shopping cart store -bookmarkable design -more sophisticated CMS designs -Eclipse new release fixes problems, include color or XML "smart typing" and a DB plug in. - tested auto bean generator Enjoy. Future release w

RE: new bP release v0.9.87

2003-11-08 Thread mvc-programmers-admin
The new jasic zip seems to be corrupt and will not uncompress after download. I tried downloading it twice and both attempts produce the same error on the zip. Aaron Goldstein Technical Director Click Media Inc. clickmedia.ca (905) 833-3994 ext.#118 -Original Message- From: [

Re: new bP release v0.9.87

2003-11-08 Thread mvc-programmers-admin
All released files are now damaged, and even older release are affected. I did test on release, I have been doing this for a while now. My guess is that sf caused it somehow, I need to see if other SF downloads are working. I did remove the release from sf.net, I might have to release older re

Struts Chain

2003-11-09 Thread mvc-programmers-admin
Vic, what is Struts Chain ? & How can I get JRockit ? -- Best regards, Andrey mailto:[EMAIL PROTECTED] ___ MVC-Programmers mailing list [EMAIL PROTECTED] http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

[Fwd: Re: Struts Chain]

2003-11-09 Thread mvc-programmers-admin
You can google for jRockit; and it's linked on the bB downloads page (its by BEA) Struts-chain is what Struts v2.0 will use where right now we have the request processor. I think it best be used internally by Struts. If you are looking for bleeding edge productive technology (having mastered t

Re: [Fwd: Re: Struts Chain]

2003-11-10 Thread mvc-programmers-admin
You might also be interested in Spring. I've found it really easy to use and very easy to integrate into Struts: http://struts.sf.net/struts-spring Don On Sun, 9 Nov 2003 [EMAIL PROTECTED] wrote: > > You can google for jRockit; and it's linked on the bB downloads page > (its by BEA) > > Struts-

Re: [Fwd: Re: Struts Chain]

2003-11-10 Thread mvc-programmers-admin
Hi, I've downloaded jasic.zip from sourceforge.net. Could you please send me the password? The version I've downloaded was 0.9.7. Thanks     Crave some Miles Davis or Grateful Dead? Your old favorites are always playing on MSN Radio Plus. Trial month free! __

Re: [Fwd: Re: Struts Chain]

2003-11-10 Thread mvc-programmers-admin
Vic, Thank you for answer ! Are there any facilities to provide the portal loading to clarify how it works in the case of 500 or 1000 users? Is there Performance Monitor ( ~SilverStream PMC ) for Tomcat or any other monitoring facilities? Do you have any clients using

[Fwd: Re: [Fwd: Re: Struts Chain]]

2003-11-10 Thread mvc-programmers-admin
INLINE/CAPS: Are there any facilities to provide the portal loading to clarify how it works in the case of 500 or 1000 users? MOST PORTAL WORK WITH MUCH MORE USERS THAN THAT, NOTHING SPECIALY. Is there Performance Monitor ( ~SilverStream PMC ) for Tomcat or any other monitoring facil

Ann: New release of bP /Jasic Enterprise

2003-11-17 Thread mvc-programmers-admin
Download it from http://basicportal.com/files/jasicE.zip (v 0.98_312 ) This build is only for commercial use, it's available only to organizations that have done business w/ baseBeans, you can get the password to unzip. Contact baseBeans.com or infonoia.com if you are not a current customer, to

Early_access_to_JDK_1.5

2003-11-19 Thread mvc-programmers-admin
FYI: http://www.jzone.co.uk/space/2003-11-19#Early_access_to_JDK_1.5 -- Victor Cekvenich, Struts Instructor (215) 321-9146 Advanced Struts Training Server Side Java training with Rich UI, mentoring, designs, samples and project recovery in North East. Simple best practice basic Portal, a Stru

Struts URL problem with switching modules

2003-12-09 Thread mvc-programmers-admin
Title: Struts URL problem with switching modules I have an application that I converted from 1.0 to 1.1. It used to be one single application and now I separated it into two modules. I am able to switch from one module to another using the SwitchAction. But I have an issue with my href in