Re: [AOLSERVER] Help with Dotted IP conversion

2002-02-25 Thread Vlad Seryakov
You can try these functions: proc inet_addr { ipaddr } { set addr [binary format c4 [split $ipaddr .]] binary scan $addr i bin return $bin } proc inet_ntoa { ipaddr } { set bin [binary format i $ipaddr] binary scan $bin a b c d set a [expr { ($a + 0x100) % 0x100 }]

[AOLSERVER] Two modules for AOLServer available

2002-09-28 Thread Vlad Seryakov
Hello, I have two modules for Aolserver: nsmain - IMAP interface, can be used as IMAP client nssnmp - SNMP interface, can be used AS SNMP client, supports ICMP as well I use them in production for a while they seem to be stable. Download from: ftp://ftp.crystalballinc.com/pub/vlad/

Re: [AOLSERVER] The Next Module -- nscache

2002-09-28 Thread Vlad Seryakov
I talked with Rob and he told me that i can take control for nscache module, i made some modification and submitted them to Rob, but he is not maintaining this module anymore. I just added ns_cache incr function similar to nsv_incr. The module is available at ftp://ftp.crystalballinc.com/pub/vlad

Re: [AOLSERVER] Two modules for AOLServer available

2002-09-28 Thread Vlad Seryakov
On Sat, Sep 28, 2002 at 02:37:59PM +, Roberto Mello wrote: > Wow, this flurry of modules for AOLserver is fantastic! Keep'em coming, > and thanks for your contributions. > > On Sat, Sep 28, 2002 at 03:23:50PM -0400, Vlad Seryakov wrote: > > Hello, > > > &g

Re: [AOLSERVER] Two modules for AOLServer available

2002-09-28 Thread Vlad Seryakov
:36 -0400, "Vlad Seryakov" > <[EMAIL PROTECTED]> said: > > At the time i was developing that module i wanted to put all mail > > related functionality there but it ended up with IMAP client support > > only. > > Scott suggested to rename it into i

[AOLSERVER] ANNOUNCE: ns_chartdir charting module available

2002-10-13 Thread Vlad Seryakov
Hello, Here it is my first public release of charting module, it is pure interface to ChartDirector from www.advsofteng.com, very sophisticated charting library for C++. No documentation is available yet, but i am implementing all their demo scripts which are very informative. Download it from

Re: [AOLSERVER] ANNOUNCE: ns_chartdir charting module available

2002-10-15 Thread Vlad Seryakov
> > And what's the license for such library? I couldn't find it on their > website. It is free for Linux > In fact their website seemed comflicting to me, for in one page > it said "download free version" (but didn't say what it meant by "free") > and in another it had a "developer license" ($99

Re: [AOLSERVER] ANNOUNCE: ns_chartdir charting module available

2002-10-15 Thread Vlad Seryakov
a file first? > > nsgd has this feature and it's very useful for dynamically generated > images... > > Regards, > > -Oscar > > On Sunday, October 13, 2002, at 07:37 PM, Vlad Seryakov wrote: > > > Hello, > > > > Here it is my first public release of

[AOLSERVER] ANNOUNCE: DNS Module

2003-03-05 Thread Vlad Seryakov
Some time ago somebody mentioned(sorry i did not save the message, do not remember the name) about DNS module for AOLserver, it happened i implemented DNS server before for another project so i figured i can quickly write simple DNS server module. Actually it was fun for the last couple days after

Re: [AOLSERVER] URGENT: outputting binary in aolsever..

2003-03-07 Thread Vlad Seryakov
ease visit: http://listserv.aol.com/ III. For more AOLserver information please visit: http://www.aolserver.com/ -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ I. To remove yourself from this list: Send a message to "[EMAIL PROTECTED]" with t

Re: [AOLSERVER] Help with nsimap

2003-03-19 Thread Vlad Seryakov
ffe76b, 1) = ? ERESTARTSYS (To be restarted) 15908 +++ killed by SIGKILL +++ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list: http://www.aolserver.com/listserv.html List information and options: http://listserv.aol.com/ -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED]

Re: [AOLSERVER] Help with nsimap

2003-03-19 Thread Vlad Seryakov
n a redhat 7.2 box. The nsimap.so loads at startup OK and installs its garbage collector but when I try to open a session from a tcl page using ns_imap open I get (with debug logging turned on): [18/Mar/2003:17:34:34][15182.5126][-conn2-] Debug: ns_imap: open: 0x8ca8f50: 1: {127.0.0.1}: [EMAIL PROTEC

Re: [AOLSERVER] BIG problem with Tcl8.4.(1|2)

2003-03-26 Thread Vlad Seryakov
afraid we will not be able to go to production before fixing this ugly thing. Cheers, Zoran -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list: http://www.aolserver.com/listserv.html List information and options: http://listserv.aol.com/ -- Vlad Seryakov 703 961

[AOLSERVER] Aolserver4 and Dual-Xeon 2.4Ghz

2003-06-30 Thread Vlad Seryakov
Does anybody have or had problems running Linux and aolserver4 on Xeon 2.4Ghz. It crashes or freezes occasionally, drops tcp connections. Same code running with 3.5.5 works fine. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http

[AOLSERVER] aolserver4 bad file descriptor errors

2003-07-10 Thread Vlad Seryakov
arded with mutex every time. Only in NsSockClose mutex lock is used but in SockAccept and SockRelease firstSockPtr is used without mutex which may lead to some bad behaviour. I am using dual Xeon 2.4 Ghz machine with 3Gb memory with pretty high load. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTE

Re: [AOLSERVER] aolserver4 bad file descriptor errors

2003-07-10 Thread Vlad Seryakov
But Ns_ConnClose is called from within connection thread and is using mutex for firstClosePtr but at the same time single threaded driver.c is using the same pointer without any mutexes. After i put mutex there i started receiving much less "Bad file descriptor" errors and crashes which may be unre

Re: [AOLSERVER] aolserver4 bad file descriptor errors

2003-07-10 Thread Vlad Seryakov
But what about SockAccept and SockRelease, they do not use lock mutex but update firstClosePtr. I have small communication driver so those errors may not be related to firstClosePtr. Jim Davidson wrote: Hi, Seems like firstClosePtr at least is protected -- there's an informatively named Ns_Mutex d

Re: [AOLSERVER] aolserver4 bad file descriptor errors

2003-07-10 Thread Vlad Seryakov
-- sorry about that. -Jim -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 9

Re: [AOLSERVER] AOLServer 4 Architecture

2003-08-04 Thread Vlad Seryakov
quot;SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <

Re: [AOLSERVER] nsimap error

2003-08-04 Thread Vlad Seryakov
il to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yo

Re: [AOLSERVER] Graphing

2003-08-10 Thread Vlad Seryakov
ough about compiling and linking to figure this one out.. Do you have any ideas? Thanks, Ross Vlad Seryakov wrote: > check out my chart module nschartdir, i use ChartDirector graphic library > > http://www.crystalballinc.com/vlad/software > > Ross Simpson wrote: > > He

Re: [AOLSERVER] Graphing

2003-08-14 Thread Vlad Seryakov
rk. Does anyone have a working graphing setup? Thanks ;) Ross -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your em

Re: [AOLSERVER] loading nschartdir

2003-09-09 Thread Vlad Seryakov
> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply sen

[AOLSERVER] Zlib module

2003-10-31 Thread Vlad Seryakov
Hello, If somebody interested, i wrote simple zlib module for aolserver, supports compressing/uncompressing Tcl strings, gzip files support. Can be downloaded from http://www.crystalballinc.com/vlad/software -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an

[AOLSERVER] aolserver 4.0 shutdown hangs

2003-11-17 Thread Vlad Seryakov
Hello all, i was trying to upgrade to aolserver 4.0 but noticed that every time i do ns_shutdown from nscp the server just hangs. It appeares that the problem is call to NsWaitDriversShutdown(&timeout); during server shutdown. Last version i used without any problem beta10 did not have this call.

[AOLSERVER] Initialization crashes in 4.0

2003-11-18 Thread Vlad Seryakov
i just encountered situation when aolserver crashes on startup, it is rare but... As trace below shows on startup the server could not resolve it own name(experimenting with DNS) and used log facility to log this but InitLog was not called yet. In init.c routine NsdInit should call NsInitLog(); be

Re: [AOLSERVER] Generating Dynamic PDF's from AOLs

2003-12-11 Thread Vlad Seryakov
- http://www.aolserver.com/ >>>> >>>>To Remove yourself from this list, simply send an email to >>>><[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the >>>>email message. You can leave the Subject: field of your email blank. >

Re: [AOLSERVER] SNMP support

2004-01-27 Thread Vlad Seryakov
Sure you can, i used scotty first but after that wrote my own snmpmodule. It is in the aolserver sourceforge files. Kulcsar Ferenc wrote: Hello All, I'll manage a large network with SNMP in real time. Can I integrate Tkined or scotty with Aolserver? TIA Feri ___

Re: [AOLSERVER] PHP4 with AOLserver 4

2004-02-02 Thread Vlad Seryakov
I have production-quality webmail solution but it is written on my own framework using nsimap module. http://www.crystalballinc.com/vlad/software/oss2/index.oss Also there is simple webmail written for OpenACS using the same module, it is possible to find it in the OpenACS forums. Roberto Mello w

Re: [AOLSERVER] ns_logctl expansion?

2004-03-07 Thread Vlad Seryakov
Why not to use syslog? What is the advantage of using Tcl channels over syslog for collecting multiple logs? Zoran Vasiljevic wrote: On Sunday 07 March 2004 07:41 pm, you wrote: On Sun, 2004-03-07 at 04:03, Zoran Vasiljevic wrote: Like, for example: set chan [open /some/file.log w] ns_logctl

Re: [AOLSERVER] ns_logctl expansion?

2004-03-08 Thread Vlad Seryakov
, lastly, there is no syslog interface in AS. Zoran -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your emai

Re: [AOLSERVER] ns_logctl expansion?

2004-03-08 Thread Vlad Seryakov
to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from

Re: [AOLSERVER] ns_logctl expansion?

2004-03-08 Thread Vlad Seryakov
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 961-5433 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an

Re: [AOLSERVER] nsopenssl: permission denied

2004-05-04 Thread Vlad Seryakov
OFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL

Re: [AOLSERVER] nsopenssl: permission denied

2004-05-04 Thread Vlad Seryakov
- http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL

Re: [AOLSERVER] SSL redirection

2004-05-05 Thread Vlad Seryakov
e body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an em

[AOLSERVER] ANN: BerkeleyDB database driver for AOLserver

2004-04-30 Thread Vlad Seryakov
Hi, This is AOLserver module that implements database driver for BerkeleyDB from www.sleepycat.com Download http://www.crystalballinc.com/vlad/software/ -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove

Re: [AOLSERVER] OCaml in AOLserver

2004-04-30 Thread Vlad Seryakov
that it can be used same way as Tcl inside aolserver. I looked at ML module but SML is a little bit different and module does not support aolserver API, so it is use limited for ML-specific tasks. Andrew Piskorski wrote: On Fri, Apr 30, 2004 at 10:26:56AM -0400, Vlad Seryakov wrote: This is

[AOLSERVER] ANN: ns_gdc: new charting module

2004-04-27 Thread Vlad Seryakov
mage file To run examples in test.tcl connect to aolserver via nscp module and type source path_to_distrib/test.tcl or put the test.tcl script somewhere under pageroot and call it via browser as http://yourhost/path/test.tcl It will generate images in the/tmp directory. -- Vlad Ser

Re: [AOLSERVER] AOLserver 4.0 Documentation update

2004-05-26 Thread Vlad Seryakov
OLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTE

Re: [AOLSERVER] AOLserver 4.0 Documentation update

2004-05-26 Thread Vlad Seryakov
Makes sense Dossy wrote: On 2004.05.26, Vlad Seryakov <[EMAIL PROTECTED]> wrote: Would it be easier to automatically upload existing man pages to Wiki and then go and update them or add new docs? There are a lot of man pages that can be used. Having the proc and function names on the w

[AOLSERVER] Modified nslog module

2004-05-28 Thread Vlad Seryakov
reason was that i noticed in my logs X-Forwarded-For: unknown and log file contained those unknowns without any IP addresses which is not good for log analyzer. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To

Re: [AOLSERVER] encoding of ns_sockopen

2004-05-28 Thread Vlad Seryakov
with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER"

Re: [AOLSERVER] encoding of ns_sockopen

2004-05-28 Thread Vlad Seryakov
rKeep: case DriverClose: break; } return NS_ERROR; } static void TcpServerThread(TcpServer *server,Ns_Sock *sock) { Ns_Conn *nsconn = Ns_GetConn(); TclInterp *interp = Ns_GetConnInterp(nsconn); if(interp && server->dataproc) Ns_TclEval(0,server->server,

Re: [AOLSERVER] generic server support

2004-05-28 Thread Vlad Seryakov
-28 at 09:58, Vlad Seryakov wrote: I have patch that convert aolserver into generic threaded server platform. I had to write SMTP proxy server and it required just a small patch to change default HTTP-aware behaiviour of server thread. Now it supports generic drivers and uses same thread pools

Re: [AOLSERVER] Documentation feedback: is there a preferred priority?

2004-06-02 Thread Vlad Seryakov
SERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTE

Re: [AOLSERVER] Suggestions for nsd/cache.c in 4.0.5

2004-06-09 Thread Vlad Seryakov
f "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to &

Re: [AOLSERVER] [ aolserver-Patches-973010 ] Support for non-HTTP drivers for AOLserver 4

2004-06-15 Thread Vlad Seryakov
/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTE

Re: [AOLSERVER] shutdown failure on Windows

2004-06-24 Thread Vlad Seryakov
IL PROTECTED]> http://www.piskorski.com/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488

Re: [AOLSERVER] [AOLSERVER-COMMITS] aolserver Makefile,1.45,1.46

2004-06-29 Thread Vlad Seryakov
Oops, sorry, an accident. Dossy wrote: On 2004.06.29, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: ! dirs = nsthread nsd nssock nsssl nscgi nscp nslog nsperm nsdb nsext nspd nscache nssha1 nspostgres Please don't add non-core modules (i.e., nscache, nssha1, nspostgres) to the core Makefile as bu

Re: [AOLSERVER] Intermittent hangs without a message

2004-06-30 Thread Vlad Seryakov
ROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this

Re: [AOLSERVER] listen on both port 80 and 443

2004-07-01 Thread Vlad Seryakov
er.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com

[AOLSERVER] ANN: aspell interface module

2004-07-01 Thread Vlad Seryakov
Hello, For those who is interested, i released new module nsaspell, interface to aspell for AOLserver. Download it from http://www.crystalballinc.com/vlad/software/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body

Re: [AOLSERVER] Windows Services for UNIX

2004-07-13 Thread Vlad Seryakov
i.com/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PRO

Re: [AOLSERVER] Generating .pdf Files on the Fly

2004-07-14 Thread Vlad Seryakov
he email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> wit

[AOLSERVER] Fun: Fortune module

2004-07-14 Thread Vlad Seryakov
Can be used for fun :-)) I uploaded fortune module, similar to Unix fortune command, uses same files and returns random epigrams. http://www.crystallballinc.com/vlad/software/ -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http

Re: [AOLSERVER] Anyone using C++ in TCL callbacks?

2004-08-10 Thread Vlad Seryakov
nd an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/

Re: [AOLSERVER] AOLSERVER Digest - 10 Aug 2004 to 11 Aug 2004 (#2004-171)

2004-08-13 Thread Vlad Seryakov
opinion. Rob Seeger -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-21

Re: [AOLSERVER] AOLSERVER Digest - 10 Aug 2004 to 11 Aug 2004 (#2004-171)

2004-08-13 Thread Vlad Seryakov
, Vlad Seryakov <[EMAIL PROTECTED]> wrote: I think everyone would benefit if AOLserver includes some kind templating solution without installing whole OpenACS system. Strip down templating with several usefull tags like and etc would put AOLServer on the same level as PHP/Perl with Apache s

Re: [AOLSERVER] Support for non-HTTP protocols

2004-08-17 Thread Vlad Seryakov
PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from th

Re: [AOLSERVER] Support for non-HTTP protocols

2004-08-17 Thread Vlad Seryakov
resources. I do not have Tcl implementation, it was more than 1 year ago and i did not save old experimental code. Dossy Shiobara wrote: On 2004.08.17, Vlad Seryakov <[EMAIL PROTECTED]> wrote: Only after i started using AOLServer's thread pools and connection manager, performance issue

Re: [AOLSERVER] Support for non-HTTP protocols

2004-08-17 Thread Vlad Seryakov
Of course, we're both only speculating here. Our production driver is publicily available http://www.crystalballinc.com/vlad/software/maverix/ You can see if implementing it in Tcl would be a better solution but keep in mind that it was designed to be working under heavy load. Sometimes it is proce

Re: [AOLSERVER] Support for non-HTTP protocols

2004-08-17 Thread Vlad Seryakov
) -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROT

Re: [AOLSERVER] Support for non-HTTP protocols

2004-08-17 Thread Vlad Seryakov
y move on." (p. 70) -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 48

Re: [AOLSERVER] Monitoring setups

2004-09-09 Thread Vlad Seryakov
LSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTEC

Re: [AOLSERVER] Recommended text editors for adp

2004-09-20 Thread Vlad Seryakov
AIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 703 488-2173 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself fr

Re: [AOLSERVER] AOLserver facelift.

2005-02-05 Thread Vlad Seryakov
a website for the largest (for-profit) ISP/Media-Giant on the planet. tom jackson -- Vlad Seryakov 571 262-8608 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]>

Re: [AOLSERVER] AOLserver facelift.

2005-02-05 Thread Vlad Seryakov
Spend some time thinking about it, and when you have a better idea of what that "something" actually is, tell us all about it. We're all listening. In my case "something" is: i feel that contributing into AOLServer project feels like asking permission from AOL, is AOL willing to accept or even con

Re: [AOLSERVER] core server design docs

2005-02-05 Thread Vlad Seryakov
, they work fine with asterisk and ser and sipura. -- Vlad Seryakov 571 262-8608 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AO

Re: [AOLSERVER] AOLserver facelift.

2005-02-06 Thread Vlad Seryakov
s. So, what is the answer? -- Vlad Seryakov 571 262-8608 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the

[AOLSERVER] ADP processing in 4.1

2005-02-06 Thread Vlad Seryakov
n Feb 6 2005 at 13:46:38 CVS Tag: $Name: $ ossweb:nscp 1> ns_adp_parse -string " test <%=[ns_time]%> test" vseryakov:root[14:10:31]# -- Vlad Seryakov 571 262-8608 office [EMAIL PROTECTED] http://www.crystalballinc.com/vlad/ -- AOLserver - http://www.aolserver.com/ To Remove your

Re: [AOLSERVER] AOLserver facelift.

2005-02-07 Thread Vlad Seryakov
Because it takes precious limited time and effort away from the mainline codebase. Other's people time as much precious as mainline developers, that's the attitude i am against of: "AOL is the biggest paid contributer and has the right to define the direction, others can play with new things at the

Re: [AOLSERVER] AOLserver facelift.

2005-02-07 Thread Vlad Seryakov
So, for a moment, ignore the existance of AOL. What does the rest of the AOLserver Community think about your patches? I don't mean people just saying "oh, we think Vlad's patches are great" -- I mean, who else has written code that needs to run on a version of AOLserver built with your patches?

Re: [AOLSERVER] AOLserver facelift.

2005-02-07 Thread Vlad Seryakov
This is the last time I'm going to say this: AOL (rightly) controls the work that its employees perform. AOL does not restrict what you do with AOLserver, what changes you make to it, etc. I am now the gatekeeper for what contributions (from AOL, and outside of AOL) go into the core. I don't beli

Re: [AOLSERVER] Asterisk and AOLserver

2005-02-09 Thread Vlad Seryakov
While reading the previous postings I stumbled upon multiple mentioning of multi protocol support and asterisk, therefore I assume people on this list are knowledgeable about this topic. Here is what we need: We run a CRM system on top of AOLserver. The CRM system contains the phone numbers of the

Re: [AOLSERVER] nsfreetds

2005-05-25 Thread Vlad Seryakov
d I'm afraid that I'm missing something obvious but am at a loss as to what it might be. Thanks in advance, -Cory -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER&qu

Re: [AOLSERVER] nsfreetds

2005-05-25 Thread Vlad Seryakov
It is a fork, see ChangeLog for more info, no website or any formal info at this point yet. Xavier Beaudouin wrote: Humm What is the difference between naviserver and aolserver... ? /Xavier Le 25 mai 05 à 20:25, Vlad Seryakov a écrit : Try newest FreeTDS 0.63 with my modified

Re: [AOLSERVER] nsfreetds

2005-05-25 Thread Vlad Seryakov
SQL command at the tsql prompt, I can select a database and run simple queries. I appreciate the advice and am happy to have tsql returning results :) If anyone has any further ideas on what might be keeping nsfreetds from working I'd love to hear them :) Thanks for all the help so far, -C

Re: [AOLSERVER] nsfreetds

2005-05-25 Thread Vlad Seryakov
EXT *ctx, TDSSOCKET *tds, TDSMESSAGE *msg) { Ns_DbHandle *handle = (Ns_DbHandle *) tds->parent; Ns_Log(Notice, "nsfreetds: Ns_FreeTDS_Msg_Handler(%s): %s", handle->datasource, msg->message); // Begin hack if ( msg->msg_level > 10 ) Ns_DbSetExcept

Re: [AOLSERVER] nsfreetds

2005-05-25 Thread Vlad Seryakov
language setting to us_english. Notice: Database API: couldn't determine RDBMS type of database pool "pool4". Vlad Seryakov wrote: Do you have any errors at the server startup associated with nsfreetds? Also, every time i open nsdb with freetds, i issue "use database"

Re: [AOLSERVER] nsfreetds

2005-05-26 Thread Vlad Seryakov
g <[EMAIL PROTECTED]> wrote: 10 indicates a critical error. On 5/25/05, Vlad Seryakov <[EMAIL PROTECTED]> wrote: Why msg_level > 10, why 10, and not 0? Ian Harding wrote: Vlad, I installed 0.63 and compiled and installed your module. It seems to work fine, but has a gl

Re: [AOLSERVER] nsfreetds

2005-05-26 Thread Vlad Seryakov
-- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank. -- Vlad Seryakov 571 26

Re: [AOLSERVER] nsfreetds

2005-05-26 Thread Vlad Seryakov
Like compatibility, reliability? Vlad Seryakov said: "real" sybase driver is external driver working via db proxy, much slower and spawns separate process for every new DB connection. Bas Scheffers wrote: Just out of curiosity, what is the advantage of using nsfreetds for Sybase over th

Re: [AOLSERVER] [naviserver-devel] nsdbi database driver interface 0.1

2008-04-17 Thread Vlad Seryakov
This is very cool, Can you commit it into primary Naviserver CVS? Stephen Deasey wrote: nsdbi is a database driver interface for naviserver. It provides native bind variable support, transparent prepared queries and handle management, runtime configuration, statistics, and a few other things.

Re: [AOLSERVER] [naviserver-devel] nsdbi database driver interface 0.1

2008-04-17 Thread Vlad Seryakov
Oops, sent to wrong list. Is it ready for use or ready to switch to from old ns_db? Would be cool to have in in the CVS Stephen Deasey wrote: nsdbi is a database driver interface for naviserver. It provides native bind variable support, transparent prepared queries and handle management, runti

Re: [AOLSERVER] Getting a handle on memory usage

2008-05-01 Thread Vlad Seryakov
Let me add my 2 cents as well as i have spent a lot of time trying to deal with ever-growing nsd process. Currently i have nsd process (Naviserver) with size about 500Mb running without restart for 15 days. Tcl compiled without Zippy, with standard malloc-family. I tried it with vtmalloc as

Re: [AOLSERVER] Control Port on AOLserver 4.5

2008-06-10 Thread Vlad Seryakov
I assume you are running new Tcl, in nscp.c line 366 replace res = interp->result; with res = Tcl_GetStringResult(interp); Bernhard van Woerden wrote: I'm trying out AOLserver4.5 on FreeBSD7 and can't get the control port to echo back the results of a command e.g. Welcome to nsd running a