RE: perl and application server..

2004-02-16 Thread NYIMI Jose (BMB)
Hello,

Give a look to this article from perl.com
I contains a lot of interesting infos related to your question:

http://www.perl.com/lpt/a/2001/10/17/etoys.html

HTH,

José.

-Original Message-
From: Joe Echavarria [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 13, 2004 9:25 PM
To: [EMAIL PROTECTED]
Subject: perl and application server..


Hi there,

  Is there a way to work with perl as a Java, with and application server in other to 
separate the presentation from the business logic ?,  Thanks for any help.

__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online. 
http://taxes.yahoo.com/filing.html

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





 DISCLAIMER 

"This e-mail and any attachment thereto may contain information which is confidential 
and/or protected by intellectual property rights and are intended for the sole use of 
the recipient(s) named above. 
Any use of the information contained herein (including, but not limited to, total or 
partial reproduction, communication or distribution in any form) by other persons than 
the designated recipient(s) is prohibited. 
If you have received this e-mail in error, please notify the sender either by 
telephone or by e-mail and delete the material from any computer".

Thank you for your cooperation.

For further information about Proximus mobile phone services please see our website at 
http://www.proximus.be or refer to any Proximus agent.


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




Re: perl and application server..

2004-02-15 Thread Jenda Krynicky
From: "R. Joseph Newton" <[EMAIL PROTECTED]>
> Joe Echavarria wrote:
> > Hi there,
> >
> >   Is there a way to work with perl as a Java,
> > with and
> > application server
> 
> Perl works fine as a server side programming language.  It is very
> well suited to the middle [business logic] tier of a three-tier
> system.  The CGI module makes it very easy to receive data or requests
> from Web clients, and the DBI module provides facilities for
> connecting with the database server.  Your Perl programs can then
> focus on what needs to be done between requestor and database.

I think Joe means something like mod_perl. 

Jenda
= [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
-- Terry Pratchett in Sourcery


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




Re: perl and application server..

2004-02-13 Thread R. Joseph Newton
Joe Echavarria wrote:

> Hi there,
>
>   Is there a way to work with perl as a Java,

What is "a Java"  There is only one Java programming language, and Perl is a
different language. If you mean a Java Applet, then no, Perl doesn't have any
extensions for working inside a browser.  You can post to a Perl-based
application from a Java Applet, though.  You can also use JavaScript [a third
language, with no relationship to the other two] to handle some client side
chores.

> with and
> application server

Perl works fine as a server side programming language.  It is very well suited
to the middle [business logic] tier of a three-tier system.  The CGI module
makes it very easy to receive data or requests from Web clients, and the DBI
module provides facilities for connecting with the database server.  Your Perl
programs can then focus on what needs to be done between requestor and database.

> in other to separate the
> presentation from the business logic ?,  Thanks for
> any help.

Well, I hope that helps.  I am sort of guessing on what it is you want, though.

Joseph



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