moving from ASP to jsp/Struts redirecting visitors into new site

2003-01-28 Thread Rachel
Hi

I'm rebuilding a site that is currently built in ASP and hosted on a win2k 
box on IIS to A JSP/Struts application that will be hosted on JBoss on 
Linux. I'll be moving the domain so I can't just do browser redirects from 
one to the other and what I would like to be able to do is come up with the 
best method of redirecting people who go to my *.asp pages to the relevant 
'page' within my new application (I'm using Tiles with the definitions in 
the xml file). So someone would go to:

http://www.foo.com/pages/page1.asp

and I need to send them to

http://www.foo.com/page1.do

the new server doesn't have asp so I can't just stick in some asp pages to 
do redirects there. I had the idea that I should be able to redirect them 
in some manner using a forward, anything coming in that is *.asp forward to 
something but ideally I'd like to put people at the content they would have 
found at the old location as I get a lot of traffic from people who linked 
to pages deep within the site.

Apologies if this is very basic, I'm converting myself to jsp/struts as 
well as my site so I'm having to learn a lot!

Rachel


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]



Re: moving from ASP to jsp/Struts redirecting visitors into new site

2003-01-28 Thread V. Cekvenich
A shot in the dark:
In your container server xml file set root  to you /pages
This removes the need for pages.
In you struts.xml map *.asp to Action (as opposed to *.do). Of course, 
every page needs a action mapping that and a forward to a real jsp.
.V

Rachel wrote:
Hi

I'm rebuilding a site that is currently built in ASP and hosted on a 
win2k box on IIS to A JSP/Struts application that will be hosted on 
JBoss on Linux. I'll be moving the domain so I can't just do browser 
redirects from one to the other and what I would like to be able to do 
is come up with the best method of redirecting people who go to my *.asp 
pages to the relevant 'page' within my new application (I'm using Tiles 
with the definitions in the xml file). So someone would go to:

http://www.foo.com/pages/page1.asp

and I need to send them to

http://www.foo.com/page1.do

the new server doesn't have asp so I can't just stick in some asp pages 
to do redirects there. I had the idea that I should be able to redirect 
them in some manner using a forward, anything coming in that is *.asp 
forward to something but ideally I'd like to put people at the content 
they would have found at the old location as I get a lot of traffic from 
people who linked to pages deep within the site.

Apologies if this is very basic, I'm converting myself to jsp/struts as 
well as my site so I'm having to learn a lot!

Rachel



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-14 Thread Martin Samm

yeh - shot myself in the foot - we've got a memory leak somewhere - trying to 
resolve now

On Wednesday 10 Apr 2002 12:46 pm, you wrote:
 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for
 VoiceStream Global Wireless's new ecommerce sites) is that it slows
 processing and page deleivery considerably.  Anyone else notice this?

 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site


 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about 19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.

-- 
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-14 Thread Martin Samm

The problem, as i'm finding now, isn't in the JSP itself, but 'loitering' 
objects - tag objects to be specific - i've used the 'ab' utility against the 
site, whilst monitoring using JProbe and the instantiated tags seeme to 
loiter for a long time, sucking memory, which during our businest periods 
could explain the 'drain'

I'm going to put a cache around this, but does anyone kwon why this might be 
and iut may be avoided (not using cacheing?)

On Wednesday 10 Apr 2002 1:35 pm, you wrote:
 I would also check that your JSP's are pre-compiled.  The JSP's are
 compiled as servlets wen they are first called after changes.  That can
 take some time as well.  We have been getting excellent performance across
 a T1 over the Atlantic that goes from Philly to Raleigh to the UK and back
 aain.

 Jim Berg
 Sr. Software Specialist
 PSCI
 610-270-4158
 [EMAIL PROTECTED]



 Pete Carapetyan
 pete@datafundamentals
 .com
  To: Struts Users
 Mailing List

 10-Apr-2002 08:10cc:
 Please respond toSubject: Re: New Site
 Struts Users Mailing
 List
 [EMAIL PROTECTED]
 pache.org

 Galbreath, Mark wrote:
  This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for

 VoiceStream

  Global Wireless's new ecommerce sites) is that it slows processing and

 page

  deleivery considerably.  Anyone else notice this?

 No.

 I would look for a bug in your code, not in Struts. Have you run a profiler
 on it to see where it is spending it's time?

  Mark
 
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
 
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
  While the content may not be to everyone's taste, it is popular, about

 19M

  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   

 mailto:[EMAIL PROTECTED]

  For additional commands, e-mail: 

 mailto:[EMAIL PROTECTED]

-- 
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-14 Thread Martin Samm

built and tested on Linux, deployed on Solaris - dont think IBM supplies a 
Solaris VM

On Wednesday 10 Apr 2002 2:55 pm, you wrote:
 Subject: Re: New Site
 From: Vic Cekvenich [EMAIL PROTECTED]
  ===
 And JRockit.com or IBM for a VM.  (tags are slow on Sun JDK 1.3)

 Vic Cekvenich wrote:
  Weblogic is expensive. Consider Resin...  or OrionServer.com.
 
  Galbreath, Mark wrote:
  Yeah - we think JRun is the main culprit (which is why we are
  abandoning it
  in favor of WebLogic).  I was just interested in other's experience to
  confirm our suspicions.
 
  Thanks,
  Mark
 
  -Original Message-
  From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:10 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
  Galbreath, Mark wrote:
  This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave
  up when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
 
  VoiceStream
 
  Global Wireless's new ecommerce sites) is that it slows processing and
 
  page
 
  deleivery considerably.  Anyone else notice this?
 
  No.
 
  I would look for a bug in your code, not in Struts. Have you run a
  profiler
  on it to see where it is spending it's time?
 
  Mark
 
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
 
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on Vignette (yuk)
  . While the content may not be to everyone's taste, it is popular,
  about 19M
  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
  For additional commands, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]

-- 
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: [OT] precompiling jsp with ant (prev 'RE: New Site')

2002-04-12 Thread dhay



There is also a new task in 1.5 nightly builds for jspc directly.

Dave





Fabien Modoux [EMAIL PROTECTED] on 04/10/2002
05:38:13 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   [EMAIL PROTECTED]
cc:(bcc: David Hay/Lex/Lexmark)
Subject:  RE: [OT] precompiling jsp with ant (prev 'RE: New Site')



Thanks a lot, this is very helpful.

Fabien

-
Fabien Modoux,
Voicemate - http://www.voicemate.com



 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 4:59 PM
 To: 'Struts Users Mailing List'
 Subject: RE: [OT] precompiling jsp with ant (prev 'RE: New Site')


 In build.xml:

 target name=jsp depends=web
   java classname = JSPC
 fork = yes
 failonerror = yes
  classpath=${antclasspath}

   arg line=-n -v -a ${jrun.app} -s ${jrun.server} -j ${jrun.dir} -w
 ${server.dir}\${jrun.app} ${jsp.dirs}/

   /java
 /target


 You have to plug in the utility and arguments for your particularly
 container.

 Mark

 -Original Message-
 From: Fabien Modoux [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 11:54 AM
 To: [EMAIL PROTECTED]
 Subject: [OT] precompiling jsp with ant (prev 'RE: New Site')


 Mark,

 Would you mind providing a sample ant code that does the JSP
 precompiling? I am currently doing that through a servlet, but
 using ANT would be much better... I looked on the ANT and
 Tomcat archives but I could not any info on how to do that.

 Thanks in advance,

 Fabien

 -
 Fabien Modoux,
 Voicemate - http://www.voicemate.com



  -Original Message-
  From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 9:08 AM
  To: 'Struts Users Mailing List'
  Subject: RE: New Site
 
 
  Thanks for the suggestion - and it's a good one that everyone
  should heed if
  they have heavy-weight JSPs.  But ours are very light, and we have ANT
  precompile them on every deploy.
 
  Mark
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:36 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
 
  I would also check that your JSP's are pre-compiled.  The JSP's are
  compiled as servlets wen they are first called after changes.  That can
  take some time as well.  We have been getting excellent
 performance across
  a T1 over the Atlantic that goes from Philly to Raleigh to the
 UK and back
  aain.
 
  Jim Berg
  Sr. Software Specialist
  PSCI
  610-270-4158
  [EMAIL PROTECTED]
 
 
 
 
  Pete Carapetyan
 
  pete@datafundamentals
 
  .com
 
   To: Struts Users
  Mailing List
 
 
  10-Apr-2002 08:10cc:
 
  Please respond toSubject:
 Re: New Site
 
  Struts Users Mailing
 
  List
 
  [EMAIL PROTECTED]
 
  pache.org
 
 
 
 
 
 
 
 
  Galbreath, Mark wrote:
  
   This is not very encouraging.  At 6:30 AM EST on a T-1 I
 finally gave up
   when the page had not fully loaded after 3 minutes(!!).  My personal
   experience with Struts (we are committed to it at this point for
  VoiceStream
   Global Wireless's new ecommerce sites) is that it slows processing and
  page
   deleivery considerably.  Anyone else notice this?
 
  No.
 
  I would look for a bug in your code, not in Struts. Have you run
  a profiler
  on it to see where it is spending it's time?
 
  
   Mark
  
   -Original Message-
   From: Martin Samm [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, April 09, 2002 8:27 AM
   To: [EMAIL PROTECTED]
   Subject: New Site
  
   Just thought i'd another 'Powered By Struts' site to the list -
   www.peoplenews.com.
   Its a showbiz / gossip site which until recently ran on
 Vignette (yuk) .
   While the content may not be to everyone's taste, it is popular, about
  19M
   hits last month. It's been running for 2 days, so may have a couple of
   teething problems, but it does seem to have scaled well.
   --
   Martin Samm
   [EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:
   mailto:[EMAIL PROTECTED]
   For additional commands, e-mail:
   mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
   For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands

RE: New Site

2002-04-11 Thread Galbreath, Mark

No, but I'll find out.

-Original Message-
From: John Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 9:07 PM
To: Struts Users Mailing List
Subject: Re: New Site


Do you know which content management solution they switched to that works
with Struts?

- Original Message -
From: Galbreath, Mark [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Wednesday, April 10, 2002 10:28 AM
Subject: RE: New Site


 We, in fact, are considering Oracle 9ias (built on Orion).  We are
 considering WebLogic only because we are in the process of making the
 decision to outsource the hosting and every major vendor seems to support
 WebLogic only.

 Mark

 -Original Message-
 From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:40 AM
 To: [EMAIL PROTECTED]
 Subject: Re: New Site


 Subject: Re: New Site
 From: Vic Cekvenich [EMAIL PROTECTED]
  ===
 Weblogic is expensive. Consider Resin...  or OrionServer.com.

 Galbreath, Mark wrote:

  Yeah - we think JRun is the main culprit (which is why we are abandoning
 it
  in favor of WebLogic).  I was just interested in other's experience to
  confirm our suspicions.
 
  Thanks,
  Mark
 
  -Original Message-
  From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:10 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
 
  Galbreath, Mark wrote:
 
 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for
 
  VoiceStream
 
 Global Wireless's new ecommerce sites) is that it slows processing and
 
  page
 
 deleivery considerably.  Anyone else notice this?
 
 
  No.
 
  I would look for a bug in your code, not in Struts. Have you run a
 profiler
  on it to see where it is spending it's time?
 
 
 Mark
 
 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site
 
 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about
19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
 For additional commands, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-11 Thread Sandra Cann

FYI, the content management solution at www.jcorporate.com is based on
Struts and Expresso and works with WebLogic. It is also available with full
source.
--
Sandra

 -Original Message-
 From: John Jones [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:07 PM
 To: Struts Users Mailing List
 Subject: Re: New Site


 Do you know which content management solution they switched to that works
 with Struts?

 - Original Message -
 From: Galbreath, Mark [EMAIL PROTECTED]
 To: 'Struts Users Mailing List' [EMAIL PROTECTED]
 Sent: Wednesday, April 10, 2002 10:28 AM
 Subject: RE: New Site


  We, in fact, are considering Oracle 9ias (built on Orion).  We are
  considering WebLogic only because we are in the process of making the
  decision to outsource the hosting and every major vendor seems
 to support
  WebLogic only.
 
  Mark
 
  -Original Message-
  From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 9:40 AM
  To: [EMAIL PROTECTED]
  Subject: Re: New Site
 
 
  Subject: Re: New Site
  From: Vic Cekvenich [EMAIL PROTECTED]
   ===
  Weblogic is expensive. Consider Resin...  or OrionServer.com.
 
  Galbreath, Mark wrote:
 
   Yeah - we think JRun is the main culprit (which is why we are
 abandoning
  it
   in favor of WebLogic).  I was just interested in other's experience to
   confirm our suspicions.
  
   Thanks,
   Mark
  
   -Original Message-
   From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, April 10, 2002 8:10 AM
   To: Struts Users Mailing List
   Subject: Re: New Site
  
  
   Galbreath, Mark wrote:
  
  This is not very encouraging.  At 6:30 AM EST on a T-1 I
 finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
  
   VoiceStream
  
  Global Wireless's new ecommerce sites) is that it slows processing and
  
   page
  
  deleivery considerably.  Anyone else notice this?
  
  
   No.
  
   I would look for a bug in your code, not in Struts. Have you run a
  profiler
   on it to see where it is spending it's time?
  
  
  Mark
  
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
  
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on
 Vignette (yuk) .
  While the content may not be to everyone's taste, it is popular, about
 19M
  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
  
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
  
  --
  To unsubscribe, e-mail:
  
   mailto:[EMAIL PROTECTED]
  
  For additional commands, e-mail:
  
   mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:
   mailto:[EMAIL PROTECTED]
   For additional commands, e-mail:
   mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
   For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
  
 
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: [OT] precompiling jsp with ant (prev 'RE: New Site')

2002-04-11 Thread Sandeep Takhar

does this work for weblogic.jspc -- I noticed that the
individual directories (if there are pages in
subdirectories) get compiled to the root directory (or
${jsp.dirs} in this case.

what to do in this case?

Sandeep
--- Galbreath, Mark [EMAIL PROTECTED] wrote:
 In build.xml:
 
 target name=jsp depends=web
   java classname = JSPC
 fork = yes
 failonerror = yes
 classpath=${antclasspath}
 
   arg line=-n -v -a ${jrun.app} -s ${jrun.server}
 -j ${jrun.dir} -w
 ${server.dir}\${jrun.app} ${jsp.dirs}/
 
   /java
 /target
 
 
 You have to plug in the utility and arguments for
 your particularly
 container.
 
 Mark
 
 -Original Message-
 From: Fabien Modoux [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 11:54 AM
 To: [EMAIL PROTECTED]
 Subject: [OT] precompiling jsp with ant (prev 'RE:
 New Site')
 
 
 Mark,
 
 Would you mind providing a sample ant code that does
 the JSP
 precompiling? I am currently doing that through a
 servlet, but
 using ANT would be much better... I looked on the
 ANT and
 Tomcat archives but I could not any info on how to
 do that.
 
 Thanks in advance,
 
 Fabien
 
 -
 Fabien Modoux,
 Voicemate - http://www.voicemate.com
 
 
 
  -Original Message-
  From: Galbreath, Mark
 [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 9:08 AM
  To: 'Struts Users Mailing List'
  Subject: RE: New Site
 
 
  Thanks for the suggestion - and it's a good one
 that everyone
  should heed if
  they have heavy-weight JSPs.  But ours are very
 light, and we have ANT
  precompile them on every deploy.
 
  Mark
 
  -Original Message-
  From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:36 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
 
  I would also check that your JSP's are
 pre-compiled.  The JSP's are
  compiled as servlets wen they are first called
 after changes.  That can
  take some time as well.  We have been getting
 excellent performance across
  a T1 over the Atlantic that goes from Philly to
 Raleigh to the UK and back
  aain.
 
  Jim Berg
  Sr. Software Specialist
  PSCI
  610-270-4158
  [EMAIL PROTECTED]
 
 
 
 
  Pete Carapetyan
 
  pete@datafundamentals
 
  .com
 
  
 To: Struts Users
  Mailing List
 
 
  10-Apr-2002 08:10   
 cc:
 
  Please respond to   
 Subject: Re: New Site
 
  Struts Users Mailing
 
  List
 
  [EMAIL PROTECTED]
 
  pache.org
 
 
 
 
 
 
 
 
  Galbreath, Mark wrote:
  
   This is not very encouraging.  At 6:30 AM EST on
 a T-1 I finally gave up
   when the page had not fully loaded after 3
 minutes(!!).  My personal
   experience with Struts (we are committed to it
 at this point for
  VoiceStream
   Global Wireless's new ecommerce sites) is that
 it slows processing and
  page
   deleivery considerably.  Anyone else notice
 this?
 
  No.
 
  I would look for a bug in your code, not in
 Struts. Have you run
  a profiler
  on it to see where it is spending it's time?
 
  
   Mark
  
   -Original Message-
   From: Martin Samm [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, April 09, 2002 8:27 AM
   To: [EMAIL PROTECTED]
   Subject: New Site
  
   Just thought i'd another 'Powered By Struts'
 site to the list -
   www.peoplenews.com.
   Its a showbiz / gossip site which until recently
 ran on Vignette (yuk) .
   While the content may not be to everyone's
 taste, it is popular, about
  19M
   hits last month. It's been running for 2 days,
 so may have a couple of
   teething problems, but it does seem to have
 scaled well.
   --
   Martin Samm
   [EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:
  
 mailto:[EMAIL PROTECTED]
   For additional commands, e-mail:
   mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
   For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 
  --
  To unsubscribe, e-mail:
 
=== message truncated ===


__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-11 Thread @Basebeans.com

Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
I do a roll you own RSS based.
Vic

John Jones wrote:

 Do you know which content management solution they switched to that works
 with Struts?
 
 - Original Message -
 From: Galbreath, Mark [EMAIL PROTECTED]
 To: 'Struts Users Mailing List' [EMAIL PROTECTED]
 Sent: Wednesday, April 10, 2002 10:28 AM
 Subject: RE: New Site
 
 
 
We, in fact, are considering Oracle 9ias (built on Orion).  We are
considering WebLogic only because we are in the process of making the
decision to outsource the hosting and every major vendor seems to support
WebLogic only.

Mark

-Original Message-
From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 9:40 AM
To: [EMAIL PROTECTED]
Subject: Re: New Site


Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
Weblogic is expensive. Consider Resin...  or OrionServer.com.

Galbreath, Mark wrote:


Yeah - we think JRun is the main culprit (which is why we are abandoning

it

in favor of WebLogic).  I was just interested in other's experience to
confirm our suspicions.

Thanks,
Mark

-Original Message-
From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 8:10 AM
To: Struts Users Mailing List
Subject: Re: New Site


Galbreath, Mark wrote:


This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
when the page had not fully loaded after 3 minutes(!!).  My personal
experience with Struts (we are committed to it at this point for


VoiceStream


Global Wireless's new ecommerce sites) is that it slows processing and


page


deleivery considerably.  Anyone else notice this?


No.

I would look for a bug in your code, not in Struts. Have you run a

profiler

on it to see where it is spending it's time?



Mark

-Original Message-
From: Martin Samm [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 8:27 AM
To: [EMAIL PROTECTED]
Subject: New Site

Just thought i'd another 'Powered By Struts' site to the list -
www.peoplenews.com.
Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
While the content may not be to everyone's taste, it is popular, about

 19M
 
hits last month. It's been running for 2 days, so may have a couple of
teething problems, but it does seem to have scaled well.
--
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:


mailto:[EMAIL PROTECTED]

For additional commands, e-mail:


mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:

mailto:[EMAIL PROTECTED]

For additional commands, e-mail:

mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:

 mailto:[EMAIL PROTECTED]
 
For additional commands, e-mail:

 mailto:[EMAIL PROTECTED]
 
 
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Galbreath, Mark

This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
when the page had not fully loaded after 3 minutes(!!).  My personal
experience with Struts (we are committed to it at this point for VoiceStream
Global Wireless's new ecommerce sites) is that it slows processing and page
deleivery considerably.  Anyone else notice this?

Mark

-Original Message-
From: Martin Samm [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 8:27 AM
To: [EMAIL PROTECTED]
Subject: New Site


Just thought i'd another 'Powered By Struts' site to the list - 
www.peoplenews.com.
Its a showbiz / gossip site which until recently ran on Vignette (yuk) . 
While the content may not be to everyone's taste, it is popular, about 19M 
hits last month. It's been running for 2 days, so may have a couple of 
teething problems, but it does seem to have scaled well.
-- 
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread Pete Carapetyan

Galbreath, Mark wrote:
 
 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for VoiceStream
 Global Wireless's new ecommerce sites) is that it slows processing and page
 deleivery considerably.  Anyone else notice this?

No.

I would look for a bug in your code, not in Struts. Have you run a profiler on it to 
see where it is spending it's time?

 
 Mark
 
 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site
 
 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about 19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread Jefferson Rodrigues de Oliveira e Silva

Yes, it took some time to come up totally!

Jefferson


Galbreath, Mark wrote:

 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for VoiceStream
 Global Wireless's new ecommerce sites) is that it slows processing and page
 deleivery considerably.  Anyone else notice this?

 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site

 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about 19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Arnaud Heritier

It is a little slow but it's depend of the server.

Can you tell us what is the server side architecture.

JDBC ? EJB ??

Which server do you use : Tomcat ?.? (+Apache ?.?), Weblogic, 

What is the Hardware  and the OS ???

I know, I'm very curious but all this parameters alter the result.

Arno

 -Message d'origine-
 De:   Martin Samm [SMTP:[EMAIL PROTECTED]]
 Date: mardi 9 avril 2002 14:27
 A:[EMAIL PROTECTED]
 Objet:New Site
 
 Just thought i'd another 'Powered By Struts' site to the list - 
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) . 
 While the content may not be to everyone's taste, it is popular, about 19M 
 hits last month. It's been running for 2 days, so may have a couple of 
 teething problems, but it does seem to have scaled well.
 -- 
 Martin Samm
 [EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread Jim.W.Berg

I would also check that your JSP's are pre-compiled.  The JSP's are
compiled as servlets wen they are first called after changes.  That can
take some time as well.  We have been getting excellent performance across
a T1 over the Atlantic that goes from Philly to Raleigh to the UK and back
aain.

Jim Berg
Sr. Software Specialist
PSCI
610-270-4158
[EMAIL PROTECTED]


   

Pete Carapetyan  

pete@datafundamentals 

.com  

 To: Struts Users Mailing List   

   

10-Apr-2002 08:10cc:   

Please respond toSubject: Re: New Site 

Struts Users Mailing  

List  

[EMAIL PROTECTED] 

pache.org 

   

   




Galbreath, Mark wrote:

 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for
VoiceStream
 Global Wireless's new ecommerce sites) is that it slows processing and
page
 deleivery considerably.  Anyone else notice this?

No.

I would look for a bug in your code, not in Struts. Have you run a profiler
on it to see where it is spending it's time?


 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site

 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about
19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]







--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Galbreath, Mark

Thanks for the suggestion - and it's a good one that everyone should heed if
they have heavy-weight JSPs.  But ours are very light, and we have ANT
precompile them on every deploy.

Mark

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 8:36 AM
To: Struts Users Mailing List
Subject: Re: New Site


I would also check that your JSP's are pre-compiled.  The JSP's are
compiled as servlets wen they are first called after changes.  That can
take some time as well.  We have been getting excellent performance across
a T1 over the Atlantic that goes from Philly to Raleigh to the UK and back
aain.

Jim Berg
Sr. Software Specialist
PSCI
610-270-4158
[EMAIL PROTECTED]


 

Pete Carapetyan

pete@datafundamentals

.com

 To: Struts Users
Mailing List   
 

10-Apr-2002 08:10cc:

Please respond toSubject: Re: New Site

Struts Users Mailing

List

[EMAIL PROTECTED]

pache.org

 

 




Galbreath, Mark wrote:

 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for
VoiceStream
 Global Wireless's new ecommerce sites) is that it slows processing and
page
 deleivery considerably.  Anyone else notice this?

No.

I would look for a bug in your code, not in Struts. Have you run a profiler
on it to see where it is spending it's time?


 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site

 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about
19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]







--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Cakalic, James

We're using WebSphere Advanced 4.0.2 with a nightly build of Struts from
January. We've got a somewhat non-traditional EJB implementation -- only
one stateless session bean that acts as an in-container target for commands.
And we are not using JSP -- all our presentation is done using Enhydra XMLC.
Even running this configuration on our desktop development systems with 1G
processors and 256M of memory we haven't encountered any Struts-related
performance problems.

Jim

 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:05 AM
 To: 'Struts Users Mailing List'
 Subject: RE: New Site
 
 
 Yeah - we think JRun is the main culprit (which is why we are 
 abandoning it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.
 
 Thanks,
 Mark
 
 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site
 
 
 Galbreath, Mark wrote:
  
  This is not very encouraging.  At 6:30 AM EST on a T-1 I 
 finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
 VoiceStream
  Global Wireless's new ecommerce sites) is that it slows 
 processing and
 page
  deleivery considerably.  Anyone else notice this?
 
 No.
 
 I would look for a bug in your code, not in Struts. Have you 
 run a profiler
 on it to see where it is spending it's time?
 
  
  Mark
  
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
  
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on 
 Vignette (yuk) .
  While the content may not be to everyone's taste, it is 
 popular, about 19M
  hits last month. It's been running for 2 days, so may have 
 a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
  
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
  
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 


font size=1Confidentiality Warning:  This e-mail contains information intended 
only for the use of the individual or entity named above.  If the reader of this 
e-mail is not the intended recipient or the employee or agent responsible for 
delivering it to the intended recipient, any dissemination, publication or copying of 
this e-mail is strictly prohibited. The sender does not accept any responsibility for 
any loss, disruption or damage to your data or computer system that may occur while 
using data contained in, or transmitted with, this e-mail.   If you have received this 
e-mail in error, please immediately notify us by return e-mail.  Thank you.




Re: New Site

2002-04-10 Thread @Basebeans.com

Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
Weblogic is expensive. Consider Resin...  or OrionServer.com.

Galbreath, Mark wrote:

 Yeah - we think JRun is the main culprit (which is why we are abandoning it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.
 
 Thanks,
 Mark
 
 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site
 
 
 Galbreath, Mark wrote:
 
This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
when the page had not fully loaded after 3 minutes(!!).  My personal
experience with Struts (we are committed to it at this point for

 VoiceStream
 
Global Wireless's new ecommerce sites) is that it slows processing and

 page
 
deleivery considerably.  Anyone else notice this?

 
 No.
 
 I would look for a bug in your code, not in Struts. Have you run a profiler
 on it to see where it is spending it's time?
 
 
Mark

-Original Message-
From: Martin Samm [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 8:27 AM
To: [EMAIL PROTECTED]
Subject: New Site

Just thought i'd another 'Powered By Struts' site to the list -
www.peoplenews.com.
Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
While the content may not be to everyone's taste, it is popular, about 19M
hits last month. It's been running for 2 days, so may have a couple of
teething problems, but it does seem to have scaled well.
--
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:

 mailto:[EMAIL PROTECTED]
 
For additional commands, e-mail:

 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread @Basebeans.com

Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
Sorry... It is just so slow.
Always, always stress test before deploying... it save money.
http://webtool.rte.microsoft.com/download.asp is one stress test

Vic Cekvenich wrote:

 And JRockit.com or IBM for a VM.  (tags are slow on Sun JDK 1.3)
 
 Vic Cekvenich wrote:
 
 Weblogic is expensive. Consider Resin...  or OrionServer.com.

 Galbreath, Mark wrote:

 Yeah - we think JRun is the main culprit (which is why we are 
 abandoning it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.

 Thanks,
 Mark

 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site


 Galbreath, Mark wrote:

 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally 
 gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for

 VoiceStream

 Global Wireless's new ecommerce sites) is that it slows processing and

 page

 deleivery considerably.  Anyone else notice this?


 No.

 I would look for a bug in your code, not in Struts. Have you run a 
 profiler
 on it to see where it is spending it's time?


 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site

 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette 
 (yuk) .
 While the content may not be to everyone's taste, it is popular, 
 about 19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 -- 
 Martin Samm
 [EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:

 mailto:[EMAIL PROTECTED]

 For additional commands, e-mail:

 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]


 


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread @Basebeans.com

Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
And JRockit.com or IBM for a VM.  (tags are slow on Sun JDK 1.3)

Vic Cekvenich wrote:

 Weblogic is expensive. Consider Resin...  or OrionServer.com.
 
 Galbreath, Mark wrote:
 
 Yeah - we think JRun is the main culprit (which is why we are 
 abandoning it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.

 Thanks,
 Mark

 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site


 Galbreath, Mark wrote:

 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for

 VoiceStream

 Global Wireless's new ecommerce sites) is that it slows processing and

 page

 deleivery considerably.  Anyone else notice this?


 No.

 I would look for a bug in your code, not in Struts. Have you run a 
 profiler
 on it to see where it is spending it's time?


 Mark

 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site

 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, 
 about 19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 -- 
 Martin Samm
 [EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:

 mailto:[EMAIL PROTECTED]

 For additional commands, e-mail:

 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 -- 
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]

 


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Galbreath, Mark

We, in fact, are considering Oracle 9ias (built on Orion).  We are
considering WebLogic only because we are in the process of making the
decision to outsource the hosting and every major vendor seems to support
WebLogic only.

Mark

-Original Message-
From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 9:40 AM
To: [EMAIL PROTECTED]
Subject: Re: New Site


Subject: Re: New Site
From: Vic Cekvenich [EMAIL PROTECTED]
 ===
Weblogic is expensive. Consider Resin...  or OrionServer.com.

Galbreath, Mark wrote:

 Yeah - we think JRun is the main culprit (which is why we are abandoning
it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.
 
 Thanks,
 Mark
 
 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site
 
 
 Galbreath, Mark wrote:
 
This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
when the page had not fully loaded after 3 minutes(!!).  My personal
experience with Struts (we are committed to it at this point for

 VoiceStream
 
Global Wireless's new ecommerce sites) is that it slows processing and

 page
 
deleivery considerably.  Anyone else notice this?

 
 No.
 
 I would look for a bug in your code, not in Struts. Have you run a
profiler
 on it to see where it is spending it's time?
 
 
Mark

-Original Message-
From: Martin Samm [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 8:27 AM
To: [EMAIL PROTECTED]
Subject: New Site

Just thought i'd another 'Powered By Struts' site to the list -
www.peoplenews.com.
Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
While the content may not be to everyone's taste, it is popular, about 19M
hits last month. It's been running for 2 days, so may have a couple of
teething problems, but it does seem to have scaled well.
--
Martin Samm
[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:

 mailto:[EMAIL PROTECTED]
 
For additional commands, e-mail:

 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]
 


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




[OT] precompiling jsp with ant (prev 'RE: New Site')

2002-04-10 Thread Fabien Modoux

Mark,

Would you mind providing a sample ant code that does the JSP
precompiling? I am currently doing that through a servlet, but
using ANT would be much better... I looked on the ANT and
Tomcat archives but I could not any info on how to do that.

Thanks in advance,

Fabien

-
Fabien Modoux,
Voicemate - http://www.voicemate.com



 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:08 AM
 To: 'Struts Users Mailing List'
 Subject: RE: New Site


 Thanks for the suggestion - and it's a good one that everyone
 should heed if
 they have heavy-weight JSPs.  But ours are very light, and we have ANT
 precompile them on every deploy.

 Mark

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:36 AM
 To: Struts Users Mailing List
 Subject: Re: New Site


 I would also check that your JSP's are pre-compiled.  The JSP's are
 compiled as servlets wen they are first called after changes.  That can
 take some time as well.  We have been getting excellent performance across
 a T1 over the Atlantic that goes from Philly to Raleigh to the UK and back
 aain.

 Jim Berg
 Sr. Software Specialist
 PSCI
 610-270-4158
 [EMAIL PROTECTED]




 Pete Carapetyan

 pete@datafundamentals

 .com

  To: Struts Users
 Mailing List


 10-Apr-2002 08:10cc:

 Please respond toSubject: Re: New Site

 Struts Users Mailing

 List

 [EMAIL PROTECTED]

 pache.org








 Galbreath, Mark wrote:
 
  This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
 VoiceStream
  Global Wireless's new ecommerce sites) is that it slows processing and
 page
  deleivery considerably.  Anyone else notice this?

 No.

 I would look for a bug in your code, not in Struts. Have you run
 a profiler
 on it to see where it is spending it's time?

 
  Mark
 
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
 
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
  While the content may not be to everyone's taste, it is popular, about
 19M
  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]







 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: New Site

2002-04-10 Thread Stuart Charlton

We run JRun 3 + Struts with no notable performance problems on
www.codenotes.com ... on a fairly modest hardware.  

JRun has been fast for us, but we don't use EJB.

Cheers
_
Stuart Charlton
Infusion Development Corp.
Tel:  (212) 732-6100 x109   Free:  (888) INFUSE-8
Authors of the CodeNotes book series
visit www.codenotes.com
 
 

 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:05 AM
 To: 'Struts Users Mailing List'
 Subject: RE: New Site
 
 Yeah - we think JRun is the main culprit (which is why we are abandoning
 it
 in favor of WebLogic).  I was just interested in other's experience to
 confirm our suspicions.
 
 Thanks,
 Mark
 
 -Original Message-
 From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:10 AM
 To: Struts Users Mailing List
 Subject: Re: New Site
 
 
 Galbreath, Mark wrote:
 
  This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
 VoiceStream
  Global Wireless's new ecommerce sites) is that it slows processing and
 page
  deleivery considerably.  Anyone else notice this?
 
 No.
 
 I would look for a bug in your code, not in Struts. Have you run a
 profiler
 on it to see where it is spending it's time?
 
 
  Mark
 
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
 
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
  While the content may not be to everyone's taste, it is popular, about
 19M
  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:struts-user-
 [EMAIL PROTECTED]
 For additional commands, e-mail: mailto:struts-user-
 [EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: [OT] precompiling jsp with ant (prev 'RE: New Site')

2002-04-10 Thread Galbreath, Mark

In build.xml:

target name=jsp depends=web
  java classname = JSPC
fork = yes
failonerror = yes
  classpath=${antclasspath}

  arg line=-n -v -a ${jrun.app} -s ${jrun.server} -j ${jrun.dir} -w
${server.dir}\${jrun.app} ${jsp.dirs}/

  /java
/target


You have to plug in the utility and arguments for your particularly
container.

Mark

-Original Message-
From: Fabien Modoux [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 10, 2002 11:54 AM
To: [EMAIL PROTECTED]
Subject: [OT] precompiling jsp with ant (prev 'RE: New Site')


Mark,

Would you mind providing a sample ant code that does the JSP
precompiling? I am currently doing that through a servlet, but
using ANT would be much better... I looked on the ANT and
Tomcat archives but I could not any info on how to do that.

Thanks in advance,

Fabien

-
Fabien Modoux,
Voicemate - http://www.voicemate.com



 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:08 AM
 To: 'Struts Users Mailing List'
 Subject: RE: New Site


 Thanks for the suggestion - and it's a good one that everyone
 should heed if
 they have heavy-weight JSPs.  But ours are very light, and we have ANT
 precompile them on every deploy.

 Mark

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 8:36 AM
 To: Struts Users Mailing List
 Subject: Re: New Site


 I would also check that your JSP's are pre-compiled.  The JSP's are
 compiled as servlets wen they are first called after changes.  That can
 take some time as well.  We have been getting excellent performance across
 a T1 over the Atlantic that goes from Philly to Raleigh to the UK and back
 aain.

 Jim Berg
 Sr. Software Specialist
 PSCI
 610-270-4158
 [EMAIL PROTECTED]




 Pete Carapetyan

 pete@datafundamentals

 .com

  To: Struts Users
 Mailing List


 10-Apr-2002 08:10cc:

 Please respond toSubject: Re: New Site

 Struts Users Mailing

 List

 [EMAIL PROTECTED]

 pache.org








 Galbreath, Mark wrote:
 
  This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
  when the page had not fully loaded after 3 minutes(!!).  My personal
  experience with Struts (we are committed to it at this point for
 VoiceStream
  Global Wireless's new ecommerce sites) is that it slows processing and
 page
  deleivery considerably.  Anyone else notice this?

 No.

 I would look for a bug in your code, not in Struts. Have you run
 a profiler
 on it to see where it is spending it's time?

 
  Mark
 
  -Original Message-
  From: Martin Samm [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 09, 2002 8:27 AM
  To: [EMAIL PROTECTED]
  Subject: New Site
 
  Just thought i'd another 'Powered By Struts' site to the list -
  www.peoplenews.com.
  Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
  While the content may not be to everyone's taste, it is popular, about
 19M
  hits last month. It's been running for 2 days, so may have a couple of
  teething problems, but it does seem to have scaled well.
  --
  Martin Samm
  [EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]







 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: [OT] precompiling jsp with ant (prev 'RE: New Site')

2002-04-10 Thread Fabien Modoux

Thanks a lot, this is very helpful.

Fabien

-
Fabien Modoux,
Voicemate - http://www.voicemate.com



 -Original Message-
 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 4:59 PM
 To: 'Struts Users Mailing List'
 Subject: RE: [OT] precompiling jsp with ant (prev 'RE: New Site')


 In build.xml:

 target name=jsp depends=web
   java classname = JSPC
 fork = yes
 failonerror = yes
 classpath=${antclasspath}

   arg line=-n -v -a ${jrun.app} -s ${jrun.server} -j ${jrun.dir} -w
 ${server.dir}\${jrun.app} ${jsp.dirs}/

   /java
 /target


 You have to plug in the utility and arguments for your particularly
 container.

 Mark

 -Original Message-
 From: Fabien Modoux [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 11:54 AM
 To: [EMAIL PROTECTED]
 Subject: [OT] precompiling jsp with ant (prev 'RE: New Site')


 Mark,

 Would you mind providing a sample ant code that does the JSP
 precompiling? I am currently doing that through a servlet, but
 using ANT would be much better... I looked on the ANT and
 Tomcat archives but I could not any info on how to do that.

 Thanks in advance,

 Fabien

 -
 Fabien Modoux,
 Voicemate - http://www.voicemate.com



  -Original Message-
  From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 9:08 AM
  To: 'Struts Users Mailing List'
  Subject: RE: New Site
 
 
  Thanks for the suggestion - and it's a good one that everyone
  should heed if
  they have heavy-weight JSPs.  But ours are very light, and we have ANT
  precompile them on every deploy.
 
  Mark
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:36 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
 
  I would also check that your JSP's are pre-compiled.  The JSP's are
  compiled as servlets wen they are first called after changes.  That can
  take some time as well.  We have been getting excellent
 performance across
  a T1 over the Atlantic that goes from Philly to Raleigh to the
 UK and back
  aain.
 
  Jim Berg
  Sr. Software Specialist
  PSCI
  610-270-4158
  [EMAIL PROTECTED]
 
 
 
 
  Pete Carapetyan
 
  pete@datafundamentals
 
  .com
 
   To: Struts Users
  Mailing List
 
 
  10-Apr-2002 08:10cc:
 
  Please respond toSubject:
 Re: New Site
 
  Struts Users Mailing
 
  List
 
  [EMAIL PROTECTED]
 
  pache.org
 
 
 
 
 
 
 
 
  Galbreath, Mark wrote:
  
   This is not very encouraging.  At 6:30 AM EST on a T-1 I
 finally gave up
   when the page had not fully loaded after 3 minutes(!!).  My personal
   experience with Struts (we are committed to it at this point for
  VoiceStream
   Global Wireless's new ecommerce sites) is that it slows processing and
  page
   deleivery considerably.  Anyone else notice this?
 
  No.
 
  I would look for a bug in your code, not in Struts. Have you run
  a profiler
  on it to see where it is spending it's time?
 
  
   Mark
  
   -Original Message-
   From: Martin Samm [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, April 09, 2002 8:27 AM
   To: [EMAIL PROTECTED]
   Subject: New Site
  
   Just thought i'd another 'Powered By Struts' site to the list -
   www.peoplenews.com.
   Its a showbiz / gossip site which until recently ran on
 Vignette (yuk) .
   While the content may not be to everyone's taste, it is popular, about
  19M
   hits last month. It's been running for 2 days, so may have a couple of
   teething problems, but it does seem to have scaled well.
   --
   Martin Samm
   [EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:
   mailto:[EMAIL PROTECTED]
   For additional commands, e-mail:
   mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
   For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: New Site

2002-04-10 Thread John Jones

Do you know which content management solution they switched to that works
with Struts?

- Original Message -
From: Galbreath, Mark [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Wednesday, April 10, 2002 10:28 AM
Subject: RE: New Site


 We, in fact, are considering Oracle 9ias (built on Orion).  We are
 considering WebLogic only because we are in the process of making the
 decision to outsource the hosting and every major vendor seems to support
 WebLogic only.

 Mark

 -Original Message-
 From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 10, 2002 9:40 AM
 To: [EMAIL PROTECTED]
 Subject: Re: New Site


 Subject: Re: New Site
 From: Vic Cekvenich [EMAIL PROTECTED]
  ===
 Weblogic is expensive. Consider Resin...  or OrionServer.com.

 Galbreath, Mark wrote:

  Yeah - we think JRun is the main culprit (which is why we are abandoning
 it
  in favor of WebLogic).  I was just interested in other's experience to
  confirm our suspicions.
 
  Thanks,
  Mark
 
  -Original Message-
  From: Pete Carapetyan [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, April 10, 2002 8:10 AM
  To: Struts Users Mailing List
  Subject: Re: New Site
 
 
  Galbreath, Mark wrote:
 
 This is not very encouraging.  At 6:30 AM EST on a T-1 I finally gave up
 when the page had not fully loaded after 3 minutes(!!).  My personal
 experience with Struts (we are committed to it at this point for
 
  VoiceStream
 
 Global Wireless's new ecommerce sites) is that it slows processing and
 
  page
 
 deleivery considerably.  Anyone else notice this?
 
 
  No.
 
  I would look for a bug in your code, not in Struts. Have you run a
 profiler
  on it to see where it is spending it's time?
 
 
 Mark
 
 -Original Message-
 From: Martin Samm [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 09, 2002 8:27 AM
 To: [EMAIL PROTECTED]
 Subject: New Site
 
 Just thought i'd another 'Powered By Struts' site to the list -
 www.peoplenews.com.
 Its a showbiz / gossip site which until recently ran on Vignette (yuk) .
 While the content may not be to everyone's taste, it is popular, about
19M
 hits last month. It's been running for 2 days, so may have a couple of
 teething problems, but it does seem to have scaled well.
 --
 Martin Samm
 [EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
 For additional commands, e-mail:
 
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]