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...
luciflatum
llucif@...
Nov 2, 2003 9:58 pm
1398
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...
Helmut
helmut@...
Nov 3, 2003 5:51 pm
1399
Hi TIA, correction: <my:display variable="$Session->{'loaded1'}"/> or <my:display variable="<%=$Session->{'loaded1'}%>"/> seem not to work, because ASP does...
Helmut
helmut@...
Nov 3, 2003 5:52 pm
1400
... As of v2.45, <my:display variable="<%=$Session->{'loaded1'}%>"/> can work with the XMLSubsPerlArgs setting set to Off. This will become the default one...
Josh Chamas
josh@...
Nov 3, 2003 6:47 pm
1401
... ...and that day we can start calling it Apache::JSP :-))) - Csongor ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands,...
Fagyal, Csongor
concept@...
Nov 3, 2003 7:08 pm
1402
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...
Stuart Johnston
sjohnston@...
Nov 4, 2003 11:51 pm
1403
... 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...
Josh Chamas
josh@...
Nov 5, 2003 6:34 am
1404
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...
skylos@...
Nov 10, 2003 10:17 pm
1405
... 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 ...
Josh Chamas
josh@...
Nov 11, 2003 8:20 am
1406
... Yes please. Me too. I had this requirement (for "streaming" Ogg files) but gave up and reverted to default HTTP status messages :) Peter ... To...
Peter Galbavy
peter.galbavy@...
Nov 11, 2003 8:35 am
1407
... Yes, Please!! With much anticipation, Skylos - skylos@... - The best part about the internet is nobody knows you're a dog. (Peter Stiener, The New...
Skylos the Doggie
skylos@...
Nov 11, 2003 10:22 am
1408
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...
Remi Fasol
re_mi_fa@...
Nov 14, 2003 8:50 am
1409
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...
Randy Kobes
randy@...
Nov 22, 2003 4:59 pm
1410
... 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...
Perrin Harkins
perrin@...
Nov 22, 2003 5:58 pm
1411
... 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...
Stas Bekman
stas@...
Nov 22, 2003 8:08 pm
1412
Hi Stas, ... I agree strongly with that. 73, Ged. ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
Ged Haywood
ged@...
Nov 22, 2003 9:38 pm
1413
... for the record, this is exactly how apache behaves for people writing C modules - it expects a handler to return OK, DECLINED, DONE, or ...
Geoffrey Young
geoff@...
Nov 24, 2003 3:50 pm
1414
Hello everyone, I'm trying to convert <% Dim proc Set proc = Server.CreateObject("Project.clsInitialClass") Set proc.Application = Application Set proc.Request...
Reggie Dindiyal
Rdindiyal@...
Nov 24, 2003 4:01 pm
1415
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...
Helmut
helmut@...
Nov 24, 2003 4:22 pm
1416
Why not try something like: my $proc = Win32::OLE->new('Project.clsInitialClass') or die Win32::OLE->LastError(); $proc->Application = $Application; ...etc ...
Thanos Chatziathanass...
tchatzi@...
Nov 24, 2003 4:33 pm
1417
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 ...
Fagyal, Csongor
concept@...
Nov 24, 2003 4:36 pm
1418
Ok, I followed the suggestions posted and changed the script to this: -: use strict;;;use vars qw($Application $Session $Response $Server $Request);; -: #line...
Reggie Dindiyal
Rdindiyal@...
Nov 24, 2003 6:28 pm
1419
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...
Fagyal, Csongor
concept@...
Nov 24, 2003 6:45 pm
1420
... +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 ...
Stas Bekman
stas@...
Nov 24, 2003 10:02 pm
1421
... 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...
Thanos Chatziathanass...
tchatzi@...
Nov 25, 2003 11:19 am
1422
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...
Stas Bekman
stas@...
Nov 26, 2003 8:27 am
1423
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...
theforken
e.canardi@...
Nov 26, 2003 5:32 pm
1424
Hello, Apache keeps spitting out this error in the logfile: [Sun Nov 30 16:06:57 2003] [error] [asp] [29743] [error] Undefined subroutine...
Brendan Hoffmann
bhoffmann@...
Nov 30, 2003 11:39 pm
1425
... 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....
D. L. Fox
dfox@...
Dec 1, 2003 6:06 am
1426
Josh, a little bird tells me Apache::ASP uses Apache::compat, which is a no-no, as it breaks mp2 API. See: ...