[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, HttpServletResponse response) {
                boolean continueProcessing = true;
                HttpSession session = request.getSession();
                Object user = session.getAttribute(Constants.USER_KEY);
                if (user == null) {
                        ForwardConfig config = appConfig.findForwardConfig("login");
                        try {
                                response.sendRedirect(config.getPath());
                        }
                        catch (Exception ex) {
                                log.error("Problem sending redirect from processPreprocess()");
                        }
                }
                return continueProcessing;
        }

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 that people can still
point to the .JSP pages 
 
 
  Any tips? 
 
  Thanks 
  Jon 
 
  protected boolean processPreprocess(HttpServletRequest request, HttpServletResponse
response) { 
                  boolean continueProcessing = true; 
                  HttpSession session =
request.getSession(); 
                  Object user = session.getAttribute(Constants.USER_KEY); 
  
                  if (user == null) { 
                          ForwardConfig
config = appConfig.findForwardConfig("login"); 
                          try { 
                                  response.sendRedirect(config.getPath()); 
  
                          } 
                          catch (Exception ex) { 
                                  log.error("Problem sending redirect from processPreprocess()"); 
                          } 
                  } 
                  return continueProcessing; 
          } 

-- 
Vic Cekvenich,
Struts Instructor,
1-800-917-JAVA

Advanced Struts Training and project recovery in North East.
Open Source Content Management  basicPortal sofware
Best practiceStruts Support v.1.1 helper ScafflodingXPress






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 way that I do that is to make the input in the mapping go to a struts
action that populates my drop downs, etc.  (as opposed to making the input
go directly to a JSP or a Tile).  I'm interested in how others address this.

- Doug Schnelzer
Vizuri

From: Telli Abbasian <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Date: Thu, 26 Jun 2003 11:27:24 -0400
Subject: [MVC-Programmers] How to preserve form values?
Reply-To: [EMAIL PROTECTED]

Can someone please help me with the following...
how can i preserve form values when it failes validation in the controller
layer if my form is in scope request?
Your help is greately appreciated,
Telli Abbasian



___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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
        Classification:        



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 that people can still point to the .JSP pages 


Any tips? 

Thanks 
Jon 

protected boolean processPreprocess(HttpServletRequest request, HttpServletResponse response) { 
                boolean continueProcessing = true; 
                HttpSession session = request.getSession(); 
                Object user = session.getAttribute(Constants.USER_KEY); 
                if (user == null) { 
                        ForwardConfig config = appConfig.findForwardConfig("login"); 
                        try { 
                                response.sendRedirect(config.getPath()); 
                        } 
                        catch (Exception ex) { 
                                log.error("Problem sending redirect from processPreprocess()"); 
                        } 
                } 
                return continueProcessing; 
        } 

-- 
Vic Cekvenich,
Struts Instructor,
1-800-917-JAVA

Advanced  and project recovery in North East.
Open Source   basicPortal sofware
Best practice v.1.1 helper ScafflodingXPress





[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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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
To: '[EMAIL PROTECTED]'
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags

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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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]
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags


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
To: '[EMAIL PROTECTED]'
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags

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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 values inside other tags

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]
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags


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
To: '[EMAIL PROTECTED]'
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags

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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 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 values inside other tags

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]
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags


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
To: '[EMAIL PROTECTED]'
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags

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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 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 values inside other tags

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]
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags


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
To: '[EMAIL PROTECTED]'
Subject: RE: [MVC-Programmers] Using strut tag values inside other tags

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 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.
Thanks.

-w

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


[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 unsubscribe newbies post to the ENTIRE mail list, as do
other mail lists out there.

 Original Message 

  

  Subject: 
  Participate in the Royale Beta


  Date: 
  Mon, 20 Oct 2003 14:16:45 -0700 (PDT)


  From: 
  [EMAIL PROTECTED] (Macromedia)


  Reply-To: 
  [EMAIL PROTECTED] (Macromedia.com)


  To: 
  [EMAIL PROTECTED]

  



Macromedia, Inc


  

  


  


  
  

  



  
  
 

The Royale team is looking for
skilled developers like you to help us deliver the best possible
technology for building enterprise-class Rich Internet Applications. 
If you would like to join the
Royale beta program, please let us know about your skills and
experience by completing
the Royale beta application.
Royale gives developers a way to
build great experiences and enhance the presentation tier, using a
standards-based, familiar programming model; a powerful set of
components and controls; and robust run-time services. With the beta,
we hope to gather critical input from you, so that we can make Royale
rock-solid and feature rich. 
We'll review every application and
make our selections over the next few weeks. If you are selected, you
will receive an e-mail with instructions on how to access the beta. 
If you are not interested in
participating, or are not selected to participate in the beta, don't
worry. Because you signed up for this e-mail list, we'll continue to
keep you posted with news and information about Royale.
If you have a friend who you think
might be interested in Royale or in participating in the beta, please send them to the Royale
website.
I'm excited about working with you
during the beta-testing process and look forward to hearing from you. 


Regards,
Libby Freligh
Royale Product Manager

 

 
  

  
  


   


  

  



  

  Macromedia support | Macromedia
and your privacy 
  
Thank you for your continued interest in Macromedia products.  If you'd
rather not receive updates about events, classes, or products, write to
  [EMAIL PROTECTED]
and type 'no thanks' in the Subject line. You may also change your
communication preference by visiting
this web page. 

  



<><><><>

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 will have a redesign UI to a tab menu, include HiveMind 
in async., better forums, etc.

Question: How many times did people request unsubscribe on Struts mail 
list according to this:
   http://www.mail-archive.com/struts-user%40jakarta.apache.org
   ?
   48,000 times. Amazing. Programers that do not know how to use a mail 
list. Any e-mail to any mail list requesting one person to unsbscribe 
then does not work. The lists are automatic!!!
   This MVC list still has about 2,000 PROGRAMERS. It says, experienced 
programers join. At least know how to surf. I will spend more time 
adinistering this least until it goes web forums. I also plan to start 
bloging, so people do not need to join the list.
This list is for advanced programers, baseBeans students and bP 
users, and people that use news.basebeans.com. Also questions to me 
should realy go to this list

A good article to read:
   http://basebeans.com/files/WLDvorak.pdf
--
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 Struts CMS, Membership, Forums, 
Shopping and Credit processing,  software, ready 
to develop/customize; requires a db to run.

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: November 6, 2003 4:08 PM
To: [EMAIL PROTECTED]
Subject: new bP release v0.9.87


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 will have a redesign UI to a tab menu, include HiveMind 
in async., better forums, etc.

Question: How many times did people request unsubscribe on Struts mail 
list according to this:
http://www.mail-archive.com/struts-user%40jakarta.apache.org
?
48,000 times. Amazing. Programers that do not know how to use a mail

list. Any e-mail to any mail list requesting one person to unsbscribe 
then does not work. The lists are automatic!!!
This MVC list still has about 2,000 PROGRAMERS. It says, experienced

programers join. At least know how to surf. I will spend more time 
adinistering this least until it goes web forums. I also plan to start 
bloging, so people do not need to join the list.
 This list is for advanced programers, baseBeans students and bP 
users, and people that use news.basebeans.com. Also questions to me 
should realy go to this list

A good article to read:
http://basebeans.com/files/WLDvorak.pdf


-- 
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 Struts CMS, Membership, Forums, 
Shopping and Credit processing,  software, ready

to develop/customize; requires a db to run.


___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 releases as well.

This is actually a bigger problem that it should be. Right after I 
released, I did major refactoring and a lot of work on my workstations 
and I still in the middle.  Even with CVS tags, since my versions are 
all now new it would take me a while to re-release the old tag.
So ... I will proceed with my refactoring and release v.0.9.8.8 in a few 
weeks.

This would affect un-registered downloaders, BUT a registered user can 
get the full Csource and designs anytime, so it should not affect Aaron, 
etc.

.V

ps: for registered users send me a private e-mail if you get stuck here, 
else questions should go to MVC mail list.
http://sourceforge.net/docman/display_doc.php?docid=766&group_id=1

[EMAIL PROTECTED] wrote:

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: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: November 6, 2003 4:08 PM
To: [EMAIL PROTECTED]
Subject: new bP release v0.9.87

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 will have a redesign UI to a tab menu, include HiveMind 
in async., better forums, etc.

Question: How many times did people request unsubscribe on Struts mail 
list according to this:
http://www.mail-archive.com/struts-user%40jakarta.apache.org
?
48,000 times. Amazing. Programers that do not know how to use a mail

list. Any e-mail to any mail list requesting one person to unsbscribe 
then does not work. The lists are automatic!!!
This MVC list still has about 2,000 PROGRAMERS. It says, experienced

programers join. At least know how to surf. I will spend more time 
adinistering this least until it goes web forums. I also plan to start 
bloging, so people do not need to join the list.
 This list is for advanced programers, baseBeans students and bP 
users, and people that use news.basebeans.com. Also questions to me 
should realy go to this list

A good article to read:
http://basebeans.com/files/WLDvorak.pdf

--
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 Struts CMS, Membership, Forums,
Shopping and Credit processing,  software, ready
to develop/customize; requires a db to run.
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 the current best practices :-) I like this a lot:
	http://jakarta.apache.org/~hlship/HiveMind.ppt
To me it combines services, IoC (Inversion of Control patern), Design By 
Contract (Jass, JContract, iContract),  AOP's interceptors (Aspect 
oriented programing), etc. into something very usefull.

You should be able to download HiveMind in Jakarta Commons sometime 
soon. (Hivemind is included in bP as is Struts-Chain.jar; of course for 
the next week or so downloads of bP are broken on sf.net)

.V

[EMAIL PROTECTED] wrote:
Vic, what is Struts Chain ? &  How can I get JRockit ?





--
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 Struts CMS, Membership, Forums, 
Shopping and Credit processing,  software, ready 
to develop/customize; requires a db to run.

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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-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 the current best practices :-) I like this a lot:
>   http://jakarta.apache.org/~hlship/HiveMind.ppt
> To me it combines services, IoC (Inversion of Control patern), Design By
> Contract (Jass, JContract, iContract),  AOP's interceptors (Aspect
> oriented programing), etc. into something very usefull.
>
> You should be able to download HiveMind in Jakarta Commons sometime
> soon. (Hivemind is included in bP as is Struts-Chain.jar; of course for
> the next week or so downloads of bP are broken on sf.net)
>
> .V
>
> [EMAIL PROTECTED] wrote:
> > Vic, what is Struts Chain ? &  How can I get JRockit ?
> >
>
>
>
>
>
> --
> 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 Struts CMS, Membership, Forums,
> Shopping and Credit processing,  software, ready
> to develop/customize; requires a db to run.
>
>
> ___
> MVC-Programmers mailing list
> [EMAIL PROTECTED]
> http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
>

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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! 
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 Tomcat working in cluster system
   with load balancing ?

   What IDE do you prefer & what do you think about BEAs WorkShop,
   IBMs IDE & Sun's Forte ?

Best regards,
 Andreymailto:[EMAIL PROTECTED]

___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


[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 facilities?

JAMON IS BUILT INTO BP. ALL APPLICATIONS MUST BE MONITORED IN PRODUCTION.

   Do you have any clients using Tomcat working in cluster system
   with load balancing ?
CLUSTERING IS FOR NEWBIES (NEW DEVELOPERS). YOU CAN JUST USE A STICK BIT 
WITH ROUND AND ROBIN, THAT IS BEST PRACTICE IMO.

IF I HAD MORE THAN A 2 THOUSAND CONCURENT USERS PER CPU, I WOULD USE 
RESIN, NOT TOMCAT. ITS $500 PER PRODUCTION SERVER, UNLIMITED CPU. 
http://www.caucho.com/download/index.xtp (FYI, bP is $950 un-limited 
servers, so I hope you use bP, it's cheap and good).

   What IDE do you prefer & what do you think about BEAs WorkShop,
   IBMs IDE & Sun's Forte ?
I AND I THINK EVERYONE ELSE USES ECLIPSE.ORG

Best regards,
 Andreymailto:[EMAIL PROTECTED]
--
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 Struts CMS, Membership, Forums,
Shopping and Credit processing,  software, ready
to develop/customize; requires a db to run.
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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 become a customer, or if you would like to 
evaluate it.

New release includes:
-IDE integrated with Color JSP editing, Tomcat 5 integrated to IDE and 
SQL explorer in IDE
-PG(SQL)Admin 3, which requires pgSQL v7.3. It also includes a MUCH 
easier pgSQL demo install.
- A working shopping cart, and catalog (next release should have credit 
card processing)
- An improved forums
- Hierarchical content design (more examples in next release)
- Includes new Struts 1.2 pre-release features: chains requestor, 
commons-resources, validator, * action mapping, EL, etc.
- Includes IoC / Services framework
-Includes a "smart" base tiles action (each tile can be dynamic, each 
time, based on what's happening, for example right tile can display 
featured items or featured content.
(it still comes with testing framework, reporting engine and reporting 
IDE, membership management and the #1 feature CMS/knowledge management)

Other:
http://home.comcast.net/~hlship - I follow it and it's in bP.
http://news.com.com/2100-7344_3-5107419.html?tag=nefd_pop - Yikes.
Is it a good idea that clients consider patenting at least one of their 
designs to protect their WAR's? Hmm.

This is a good review to do on site:
http://www.linuxworld.com/story/37815.htm
How big is yours?
http://www.eweek.com/article2/0,4149,1377108,00.asp
Have fun,
.V
___
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers


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
Struts CMS, Membership, Forums, Shopping and Credit processing, 
software, ready to develop/customize; requires a db to run.






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 my JSP's.


I was using tiles to set the HREF of my menu items and such. The URLs

look like


/default.do?action="">



I have since created an action mapping called switchToModule of type

SwitchAction and replaced the URLs :


/switchToModule.do?prefix=/admin&page=/default.do?action="">



I am able to go from my default module to the admin module without any

problem. But since I do a forward and not a redirect, the address bar

is still http://localhost:8080/app/defaultmodule/default.do?action="">.


But if I have a hyperlinkn on a page in the admin module, with a URL

validateCustomer.do, the browser appends

http://localhost:8080/app/defaultmodule (where app is the application

context root and defaultmodule is the previous module) in front of it

even though I am already in the admin module.


if I click on the hyperlink, the wrong moduleConfig gets loaded

because of the wrong module name in the URL and I get an error saying

the actionmapping was not found.


How does the host name, application name and module name get prepended

to my hyperlink url? Is that caused by the browser?


How can I get around this so that my URLs point to the current module

I am in?


I would greatly appreciate your help.





Nripesh Palikhya