Urb,

I recently installed ActivePerl (http://www.activestate.com/ActivePerl/) on my
NT server with IIS 4.0 and found the process painless (I too was mostly a Perl
UNIX guy). I think you could probably figure out how to do this yourself if you
have a spare hour or two. 

I've appended my oh-so exciting "hello world" test script (test.pl). There's
also an ActiveState Perl for ISAPI plug-in for IIS that is supposed to make
things faster than running just regular perl (the extension becomes .plx for
this).

You don't have to put the "#!/usr/bin/perl" line at the top of the file like
you do for UNIX (perl is invoked based on the file extension). One big place
where NT and UNIX perl seem to differ is when you call out to the operating
system (with system or the backquote syntax). I've found the O'Reilly Learning
Perl for Win32 helpful in that respect.

--bruce

print "Content-type: text/html\n\n";

print "<html><body>";
for ($i=0;$i<1000;$i++) {
    print "hello world";
}
print "</body></html>";


At 04:28 AM 2/6/99 , Urb LeJeune wrote:
>       I've been programming Perl for almost 5 years, however, zero experience
on
>an NT. 
>
>       Is there anyone on the list would would be interested in installing
Perl
>on an NT server and taking me through the execution of a simple "Hello
>World" like application? Just don't have the time to do the research.

------------------------------------------------------------
Hart Consulting                   http://www.hartcons.com/
Web Design & Engineering Studio   Silicon Valley, California
650-967-6162                      1-800-749-8032 (fax)
------------------------------------------------------------
              
____________________________________________________________________
--------------------------------------------------------------------
 Join The NEW Web Consultants Association FORUMS and CHAT:
   Register Today at: http://just4u.com/forums/
Web Consultants Web Site : http://just4u.com/webconsultants
   Give the Gift of Life This Year...
     Just4U Stop Smoking Support forum - helping smokers for
      over three years-tell a friend: http://just4u.com/forums/
          To get 500 Banner Ads for FREE
    go to http://www.linkbuddies.com/start.go?id=111261
---------------------------------------------------------------------

Reply via email to