Search the web
Sign In
New User? Sign Up
apache-asp · Apache::ASP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2247 - 2276 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2247
... I am using this setting: PerlSetVar NoState 1 So, I don't think your suggestion will help. Regards, -Roberto -- Roberto C. Sánchez ...
Roberto C. Sánchez
roberto@...
Send Email
Nov 12, 2008
11:04 am
2248
Apache::Asp caches subroutine compiles within processes. Kill all running apache processes to delete their cache. (you don't strictly have to restart to do...
Skylos
skylos@...
Send Email
Nov 12, 2008
5:18 pm
2249
... Thing is that this is happening to me on a production setup. I am not changing anything. Even completely stopping Apache and starting it fresh does not...
Roberto C. Sánchez
roberto@...
Send Email
Nov 12, 2008
9:28 pm
2250
Well you probably already thought of this but: It appears that the global.asa (and thus Example::Image.pm) get compiled into different packages then...
Tsirkin Evgeny
tsirkin@...
Send Email
Nov 16, 2008
9:05 pm
2251
Hi, Back in June 2006, I asked about the content-type header as it relates to a form post from a mobile phone browser. The original message that I sent can be...
Rock the Kazbah
momex2000@...
Send Email
Nov 25, 2008
5:32 pm
2252
I'm toying with idea presently, but it would make for a great step up from MLDBM and company. And although Apache::ASP::State makes quite a few assumptions...
Thanos Chatziathanass...
tchatzi@...
Send Email
Feb 20, 2009
2:09 pm
2253
(ignoring the fact that no-one seems interested) I came accross Cache::Memcached::Tie which pretty much does most of the work, however I'm having some issues -...
Thanos Chatziathanass...
tchatzi@...
Send Email
Mar 26, 2009
12:35 pm
2254
I, for one, am interested, though I haven't been able to do much or get involved. "Namespace" - I suggest making this an option that is user tunable, but pick ...
Gregory S. Youngblood
greg@...
Send Email
Mar 27, 2009
4:53 pm
2255
... It would vaguely resemble ``StateDir''. Each separate StateDir signifies a unique application. Thus far, using StateDir in shmfs/tmpfs I'd use ...
Thanos Chatziathanass...
tchatzi@...
Send Email
Mar 27, 2009
6:33 pm
2256
Hi All, I have a requirement to test webserver using perl scripts. The webserver creates a sessionId after successfull authentication. Hence for futher...
Sudarshan Soma
sudarshan12s@...
Send Email
Apr 1, 2009
9:26 am
2257
... use HTTP::Cookies; use HTTP::Request::Common; use LWP::UserAgent; $ua = LWP::UserAgent->new; $requestString = "http://x.y.x.w"; ...
Thanos Chatziathanass...
tchatzi@...
Send Email
Apr 1, 2009
9:52 am
2258
Thanks a lot . I have a followup query, can anyone please advice me: My application (webser) will set up sessionId in the cookie and sets redirect URL to main...
Sudarshan Soma
sudarshan12s@...
Send Email
Apr 3, 2009
2:10 pm
2259
... You really need to familiarize yourself with perldoc (or google for that matter ;) To the matter at hand: redirects should work quite as expected. If they ...
Thanos Chatziathanass...
tchatzi@...
Send Email
Apr 3, 2009
2:28 pm
2260
... Thanks a lot. I got the final code now use warnings; use HTTP::Cookies; use HTTP::Request::Common; use LWP::UserAgent; { $ua = new LWP::UserAgent; if(!...
Sudarshan Soma
sudarshan12s@...
Send Email
Apr 9, 2009
5:23 am
2261
... Since this is a mod_perl list, you might want to consider ``use strict;'' as well (actually you might consider using strict anyhow) ... I've never had an...
Thanos Chatziathanass...
tchatzi@...
Send Email
Apr 9, 2009
9:37 am
2262
Is there a purpose for using a cleanup handler (to call DESTROY) in Apache::ASP instead of cleaning up at the end of the response handler? What looks like...
Bill Moseley
moseley@...
Send Email
Apr 23, 2009
5:48 pm
2263
Anyone still around that is familiar with Apache::ASP's internals? ... -- Bill Moseley. moseley@... Sent from my iMutt ... To unsubscribe, e-mail:...
Bill Moseley
moseley@...
Send Email
Apr 29, 2009
2:43 pm
2264
http://www.nabble.com/file/p24106268/final.pl final.pl Here i am not getting the Session-id / cookie-value from the browser, just i am getting the below...
aura networks
laki.sreekanth@...
Send Email
Jun 19, 2009
6:35 am
2265
My Perl code: #!/usr/bin/perl -w use HTTP::Cookies; use HTTP::Request::Common; use LWP::UserAgent; $ua = new LWP::UserAgent; if(! $ua) { print "Can not get the...
aura networks
laki.sreekanth@...
Send Email
Jun 19, 2009
6:40 am
2266
Hi, The cookies would be stored in the cookie store mentioned, cookies.dat. You can aswell check errors for every call. In mycase if need not check the...
Sudarshan Soma
sudarshan12s@...
Send Email
Jun 19, 2009
6:56 am
2267
Contents in cookies.dat file: #LWP-Cookies-1.0 Output: HTTP::Response=HASH(0xafebd0) Tell me the way to get session-id pls pls... -- View this message in...
aura networks
laki.sreekanth@...
Send Email
Jun 19, 2009
11:35 am
2268
I am attempting to implement an upload script and having problems. I see from the apache::asp documentation (http://www.apache-asp.org/cgi.html) that the...
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Send Email
Jun 30, 2009
9:52 pm
2269
... The docs are just giving that version as a known-working example. I've successfully uploaded files to servers running CGI.pm v2.89 and v3.15. ... Empty,...
Warren Young
warren@...
Send Email
Jul 1, 2009
1:44 am
2270
Warren, Thank you for the response. I had actually tried this syntax: if ($Request->{Method} eq 'POST') { my $form = $Request->Form; # process $form->{stuff}...
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Send Email
Jul 1, 2009
5:10 pm
2271
... Would I be correct in guessing that this Apache::ASP application is brand new, and hasn't been running successfully for some time in the same...
Warren Young
warren@...
Send Email
Jul 1, 2009
9:17 pm
2272
... brand new..? Well, there have been the usual updates to the perl modules, but I have been running apache::asp on the site since ~2000. But as I generally...
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Send Email
Jul 2, 2009
6:29 pm
2273
... Have you tried this patch: http://www.gossamer-threads.com/lists/modperl/asp/89060?search_string=yarrow;#89060 ? ... To unsubscribe, e-mail:...
Warren Young
warren@...
Send Email
Jul 2, 2009
8:34 pm
2274
Probably not what is causing your scenario but... I once had a scenario similar to this and found the problem was in my HTML. I needed to use both "id" and...
D. L. Fox
webdev@...
Send Email
Jul 3, 2009
3:34 pm
2275
It looks like I figured out my problem with the missing $Request->Form data. I have RequestBinaryRead set to "Off". Turning this off gives me content in...
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Send Email
Jul 7, 2009
8:03 pm
2276
... The use of CGI.pm to construct file upload fields is a mere convenience. You can do the same thing by writing raw HTML. It's just uglier than the...
Warren Young
warren@...
Send Email
Jul 7, 2009
8:50 pm
Messages 2247 - 2276 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help