Re: PerlScript OLE browser [was How to simulate VB "Casting" for $perl_objects via Win32::OLE?]

2009-12-17 Thread w...@serensoft.com
Woo hoo, yes indeed! That did the trick. Thanks, Jan! BTW -- Jan, I don't recall the last time I posted a newbie-ish question and got as much information-packed help as what you've been providing here. Kudos! Thanks a bunch, keep up the good work... On Wed, Dec 16, 2009 at 6:42 PM, Jan Dubois w

RE: PerlScript OLE browser [was How to simulate VB "Casting" for $perl_objects via Win32::OLE?]

2009-12-16 Thread Jan Dubois
Ok, here is what Graham from ActiveState support tells me: You may also need to go to the "Security" tab in the "Internet Options", select "Local intranet" and click on the "Sites" button. Then disable the "Automatically detect intranet network" and instead select the individual choices under

Re: perlscript performance in ASP

2003-10-20 Thread Trevor Joerges [SendMIME Software]
ActiveState makes PerlEx that is supposed to embed the Perl interpreter into IIS much like Apache and mod_perl. It allows you to take advantage of things like persistent data connections and embedding Perl code directly into HTML much like say PHP. Then of course there is always moving to Apache +

RE: perlscript killing me

2002-12-02 Thread Nikko Odiseos
Seems like anytime I try to use "use " I get these errors.. Just adding "use CGI;" at the top of the script chokes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Nikko Odiseos Sent: Monday, December 02, 2002 9:17 AM To: [EMAIL PROTECTED] Subject

RE: PerlScript Sans VBScript/Javascript

2002-05-21 Thread Aaron Trevena
> a) Has anybody observed any **serious** performance degradation with > PerlScript engine of AS? > > I haven't worked with PerlScript in ASP for two years now, but never saw > *any* performance problems when I did... well except for DB > connections not closing, but that was my fault. Perlscript

Re: PerlScript Sans VBScript/Javascript

2002-05-20 Thread Steve Combs
> From: "Arul, Rex" <[EMAIL PROTECTED]> > Subject: PerlScript Sans VBScript/Javascript > Date: Mon, 20 May 2002 13:50:56 -0400 > > ...However, I am wondering about the robustness of PerlScript > vis-a-vis, Microsoft's JavaScript/VBScript engines. > ... > b) Anybody observed any frequent crash prob

RE: PerlScript Sans VBScript/Javascript

2002-05-20 Thread Hanson, Robert
a) Has anybody observed any **serious** performance degradation with PerlScript engine of AS? I haven't worked with PerlScript in ASP for two years now, but never saw *any* performance problems when I did... well except for DB connections not closing, but that was my fault. b) Anybody observed

RE: Perlscript

2001-10-12 Thread Tillman, James
> I have a question. I wrote a perl script and included it into > an ASP page > using Perscript with no problem. > > The thing is that when I hit the refresh button of the web > explorer the page > doesnt come out. It comes out only the first time I load it. > What could be > the reason? Unle

Re: PerlScript Engine

2001-04-23 Thread ryddler
AR> I had been using VBScript and JScript for my ASP coding on the server-side. AR> Does anybody have any idea if the PerlScript engine is as robust as the AR> Microsoft Scripting engines for ASP coding and if it can be safely used for AR> ASP coding. AR> I am tempted to raise this poser, as I f

Re: perlscript calling vbscript in asp

2001-04-18 Thread Jan Dubois
On Wed, 18 Apr 2001 09:17:58 +1000, Toby Stuart <[EMAIL PROTECTED]> wrote: ><%@ LANGUAGE="PerlScript" %> ><% > $a_val_from_vb = $ScriptingNamespace->a_vb_sub(); I think this would be $ScriptHost instead of $ScriptingNamespace, but maybe they work both. In later versions of ActivePerl (I t

Re: PerlScript Installation

2001-02-23 Thread Sisyphus
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 23, 2001 3:40 AM Subject: Re: PerlScript Installation > > No go. I installed the "full package", but I get "Unknown scripting > language" whenever I try to run an ASP page using PerlScript. Perl wor

Re: PerlScript

2001-02-06 Thread Ron Grabowski
> I need to implement a COM Interface in PerlScript (Windows Scripting Host). > Does anyone know of any examples for doing this? Use the CreatObject method just like you would do for VB. my $conn = $Server->CreateObject("ADODB.Connection"); ___ Perl-Wi