Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Perl > Perl Misc > Going from ASP and ASP.NET to Perl

Reply
Thread Tools

Going from ASP and ASP.NET to Perl

 
 
j_macaroni@yahoo.com
Guest
Posts: n/a
 
      04-14-2006
The main reason is so that I develop web apps to be compatible on both
Windows and Linux. I looked at the other langs (PHP, Python, Java) but
Perl seems to have the best balance of scripting, libraries. The
language is scary that it allows you to do so many things.

These are development tools all under Windows for now:

1) Komodo using ActivePerl
2) MySQL
3) Apache for Windows

Some questions:

Can anyone recd a good report designer that will create reports to run
under Windows and Linux? Under Windows I like http://DataDynamics.com
ActiveReports report writer but I would prefer to use a report designer
that will create code to run under both Linux and Windows.

With ASP you can set up session and application variables and remain
persistent across page requests. How do you do this with Perl/CGI?

Can I run Apache concurrently with IIS? If I setup
localhost/myapps/index.html how do I make ot so Apache processes the
page instead of IIS?

Thanks for your help.

 
Reply With Quote
 
 
 
 
Matt Garrish
Guest
Posts: n/a
 
      04-14-2006

<> wrote in message
news: oups.com...
> The main reason is so that I develop web apps to be compatible on both
> Windows and Linux. I looked at the other langs (PHP, Python, Java) but
> Perl seems to have the best balance of scripting, libraries. The
> language is scary that it allows you to do so many things.
>
> These are development tools all under Windows for now:
>
> 1) Komodo using ActivePerl
> 2) MySQL
> 3) Apache for Windows
>
> Some questions:
>
> Can anyone recd a good report designer that will create reports to run
> under Windows and Linux? Under Windows I like http://DataDynamics.com
> ActiveReports report writer but I would prefer to use a report designer
> that will create code to run under both Linux and Windows.
>
> With ASP you can set up session and application variables and remain
> persistent across page requests. How do you do this with Perl/CGI?
>


Take a look at the Apache::ASP module. You can keep within the ASP world
while still writing code that can be run on any server Apache can run on.

> Can I run Apache concurrently with IIS? If I setup
> localhost/myapps/index.html how do I make ot so Apache processes the
> page instead of IIS?
>


If you have separate IPs for each server, yes. If not, then no. They can't
both be listening on port 80.

Matt


 
Reply With Quote
 
 
 
 
Brian Wakem
Guest
Posts: n/a
 
      04-14-2006
Matt Garrish wrote:

>
> <> wrote in message
> news: oups.com...
>> Can I run Apache concurrently with IIS? If I setup
>> localhost/myapps/index.html how do I make ot so Apache processes the
>> page instead of IIS?
>>

>
> If you have separate IPs for each server, yes. If not, then no. They can't
> both be listening on port 80.



Of course they don't have to listen on the same port....



--
Brian Wakem
Email: http://homepage.ntlworld.com/b.wakem/myemail.png
 
Reply With Quote
 
Matt Garrish
Guest
Posts: n/a
 
      04-14-2006

"Brian Wakem" <> wrote in message
news:...
> Matt Garrish wrote:
>
>>
>> <> wrote in message
>> news: oups.com...
>>> Can I run Apache concurrently with IIS? If I setup
>>> localhost/myapps/index.html how do I make ot so Apache processes the
>>> page instead of IIS?
>>>

>>
>> If you have separate IPs for each server, yes. If not, then no. They
>> can't
>> both be listening on port 80.

>
>
> Of course they don't have to listen on the same port....
>


Ahh, missed the localhost part of his question. I thought he was asking if
this could be done for production. I'd still prefer two IPs to appending the
port for development, though... : )

Matt


 
Reply With Quote
 
jdrago_999
Guest
Posts: n/a
 
      04-15-2006
I agree - I have been using Apache::ASP for a couple years now and have
to say it is pretty good.

The Microsoft guys at work can get up to speed quickly too, since the
<% %> syntax is the same.

Apache::ASP has several major benefits over normal IIS/ASP though,
including:

* Perl
* Apache
* sub Script_On(Start|End|Parse|Flush) in the global.asa
* $Request->Upload( 'fieldname' )
* $Request->Include( ... )
* $Request->TrapInclude( ... )
* $Server->Mail( ... )
* $Server->RegisterCleanup( sub { ... } )
* XML-style tag libraries

It is possible (though undocumented at this point in time) to use
Apache::ASP with database-persisted Sessions (via Apache::Session).

Apache::ASP can be configured to automatically email you error reports,
so you know when server errors happen, even if you're not watching the
log files.

The Apache::ASP mailing list ( check out
http://www.apache-asp.org/support.html ) is active and has several
regulars there to answer your questions.

Apache::ASP installs right out of the box via the CPAN module on Win32
and on Linux.

Regards,
John Drago

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
OT: Windows XP: Going, going ... gone? OTHMAN MCSE 2 03-25-2008 04:45 PM
XP search going all lame on me..explorer going crazy when trying tosearch. fotoobscura Computer Support 8 01-12-2008 01:09 AM
Firefighters at the site of WTC7 "Move away the building is going to blow up, get back the building is going to blow up." Midex Python 24 05-07-2007 04:23 AM
floppy drive just keeps on going and going and ... Weylon Bulloch Computer Support 1 09-07-2003 07:17 AM
VPN going up but traffic going one way PLP Cisco 1 07-11-2003 08:28 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57