[AOLSERVER] Static vs. shared libraries?

2001-10-25 Thread Andrew Piskorski
to statically link libfoo.a into nsd8x in the first place. Is it somehow possible to link libfoo.a into my myfoo.so, rather than nsd8x? I don't think so, but I'm not really sure. Thanks for any advice! -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Static vs. shared libraries?

2001-10-25 Thread Andrew Piskorski
in weird cases (like referencing errno). I'm doing this on Solaris (SunOS 5.8). I have no idea whether the vendor's library was compiled with -D_REENTRANT - is there some way for me to check? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Static vs. shared libraries?

2001-10-26 Thread Andrew Piskorski
On Thu, Oct 25, 2001 at 06:55:50PM -0500, Rob Mayoff wrote: On Linux, you should be able to extract all the .o files from the .a and combine them into a .so. Rob, how would I do that? Can you point me to any info? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Static vs. shared libraries?

2001-10-26 Thread Andrew Piskorski
On Thu, Oct 25, 2001 at 09:46:06PM -0400, Dossy wrote: On 2001.10.25, Andrew Piskorski [EMAIL PROTECTED] wrote: Unfortunately, the vendor of this closed-source API ships only the non-shared libfoo.a version of their library - they don't ship a libfoo.so. So, just make a libfoo.so

Re: [AOLSERVER] Static vs. shared libraries?

2001-10-26 Thread Andrew Piskorski
-nostartfiles -o blah.so *.o (If you're using GNU ld, anyway.) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] custom replacement for ns_sockopen?

2001-10-29 Thread Andrew Piskorski
Ns_AllocThreadLocalStorage? If I just declare a global variable in my-loadable-module.c, what is the scope of that variable? Per-thread, or server-wide? Any advice will be much appreciated... -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Ns_TclEnterSet - temporary vs. dynamic?

2001-12-10 Thread Andrew Piskorski
Ah, thanks Jim, that answered my questions perfectly. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Ns_SetCreate is thread safe?

2002-01-07 Thread Andrew Piskorski
BB_TclReceiveDataCmd) at set.c:91 #4 0xfe6a7e7c in BB_TclCmd (data=0x0, interp=0x189120, argc=3, argv=0xfddfd1e0) at nsbbapi.c:2251 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Ns_SetCreate is thread safe?

2002-01-07 Thread Andrew Piskorski
causing this corruption? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] what logs errors to server log?

2002-01-10 Thread Andrew Piskorski
, without having to try to compare entries between my access and server logs. Obviously this isn't a terribly important feature, but I'd find it very convenient. Suggestions? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Purify, Insure++

2002-02-20 Thread Andrew Piskorski
completely SOL as far as malloc debugging type tools go. http://www.gnu.org/directory/checker.html http://perens.com/FreeSoftware/ -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] ns_cond wait mutex - what for?

2002-02-22 Thread Andrew Piskorski
On Fri, Feb 22, 2002 at 03:57:26PM -0500, Andrew Piskorski wrote: Why do I need to use a separate flag value in addition to the mutex? Oh. I think I just realized (at least one reason) why. The flag value, is so if T2 does its ns_cond broadcast BEFORE T1 starts doing ns_cond wait, that T1

[AOLSERVER] ns_conn contentlength, URL length?

2002-04-05 Thread Andrew Piskorski
! -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] ns_conn contentlength, URL length?

2002-04-05 Thread Andrew Piskorski
[ns_conn request] and that's truncated? Hm, so ns_conn contentlength is only for POSTs? Right, I tried it and [ns_conn request] is truncated if the GET request is longer than $maxline. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] C based modules, tcl interps and memory allocators

2002-04-14 Thread Andrew Piskorski
On Sun, Apr 14, 2002 at 10:32:01PM -0400, Jason Saunders wrote: I'm designing a site written entirely in C-based modules - much of Since I'm not going to be using the tcl capabilities of AOLServer Why? (Just out of curiosity...) -- Andrew Piskorski [EMAIL PROTECTED] http

Re: [AOLSERVER] C based modules, tcl interps and memory allocators

2002-04-16 Thread Andrew Piskorski
, the AOLserver and Tcl C APIs (Ns_Set, Tcl_HashTable, etc.) are very useful in and of themselves, even if you never touch Tcl code at all. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Oracle connections going defunct

2002-04-23 Thread Andrew Piskorski
wondering, why do you use MTS? Any particular reason? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] nsv API in C ?

2002-05-04 Thread Andrew Piskorski
command and calls NsVSetCmd() to do the actual work. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] nsv API in C ?

2002-05-04 Thread Andrew Piskorski
On Sat, May 04, 2002 at 11:06:09AM -0400, Dossy wrote: On 2002.05.04, Andrew Piskorski [EMAIL PROTECTED] wrote: On Sat, May 04, 2002 at 01:31:42AM -0400, Dossy wrote: If you're not passing the interp to Ns_TclEval to tell it in which interpreter to perform the TclEval ... then don't you

Re: [AOLSERVER] turn database verbosity on/off?

2002-05-27 Thread Andrew Piskorski
in the error message, and with verbose turned off, they of course never show up in the log at all. Maybe there's some way to get the bind variable stuff into the error message, but I haven't looked into it. On Mon, 27 May 2002, Andrew Piskorski wrote: Is there any way to turn the Verbose

Re: [AOLSERVER] AOLserver Oracle Driver Improvements

2002-05-30 Thread Andrew Piskorski
with it in my spare time, and since the Oracle driver source code is incredibly ugly, I have no interest in doing any further work on it. Rob, any comments on what made the code is so ugly, how to avoid that in future, etc.? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] AOLserver Oracle Driver Improvements

2002-05-30 Thread Andrew Piskorski
. postgres.c is what OpenACS uses, and looks much more recent. Was it forked off from nspostgres.c at some point? http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/acs-pg/driver-2.3/ http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/aolserver/nspostgres/ -- Andrew Piskorski [EMAIL PROTECTED] http

[AOLSERVER] listserv.aol.com does not work with Netscape 4.77 ?

2002-07-01 Thread Andrew Piskorski
what's wrong? And is there a more usefull archive of the list anywhere else? Thanks! -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Tcl profiling in AOLserver?

2002-07-08 Thread Andrew Piskorski
folks here use for profiling your Tcl code in AOLserver? Have you tried any of the above profiler modules, and do you have any feedback or advice? Thanks! -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Tcl Thread Extension in use?

2002-08-20 Thread Andrew Piskorski
/shownotes.php?release_id=98464 http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/tcl/thread/doc/html/thread.html?rev=1.3 http://www.tcl.tk/doc/howto/thread_model.html http://mini.net/tcl/1339 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Preliminary AOLserver 3.3ad13 and 3.3ad13tcl8.4 Debian packages and tests with AOLserver+Tcl 8.4

2002-08-22 Thread Andrew Piskorski
it myself, so I can't help on that segfault problem... -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Oracle Driver

2002-09-29 Thread Andrew Piskorski
it, or should be able to grab it from here: http://eveander.com/arsdigita/acs-repository/aolserver-src But I suspect you may already have it, and it's just version number confusion going on... -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] AOLserver and Red Hat 8

2002-10-01 Thread Andrew Piskorski
be something different. http://openacs.org/bboard/q-and-a-fetch-msg.tcl?msg_id=0006JW http://sources.redhat.com/ml/libc-alpha/2002-09/msg00350.html -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] slow client gets truncated output?

2002-10-10 Thread Andrew Piskorski
-encoding binary fconfigure $fd -translation {binary binary} fconfigure $fd -buffersize 100 ## Write http request puts -nonewline $fd GET $real_request HTTP/1.0\r\n puts -nonewline $fd Fd: Keep-Alive\r\n puts -nonewline $fd \r\n flush $fd } -- Andrew

Re: [AOLSERVER] AOLserver and IP Multicast....

2002-10-11 Thread Andrew Piskorski
/subscribe for networking, can do fault tolerance, etc.: http://mini.net/tcl/3947 http://mini.net/tcl/3886 http://www.jpaulmorrison.com/fbp/cognates.htm -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Ns_TlsAlloc needs Ns_MasterLock ?

2002-10-14 Thread Andrew Piskorski
(myflag_p_tlsKey, NULL); Ns_TlsSet(myflag_p_tlsKey, myflag_p); } Ns_MasterUnlock(); } myflag_p = (int) Ns_TlsGet(myflag_p_tlsKey); return myflag_p; } -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] OOP options for AOLServer

2002-10-23 Thread Andrew Piskorski
http://media.wu-wien.ac.at/doc/xotcl-aolpatch.README -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Tcl makefiles use wrong compiler

2002-10-23 Thread Andrew Piskorski
to use. How do I properly fix this so it uses the compiler specified in CC in Makefile.global? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Tcl makefiles use wrong compiler

2002-10-23 Thread Andrew Piskorski
On Wed, Oct 23, 2002 at 01:42:33PM -0400, Peter M. Jansson wrote: On Wednesday, October 23, 2002, at 01:17 PM, Andrew Piskorski wrote: How do I properly fix this so it uses the compiler specified in CC in Makefile.global? Does env CC=/opt/SUNWspro/bin/cc gmake nativeme=1 work for you? Yes

[AOLSERVER] read nsd command line from nsd.tcl?

2002-10-23 Thread Andrew Piskorski
Is there any good way to access the command line that AOLserver started with from the context of the nsd.tcl config file? It would be nice to be able to set different config settings based on nsd command line options. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] OpenNSD Re: [AOLSERVER] Responding to SourceForge-generated mail

2002-10-22 Thread Andrew Piskorski
site, but a multi-threaded porn site with an embedded tcl interpreter and native db api. See how easy it is to sell this stuff? ;) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] segfault in ns_malloc, _smalloc

2002-10-24 Thread Andrew Piskorski
=0xfe4fcc18) at nsdtkapi.c:6491 #31 0x6e1c8 in EvalScript (arg=0x5d8310) at tclsched.c:562 #32 0x6e334 in NsTclThread (arg=0x5d8310) at tclsched.c:663 #33 0x1402a0 in NsThreadMain (arg=0x5df420) at thread.c:228 (gdb) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-10-25 Thread Andrew Piskorski
on SourceForge: http://sourceforge.net/tracker/index.php?func=detailaid=597728group_id=10894atid=110894 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-10-27 Thread Andrew Piskorski
copy of a .so, so that I don't have to go through the hassle of instead statically linking in a .a library instead? My _smalloc segfault happens even if only 1 copy of the shared library is in use anywhere, but that problem does make me think more about these issues... -- Andrew Piskorski [EMAIL

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-10-27 Thread Andrew Piskorski
?? Unless I already knew for sure that it was 'clock scan' causing the problem, I can't imagine how I would have figured it out. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Input data verification

2002-11-05 Thread Andrew Piskorski
, when I have time. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] malloc replacement libraries?

2002-11-06 Thread Andrew Piskorski
http://sourceforge.net/projects/clw/ http://sourceforge.net/projects/libmss/ http://sourceforge.net/projects/ansimd/ http://packages.debian.org/stable/devel/fda.html -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] malloc replacement libraries?

2002-11-06 Thread Andrew Piskorski
it detects a violation, which is not what I want. I want it to keep running, but make the violation not hurt anything. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] benchmarking aolserver (odd behavior)

2002-11-07 Thread Andrew Piskorski
with both 3.3.1+ad13 and 3.5.0. I'm running Mac OS X 10.2.1. Perhaps try it with 4.0 as well? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] AOLserver Project Update

2002-11-07 Thread Andrew Piskorski
shows: http://mini.net/tcl/1598.html -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] ns_set, Tcl arrays Re: [AOLSERVER] AOLserver Project Update

2002-11-07 Thread Andrew Piskorski
shared ns_sets either. Doing so is unusual anyway, but I did for a while (on AOLserver 3.3+ad13), and it caused unexplainable memory leaks, even though I was always properly freeing the ns_set -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] URL case insensitivity.

2002-11-08 Thread Andrew Piskorski
On Fri, Nov 08, 2002 at 11:19:09AM -0700, Michael A. Cleverly wrote: On Fri, 8 Nov 2002, Andrew Piskorski wrote: And 'ns_conn request' gives you the URL as received from the client, but AFAIK there's no API to let you change it. The aol3.3+ad13 distribution has an nsrewrite .so module

Re: [AOLSERVER] nsv needs C API Re: [AOLSERVER] ns_set,

2002-11-08 Thread Andrew Piskorski
, no C API. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Emacs indents for tcl and C

2002-11-09 Thread Andrew Piskorski
)) (dolist (hook '(emacs-lisp-mode-hook lisp-mode-hook c-mode-hook c++-mode-hook tcl-mode-hook sh-mode-hook fortran-mode-hook)) (add-hook hook 'kill-indent-tabs)) (defalias 'lush-lines 'flush-lines) (defalias 'rh 'dictionary-search) -- Andrew Piskorski [EMAIL PROTECTED] http

Re: [AOLSERVER] Emacs indents for tcl and C

2002-11-10 Thread Andrew Piskorski
standards doc with the tabs are evil, configure your Emacs to use only spaces religion. Of course, I've never run across anyone who really WANTED to use tabs rather than spaces, just people who did it that way by accident without thinking, because it's the Emacs default. -- Andrew Piskorski [EMAIL

Re: [AOLSERVER] Tabs, Spacers, 20-30 years ago, ACID, rec.drugs.?

2002-11-12 Thread Andrew Piskorski
consistently that bad, just badly inconsistent. :) I seem to recall that the default GNU Emacs Tcl mode (which is what most aD deverlopers were using) was pretty poor, which probably contributed to the one-liner monstrosities. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-11-14 Thread Andrew Piskorski
] -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-11-21 Thread Andrew Piskorski
localtime_r(). But why was that necessary? Why didn't the mutex locking approach work? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] mix -g/-O among modules?

2002-11-24 Thread Andrew Piskorski
to specify both -g and -O? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] segfault in ns_malloc, _smalloc

2002-11-24 Thread Andrew Piskorski
On Thu, Nov 21, 2002 at 01:53:17PM -0500, Dossy wrote: On 2002.11.21, Andrew Piskorski [EMAIL PROTECTED] wrote: Why didn't the mutex locking approach work? Are you sure you're actually locking the /same/ mutex from both pieces of code (reentrant.c and your wrapper around the vendor Damn

[AOLSERVER] best maxkeepalive setting?

2002-12-09 Thread Andrew Piskorski
What are reasonable, good, or best settings for the maxkeepalive parameter? How do you go about deciding what it should be? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 3.5.1 no response from webserver and only one nsd process

2002-12-25 Thread Andrew Piskorski
is implemented in the Linux kernel, but I'm not sure. Regardless, the important thing is that a running AOLserver only ever has one process, no matter what ps shows you. And unless I'm missing something, you should also see no difference in what ps shows you between 3.5.1 and 3.4.2. -- Andrew Piskorski

[AOLSERVER] path to nsd binary from nsd.tcl?

2003-01-05 Thread Andrew Piskorski
. Instead, is there any way to let me access the command line used to start nsd directly? I would like to do that, in order to set other things in nsd.tcl based on where the nsd binary is. E.g., with /web/aol3/bin/nsd, I want to all logs to go into /web/aol3/log. -- Andrew Piskorski [EMAIL

Re: [AOLSERVER] path to nsd binary from nsd.tcl?

2003-01-05 Thread Andrew Piskorski
On Sun, Jan 05, 2003 at 05:04:34PM -0600, David Walker wrote: [ns_info nsd] will give you the path to the binary you used to start nsd. Is Perfect! I missed that one somehow, oops. Thanks, David. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] path to nsd binary from nsd.tcl?

2003-01-05 Thread Andrew Piskorski
, in /web/mysite/nsd.tcl, not beneath /web/aol/ where the nsd binary lives. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 3.3+ad13 w/ Tcl 8.4.1 ?

2003-01-06 Thread Andrew Piskorski
, Roberto Mello reported that his AOLserver 3.3+ad13 w/ Tcl 8.4b1 crashed several times while testing, but I don't know how he built it. I'll probably try AOLserver 3.5 next, but it would be nice to know if and how older versions of AOLserver can be made to work with Tcl 8.4. -- Andrew Piskorski [EMAIL

[AOLSERVER] 3.5.1, howto autoconf build process?

2003-01-06 Thread Andrew Piskorski
to speed on autoconf and actually use it? Or some other way? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] profiling AOLserver *.so?

2003-01-12 Thread Andrew Piskorski
'*' to get the timing of all the function calls, but as far as I know there's no ready made option to take all that raw timing data and assemble it into something like gprof's output. Presumably I could write a script to do it but that sure doesn't sound appealing. Any advice? Thanks! -- Andrew

Re: [AOLSERVER] Browser Id

2003-01-16 Thread Andrew Piskorski
) user_id 0 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] bug reports not auto-emailed?

2003-01-17 Thread Andrew Piskorski
about nsoracle/ora8.c having bogus DOS line endings, and realized I haven't been getting any bug reports at all: http://sourceforge.net/tracker/index.php?func=detailaid=669839group_id=3152atid=103152 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Andrew Piskorski
where I have a brand that has customers that have orders that have line items, and I want to store those. I think managing complexity I've often wished -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Is Aolserver vulnerable?

2003-01-22 Thread Andrew Piskorski
is '^]'. TRACE / HTTP/1.1 Host: www.panoptic.com:80 HTTP/1.0 404 Not Found MIME-Version: 1.0 Date: Wed, 22 Jan 2003 21:27:30 GMT Server: AOLserver/3.5.0 Content-Type: text/html Content-Length: 548 Connection: close -- Andrew Piskorski [EMAIL PROTECTED] http

Re: [AOLSERVER] ns_mutex lock / unlock is likely causing our AOL webserver to hung

2003-01-23 Thread Andrew Piskorski
brings your site down, but in the subject you said AOLserver is hung? What exactly is the failure mode? Is your nsd process segfaulting? Or are you just deadlocking threads such that AOLserver hangs there doing nothing? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] DB Pool and closed connections

2003-01-24 Thread Andrew Piskorski
possible? Is there any possible interaction between the conn and the db driver in AOLserver? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] ns_mutex is likely causing our AOL web server to hung

2003-01-27 Thread Andrew Piskorski
On Mon, Jan 27, 2003 at 12:25:32PM -0500, Seena Kasmai wrote: So, is it worth trying to substitute ns_share with nvs stuff (nsv_set nsv_get) to see if the problem goes away ? Yes! With AOLserver 3.x or 4.x, you should always be using nsv instead of ns_share if you can. -- Andrew Piskorski

Re: [AOLSERVER] ns_mutex is likely causing our AOL web server to hung - Memory problem

2003-01-30 Thread Andrew Piskorski
aolserver/tcl8.3.2/. More conclusively, just display the results of running info tclversion and info patchlevel in a Tcl page -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] ns_mutex is likely causing our AOL web server to hung - Memory problem

2003-01-30 Thread Andrew Piskorski
.x were EVER that big, not even with 3.0 before Rob Mayoff made any of his fixes at all. Instead, sounds like something in your application is tripping over some AOLserver 2.3 vs. 3.3 difference. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] Dreamweaver ADP hooks Re: [AOLSERVER] Cold Fusion vs Tcl in AOLserver: Opinions

2003-01-30 Thread Andrew Piskorski
: - Forwarded message from Jonathan Sefton [EMAIL PROTECTED] - From: Jonathan Sefton [EMAIL PROTECTED] To: 'Andrew Piskorski' [EMAIL PROTECTED] Cc: David Fullagar [EMAIL PROTECTED], 'Jeff Davis' [EMAIL PROTECTED] Subject: RE: DreamWeaver ADP hooks? Date: Fri, 25 Oct 2002 20:00:34

Re: [AOLSERVER] aolserver 3.3ad13 on RedHat 8.0

2003-02-11 Thread Andrew Piskorski
this question.) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] LD_PRELOAD does not work with AOLserver TLS?

2003-02-12 Thread Andrew Piskorski
., MODULE_NAME, func_name); } else { Ns_Log(Error, %s: %s: Failed with error code '%i'., MODULE_NAME, func_name, rc_err); } } else { /* rc == (state_ptr-result) */ } return rc; } -- Andrew Piskorski [EMAIL PROTECTED] http

[AOLSERVER] How to get -g -O2 with 4.0?

2003-02-14 Thread Andrew Piskorski
and that seems to work fine. What is the recomended way to get the AOLserver build process to use -g -O2? Is there some magic flag I can pass to configure, or should I just manually edit the generated Makefile.global? Advice? Also, is there any reason to use only -O rather than -O2 for 4.0? -- Andrew

[AOLSERVER] 4.0 build problems (nsoracle, etc.)

2003-02-14 Thread Andrew Piskorski
in this function) What version of nsopenssl should I be using with 4.0? - nscache head and nsxml v1_5 both seem to build ok. I haven't tried nspostgres yet. And tips, advice, or fixes would of course be much appreciated. :) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

[AOLSERVER] 4.0 ClientData arg ??

2003-02-15 Thread Andrew Piskorski
; } arrayPtr = LockArray(arg, interp, objv[1], 1); SetVar(arrayPtr, objv[2], objv[3]); UnlockArray(arrayPtr); Tcl_SetObjResult(interp, objv[3]); return TCL_OK; } -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-17 Thread Andrew Piskorski
, like under AOLserver 3.x? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-17 Thread Andrew Piskorski
On Mon, Feb 17, 2003 at 06:44:05PM -0500, Andrew Piskorski wrote: Also, the Tcl procs I've defined don't seem to work in non-connection threads either. I definitely get invalid command name errors both in the -main- and various detached threads (e.g., -thread6-, -thread7-). Why? Do I need

[AOLSERVER] Does 4.0 cache tcl page object code?

2003-02-17 Thread Andrew Piskorski
), but I was never clear on just where in the code he implemented it, so I can't just check by comparing the code against 4.0... -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Andrew Piskorski
*) Tcl_GetAssocData(interp, ns:data, NULL); } -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Andrew Piskorski
*/ The Tcl overhead from my custom commands was never even showing up in my performance profiling, so once I learned more about using Tcl's object interface, I never bothered going back and trying to object-ify that again. I'll save it for a rainy day. :) -- Andrew Piskorski [EMAIL PROTECTED

Re: [AOLSERVER] Tcl bytecode caching for Tcl pages

2003-02-24 Thread Andrew Piskorski
. No? -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com I. To remove yourself from this list: Send a message to [EMAIL PROTECTED] with the following text in the BODY of your message: signoff aolserver II. For a complete list of listserv options please visit: http://listserv.aol.com/ III

[AOLSERVER] more modules for Jamie's list

2003-03-06 Thread Andrew Piskorski
to eventually build the Threads extension as a standard component of AOLserver, as an alternative (or completely in place of) the older AOLserver nsv stuff. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com I. To remove yourself from this list: Send a message to [EMAIL PROTECTED

Re: [AOLSERVER] Simple Problem

2003-03-14 Thread Andrew Piskorski
. :) -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com I. To remove yourself from this list: Send a message to [EMAIL PROTECTED] with the following text in the BODY of your message: signoff aolserver II. For a complete list of listserv options please visit: http://listserv.aol.com

Re: [AOLSERVER] ADP: are if's possible?

2003-03-15 Thread Andrew Piskorski
, something broke big time % } % -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com I. To remove yourself from this list: Send a message to [EMAIL PROTECTED] with the following text in the BODY of your message: signoff aolserver II. For a complete list of listserv options please

Re: [AOLSERVER] ns_cache and virtual hosting ...

2003-03-16 Thread Andrew Piskorski
On Sun, Mar 16, 2003 at 02:33:53PM +0100, Zoran Vasiljevic wrote: ns_cache create name ?-size size? ?-timeout timeout? ?-thread boolean | -common boolean? The name of the new option -common is the best what came to my -serverwide? -global? -- Andrew Piskorski [EMAIL PROTECTED] http

Re: [AOLSERVER] Emacs and ADP -- a solution

2003-03-17 Thread Andrew Piskorski
configure the one I'm using at work, so I can't really tell you how to do so, but googling for mmm-mode gets a lot of useful hits, e.g.: http://mmm-mode.sourceforge.net/ http://packages.debian.org/stable/editors/mmm-mode.html -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] Best way for user authentication?

2003-03-18 Thread Andrew Piskorski
be a truly damning indictment of OpenACS if true, but fortunately, it's not even remotely the case. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list: http://www.aolserver.com/listserv.html List information

Re: [AOLSERVER] OpenACS

2003-03-18 Thread Andrew Piskorski
toolkit, but between the in-house toolkit you used on a previous project, and the OpenACS toolkit. A very different issue. If you want advice, you should probably describe your specific needs and concerns re. OpenACS and ask for more details on the openacs.org forums. -- Andrew Piskorski [EMAIL

Re: [AOLSERVER] Best way for user authentication?

2003-03-18 Thread Andrew Piskorski
?message_id=78154 -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- 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/

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

2003-03-26 Thread Andrew Piskorski
-provided library functions that themselves use cd/pwd, and would thus need to be overriden or otherwise worked around? Or do Tcl and AOLserver have their own entry points to all C function calls using cd/pwd, and we could implement the TLS stuff there? -- Andrew Piskorski [EMAIL PROTECTED] http

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

2003-03-27 Thread Andrew Piskorski
. Thus I immediatly wondering about the possibility of using TLS to solve the cd/pwd bugs you described... I think it would be good to know what exact spots in Tcl might be potential [cd] doers. I will try to grep the code and see what Definitely, that would be good to know. -- Andrew Piskorski

Re: [AOLSERVER] access logs

2003-04-04 Thread Andrew Piskorski
. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- 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/

Re: [AOLSERVER] nspostgres driver on Debian won't make

2003-05-27 Thread Andrew Piskorski
; \ + echo ** Usage: make inst=/path/to/aolserver install; \ echo ** ; \ exit 1; \ fi -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list: http://www.aolserver.com

Re: [AOLSERVER] Run two instances of aolserver 3

2003-05-31 Thread Andrew Piskorski
for your problem here, but you don't need two separate config files. The config file is a Tcl script, so you can just put if statements in there to set things slightly differently for Dev and Production. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- AOLserver - http

Re: [AOLSERVER] [ aolserver-Feature Requests-746579 ] Server instance controller process

2003-06-01 Thread Andrew Piskorski
relate to. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com -- 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/

Re: [AOLSERVER] Native drivers for SAP DB and/or Firebird

2003-07-05 Thread Andrew Piskorski
and database I was using at the time. http://www.theashergroup.com/download/download-input.tcl?scope=publicversion_id=9pseudo_filename=odbc%2etar AFAIK neither driver has been changed at all since I played with them back in 2001. -- Andrew Piskorski [EMAIL PROTECTED] http://www.piskorski.com

Re: [AOLSERVER] ANN: tDOM 0.7.8 release ready for download

2003-07-08 Thread Andrew Piskorski
://openacs.org/forums/message-view?message_id=95400 -- Andrew Piskorski [EMAIL 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

  1   2   3   4   >