[AOLSERVER] CodeRed web logs

2001-08-08 Thread Rusty Brooks
Hi Guys, I made a cheezmo little Code Red Tracker at http://www.rustybrooks.org/html/CodeRed.tcl The reason I'm posting this here is that I thought it might be fun to make some kind of AOLServer based CGI-type solution for this. I could distribute a CGI-type program, you'd install it on your we

[AOLSERVER] [ aolserver-Support Requests-449260 ] servlets

2001-08-08 Thread Ms. Source Forge
Support Requests item #449260, was opened at 2001-08-08 12:38 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=203152&aid=449260&group_id=3152 Category: Scripting: Other Group: None Status: Open Resolution: None Priority: 5 Submitted By: Ali Elhajj (elhajj33) Assigned

Re: [AOLSERVER] perms

2001-08-08 Thread Yon Derek
> Certainly... what I am working on is as close to live > updating as possible of users for a subscription based > website.. we are using a third party to charge cards and > generate the accounts for us, so I have to work around that > difficulty.. I'm interested in the on-line billing options.

[AOLSERVER] [ aolserver-Bugs-449356 ] shutdownPending is never initialized

2001-08-08 Thread Ms. Source Forge
Bugs item #449356, was opened at 2001-08-08 17:57 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=103152&aid=449356&group_id=3152 Category: None Group: aolserver3_3 >Status: Closed >Resolution: Invalid Priority: 5 Submitted By: Jerry Asher (jerryasher) Assigned to: N

[AOLSERVER] [ aolserver-Bugs-449356 ] shutdownPending is never initialized

2001-08-08 Thread Ms. Source Forge
Bugs item #449356, was opened at 2001-08-08 17:57 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=103152&aid=449356&group_id=3152 Category: None Group: aolserver3_3 Status: Open Resolution: None Priority: 5 Submitted By: Jerry Asher (jerryasher) Assigned to: Nobody/A

[AOLSERVER] [ aolserver-Bugs-449356 ] shutdownPending is never initialized

2001-08-08 Thread Ms. Source Forge
Bugs item #449356, was opened at 2001-08-08 17:57 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=103152&aid=449356&group_id=3152 Category: None Group: aolserver3_3 Status: Open Resolution: None Priority: 5 Submitted By: Jerry Asher (jerryasher) Assigned to: Nobody/A

[AOLSERVER] [ aolserver-Bugs-449356 ] shutdownPending is never initialized

2001-08-08 Thread Ms. Source Forge
Bugs item #449356, was opened at 2001-08-08 17:57 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=103152&aid=449356&group_id=3152 Category: None Group: aolserver3_3 Status: Open Resolution: None Priority: 5 Submitted By: Jerry Asher (jerryasher) Assigned to: Nobody/A

[AOLSERVER] [ aolserver-Bugs-425401 ] supplementary groups not set/cleared

2001-08-08 Thread Ms. Source Forge
Bugs item #425401, was opened at 2001-05-19 01:42 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=103152&aid=425401&group_id=3152 Category: Architecture: Server (nsd) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Anchor Systems Pty Ltd (anchorsy

Re: [AOLSERVER] perms

2001-08-08 Thread Patrick Spence
- Original Message - From: "Jerry Asher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 12:57 PM Subject: Re: [AOLSERVER] perms > >Yeah, my partner and I just worked up a different way of doing things.. I am > >going to use some of the code from the tcl scri

Re: [AOLSERVER] perms

2001-08-08 Thread Jerry Asher
>Yeah, my partner and I just worked up a different way of doing things.. I am >going to use some of the code from the tcl script but load it into a >postgres table instead... and handle authentication from the table instead >of using ns_perm... When you get this working, could you post it? Thank

[AOLSERVER] [ aolserver-Support Requests-449260 ] servlets

2001-08-08 Thread Ms. Source Forge
Support Requests item #449260, was opened at 2001-08-08 12:38 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=203152&aid=449260&group_id=3152 Category: Scripting: Other Group: None Status: Open Resolution: None Priority: 5 Submitted By: Ali Elhajj (elhajj33) Assigned

Re: [AOLSERVER] perms

2001-08-08 Thread Patrick Spence
- Original Message - From: "Jerry Asher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 11:25 AM Subject: Re: [AOLSERVER] perms > > > >But no matter which I would have to write a module that reloads it on > >command? > > Yes, but that should be pretty easy.

[AOLSERVER] [ aolserver-Support Requests-449240 ] ns_perm question

2001-08-08 Thread Ms. Source Forge
Support Requests item #449240, was opened at 2001-08-08 11:50 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=203152&aid=449240&group_id=3152 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: David Mott (mottman) Assigned to: Nobody/A

Re: [AOLSERVER] thread bug or my bad code?

2001-08-08 Thread Nick Kaiho
Yes, it calls itself recursivly. Am I mistaken that the [ns_thead wait] will wait until the previouly spawned threads are done before calling itself again? -Nick

Re: [AOLSERVER] perms

2001-08-08 Thread Patrick Spence
- Original Message - From: "Scott Goodwin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 11:11 AM Subject: Re: [AOLSERVER] perms Ooooh, found the code in init.tcl that initializes the nsperm module... going to try it out

Re: [AOLSERVER] perms

2001-08-08 Thread Jerry Asher
> >But no matter which I would have to write a module that reloads it on >command? Yes, but that should be pretty easy. They are loaded into the system at system startup by a tcl script, so I imagine all you need to do is cut and paste portions of that tcl script into your proc. Also, do consid

Re: [AOLSERVER] thread bug or my bad code?

2001-08-08 Thread Rusty Brooks
Your code: > proc startThreadTest {} { > > startThreadTest > } startThreadTest calls itself recursively, so you'll eventually run out of stack space or reach the tcl maximum recursion level. If you'd like to avoid that you can do something like proc startThreadTest {} {

[AOLSERVER] thread bug or my bad code?

2001-08-08 Thread Nick Kaiho
Hi, If I run "startThreadTest" , the script below will continue to run until the server finally buffer overflows in "for {set i 1} {$i < 9} {incr i} . The number of times this will execute before crash seems to depend on the system. I'm running aolserver3.4 (I also checked on 3.3) on some solari

Re: [AOLSERVER] perms

2001-08-08 Thread Patrick Spence
- Original Message - From: "Scott Goodwin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 11:11 AM Subject: Re: [AOLSERVER] perms > I rolled my own in Tcl. It loads a file of usernames/passwords every 15 > mins. It stores these in nsv arrays. Pretty simple,

Re: [AOLSERVER] perms

2001-08-08 Thread Scott Goodwin
I rolled my own in Tcl. It loads a file of usernames/passwords every 15 mins. It stores these in nsv arrays. Pretty simple, and fast enough. I have a request processor registered at preauth that checks a urlacls file that contains each ACL'd URL and causes a challenge to be issued based on the inf

Re: [AOLSERVER] perms

2001-08-08 Thread Patrick Spence
- Original Message - From: "Jerry Asher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 11:03 AM Subject: Re: [AOLSERVER] perms > I think you will need to create a custom module to do this for you. There > is no code I am aware of that reloads the files off

Re: [AOLSERVER] Servlets

2001-08-08 Thread Freddie Mendoza
Long time ago, I wrote a module to interface to Tomcat. Then someone else wrote another module based on my module and probably improved it more than I would have since I did not have the time to maintain it. I have not heard anything about servlets on the mailing list lately but I think if you lo

Re: [AOLSERVER] perms

2001-08-08 Thread Jerry Asher
At 10:56 AM 8/8/01, you wrote: >How do I get Aolserver to recognize that a user has been manually updated in >the passwd file on disk without restarting/HUPing the server? I have >"Skiplocks" set to off in my config file (if its on and I try ns_passwdcheck >it crashes the server hard without a l

[AOLSERVER] perms

2001-08-08 Thread Patrick Spence
How do I get Aolserver to recognize that a user has been manually updated in the passwd file on disk without restarting/HUPing the server? I have "Skiplocks" set to off in my config file (if its on and I try ns_passwdcheck it crashes the server hard without a log entry)... It would be really ni

[AOLSERVER] Servlets

2001-08-08 Thread Ali Elhajj
Hello, what do I need to do in order to have install a servlet engine on AOLServer. Are some aolserver versions more amenable to servlets? And finally, are there problems/pitfalls one needs to keep in mind when working with servlets? Thanks, Ali