Hi all! I am using the XML engine to embed dynamic content into an HTML page via Apache::ASP. What I need is a simple way to retain the values of the variables...
1398
Helmut
helmut@...
Nov 3, 2003 5:51 pm
Hi TIA, you could use a unique package name (as Apache::ASP does it with global variables without explizit package name - i think), for example some kind of...
1399
Helmut
helmut@...
Nov 3, 2003 5:52 pm
Hi TIA, correction: <my:display variable="$Session->{'loaded139;}"/> or <my:display variable="<%=$Session->{'loaded139;}%>"/> seem not to work, because ASP does...
1400
Josh Chamas
josh@...
Nov 3, 2003 6:47 pm
... As of v2.45, <my:display variable="<%=$Session->{'loaded139;}%>"/> can work with the XMLSubsPerlArgs setting set to Off. This will become the default one...
1401
Fagyal, Csongor
concept@...
Nov 3, 2003 7:08 pm
... ...and that day we can start calling it Apache::JSP :-))) - Csongor ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands,...
1402
Stuart Johnston
sjohnston@...
Nov 4, 2003 11:51 pm
In our application, we track failed login attempts through the Session. If a user fails to login three times, they are locked out of the sytem until their...
1403
Josh Chamas
josh@...
Nov 5, 2003 6:34 am
... When you go to expire the session, places its ID in $Application, say in $Application->{FailedSessions} or some such. Then you can restore the original...
1404
skylos@...
Nov 10, 2003 10:17 pm
I have a machine-reading ASP perl script that returns a different status code for every possible exit point of the program. Its all part of it being machine...
1405
Josh Chamas
josh@...
Nov 11, 2003 8:20 am
... Currently, Apache::ASP uses mod_perl $r->status to set the $Response->{Status}, which can only take an integer. It may be better to instead call ...
1406
Peter Galbavy
peter.galbavy@...
Nov 11, 2003 8:35 am
... Yes please. Me too. I had this requirement (for "streaming" Ogg files) but gave up and reverted to default HTTP status messages :) Peter ... To...
1407
Skylos the Doggie
skylos@...
Nov 11, 2003 10:22 am
... Yes, Please!! With much anticipation, Skylos - skylos@... - The best part about the internet is nobody knows you're a dog. (Peter Stiener, The New...
1408
Remi Fasol
re_mi_fa@...
Nov 14, 2003 8:50 am
hello. i'm trying to adapt pages that worked under 1.95 to 2.55. i have a series of forms that uses $0 to identify the current asp page but for some reason the...
1409
Randy Kobes
randy@...
Nov 22, 2003 4:59 pm
I've noticed the following with the current cvs build of mod_perl 2, under Win32 ActivePerl 807 and Apache/2.0.48, and was wondering if I'm not understanding...
1410
Perrin Harkins
perrin@...
Nov 22, 2003 5:58 pm
... As I understand it, they are two different things. The Apache constants are for telling apache what's going on and do not necessarily correspond to values...
1411
Stas Bekman
stas@...
Nov 22, 2003 8:08 pm
... Not so much about the constants (since you can use just numbers), but about the values expected to be returned from the handler. In order to support...
1412
Ged Haywood
ged@...
Nov 22, 2003 9:38 pm
Hi Stas, ... I agree strongly with that. 73, Ged. ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
1413
Geoffrey Young
geoff@...
Nov 24, 2003 3:50 pm
... for the record, this is exactly how apache behaves for people writing C modules - it expects a handler to return OK, DECLINED, DONE, or ...
1414
Reggie Dindiyal
Rdindiyal@...
Nov 24, 2003 4:01 pm
Hello everyone, I'm trying to convert <% Dim proc Set proc = Server.CreateObject("Project.clsInitialClass") Set proc.Application = Application Set proc.Request...
1415
Helmut
helmut@...
Nov 24, 2003 4:22 pm
Hi, may be, it has nothing to do with your problem but you should leave the multiple "my"s, because at line 5 you allready defined "proc" as private variable...
1416
Thanos Chatziathanass...
tchatzi@...
Nov 24, 2003 4:33 pm
Why not try something like: my $proc = Win32::OLE->new('Project.clsInitialClass39;) or die Win32::OLE->LastError(); $proc->Application = $Application; ...etc ...
1417
Fagyal, Csongor
concept@...
Nov 24, 2003 4:36 pm
Hi, ... First, this assumes that Win32::OLE has an Application method (that is why you got an error message). Also, you cannot use my here, that is for ...
1418
Reggie Dindiyal
Rdindiyal@...
Nov 24, 2003 6:28 pm
Ok, I followed the suggestions posted and changed the script to this: -: use strict;;;use vars qw($Application $Session $Response $Server $Request);; -: #line...
1419
Fagyal, Csongor
concept@...
Nov 24, 2003 6:45 pm
Reggie, Without knowing perl syntax and basically perl, IMHO you will have a hard time. ... Actually I don't think you need to "use vars" here (it probably...
1420
Stas Bekman
stas@...
Nov 24, 2003 10:02 pm
... +1 ... Not really. If you implement a different protocol it's a totally different story. Apache won't make sense of anything that you return from ...
1421
Thanos Chatziathanass...
tchatzi@...
Nov 25, 2003 11:19 am
... I think Apache::ASP has added those. It is the debugging output Reggie sent us here. ... Speaking of syntax, even if there is a LoadPage method in the...
1422
Stas Bekman
stas@...
Nov 26, 2003 8:27 am
I've documented the mod_perl 2.0 handler return value "protocol" here: http://perl.apache.org/docs/2.0/user/handlers/intro.html#Handler_Return_Values Please...
1423
theforken
e.canardi@...
Nov 26, 2003 5:32 pm
Hi all Here's my configuration Redhat Linux 9.0 (i386) Apache 2.0.48 (built from sources) Perl 5.8.0 (Standard Redhat rpm) Apache::ASP 2.55 (built from...
1424
Brendan Hoffmann
bhoffmann@...
Nov 30, 2003 11:39 pm
Hello, Apache keeps spitting out this error in the logfile: [Sun Nov 30 16:06:57 2003] [error] [asp] [29743] [error] Undefined subroutine...
1425
D. L. Fox
dfox@...
Dec 1, 2003 6:06 am
... ASP is interpreting the now() as a call to a subroutine - which you haven't defined. It's best not to use subroutines directly in your ASP pages anyway....
1426
Stas Bekman
stas@...
Dec 4, 2003 8:11 pm
Josh, a little bird tells me Apache::ASP uses Apache::compat, which is a no-no, as it breaks mp2 API. See: ...