Re: Witango-Talk: Crashes on OS X

2004-02-10 Thread Christian Platt
Crashes occur on regular base, if something in the JDBC envirmonment is changed and you do not restart the server. Sometimes even if just a new field was added... (for mysql) Christian Am 10.02.2004 2:44 Uhr schrieb MJPinckard unter [EMAIL PROTECTED]: Just chiming in to say that Timbuktu

Re: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Peter Ternström
Cool! could you tell me how to do this? I would like to restart tango server every night, due to memory leak problems. Kind regards Peter - Original Message - From: RJ Hendrickson [EMAIL PROTECTED] To: Multiple recipients of list witango-talk [EMAIL PROTECTED] Sent: Saturday, April

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Steve Campbell
I am interested in this as well. Thanks Steve -Original Message- From: Peter Ternström [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 6:45 AM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: Tango Memory Leaks Cool! could you tell me how to do this? I would like to

Witango-Talk: [OT] Question on Site

2004-02-10 Thread Ben Johansen
Hi All, I have all of a sudden started getting notifications of someone checking up on me at wordofmouthreports.net. Anyone have any comments or information please let me know Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement

SV: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Bengt Bredin
Hi ! I just created a bat file with two lines: Net stop witango server 5 Net start witango server 5 Then use the W2K Scheduler to set up a routine that calls the bat file. Seems to work fine. Bengt -Ursprungligt meddelande- Från: Steve Campbell [mailto:[EMAIL PROTECTED] Skickat:

Re: Witango-Talk: [OT] Question on Site

2004-02-10 Thread Dan Stein
Ben could this be some sort of scam. When I go to that web site I get a blank page. on 2/10/04 10:51, Ben Johansen at [EMAIL PROTECTED] wrote: Hi All, I have all of a sudden started getting notifications of someone checking up on me at wordofmouthreports.net. Anyone have any comments or

Re: Witango-Talk: [OT] Question on Site

2004-02-10 Thread webdude
I also get nothing but a blank page. Maybe they are recording IPs that hit? Ben could this be some sort of scam. When I go to that web site I get a blank page. on 2/10/04 10:51, Ben Johansen at [EMAIL PROTECTED] wrote: Hi All, I have all of a sudden started getting notifications of someone

RE: Witango-Talk: [OT] Question on Site

2004-02-10 Thread Ben Johansen
Sorry, the darn site sends emails under diff domain Try http://word-of-mouth-connection.com I really don't like the fact that they are trading information about me without my permission and that I have to pay them to see what information they are trading. Ben Johansen - http://www.pcforge.com

RE: Witango-Talk: [OT] Question on Site

2004-02-10 Thread Scott Cadillac
Hi Ben, It's a scam alright: http://www.consumer.state.ny.us/PressReleases/2003/June052003.htm Here's an Excerpt: 9. Scam websites: There is no government agency or regulatory body that approves the content of Internet websites. It's reader (and buyer) beware. As a result, all types of scams

RE: Witango-Talk: [OT] Question on Site

2004-02-10 Thread Ben Johansen
Thanks for that. Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement -Original Message- From: Scott Cadillac [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 12:50 PM To: [EMAIL PROTECTED] Subject: RE: Witango-Talk:

Witango-Talk: simple? SQL question

2004-02-10 Thread John Newsom
I have a taf that students use to sign up for events. I want to be able to easily report to the event planners which students have NOT signed up. I have another taf that creates two arrays, one of all students, and one of enrolled students, and then iterates through and creates a new array that

RE: Witango-Talk: simple? SQL question

2004-02-10 Thread Ben Johansen
Select * from Students where StudentID in (Select StudentID from Non-Enrolled) Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement -Original Message- From: John Newsom [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004

RE: Witango-Talk: [OT] Question on Site

2004-02-10 Thread Ben Johansen
Ok, I have blocked them on my mail server Here is the info for others *.wominfo.org 66.132.194.220 *.wordofmouthreports.net 207.36.196.99 Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement -Original Message- From: Ben

Re: Witango-Talk: simple? SQL question

2004-02-10 Thread Bill Downall
SELECT whatever FROM AllStudents WHERE studentID NOT IN (SELECT StudentID FROM enrolledStudents) Or, for better performance with some databases: SELECT whatever FROM AllStudents a1 WHERE studentID NOT IN (SELECT StudentID FROM enrolledStudents e2 WHERE e2.studentID = a1.studentID) Bill On

RE: Witango-Talk: simple? SQL question

2004-02-10 Thread John Newsom
Thanks. You all are awesome. With SQL Server, it wants a join statement in the sub select, as in your second example. Here is my final select statement. select Student_ID, S_first_final, S_last, Adviser_full from tblStudents2003 a1 where Current_grade 8 and Student_ID not in (SELECT

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Fogelson, Steve
I tried the following on Tango 2000 Net stop Tango 2000 Server Net start Tango 2000 Server Worked fine except the watchdog restarted the Tango server before I could do my maintenance. Any way to prevent this? Thanks Steve Fogelson Internet Commerce Solutions -Original Message- From:

Re: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Alan Wolfe
Hey Steve, stop the watchdog before you stop the tango service (: dont remember the exact command but we did that when we were using tango 2000 on NT 4.0 - Original Message - From: Fogelson, Steve [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 2:11 PM Subject:

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Fogelson, Steve
Thanks Alan Do you have to restart the watchdog or does restarting Tango do it for you? Thanks Steve -Original Message- From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 4:20 PM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: Tango Memory Leaks Hey Steve,

Re: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Alan Wolfe
hmm, dont know You could try stopping the watchdog, stoping tango, starting tango and seeing what services are running to see if the watchdog is back on or not - Original Message - From: Fogelson, Steve [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 2:19 PM

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Tom Ferguson
if you start the WatchDog and Witango isn't running, won't the WatchDog start it? -Original Message- From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 5:38 PM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: Tango Memory Leaks hmm, dont know You could

Re: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Alan Wolfe
yeah but if you stop the watchdog and restart tango, would the watchdog be running again? thats what he was asking i think. - Original Message - From: Tom Ferguson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 2:54 PM Subject: RE: Witango-Talk: Tango Memory

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Fogelson, Steve
Maybe I should just start the watchdog. Steve -Original Message- From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 5:00 PM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: Tango Memory Leaks yeah but if you stop the watchdog and restart tango, would the

Witango-Talk: purgecache?

2004-02-10 Thread MJPinckard
I have a taf I use to purge the cached files, so that when I make a code change, I can implement it without stopping and restarting the witango server. it consists of a single metatag... @purgecache I get the following error when I try to call the taf [Results Action][5]

Re: Witango-Talk: purgecache?

2004-02-10 Thread Roland Dumas
x-tad-smaller@ASSIGN/x-tad-smallerx-tad-smaller /x-tad-smallerx-tad-smallerconfigpasswd/x-tad-smallerx-tad-smaller /x-tad-smallerx-tad-smalleruser/x-tad-smallerx-tad-smaller /x-tad-smallerx-tad-smaller>/x-tad-smallerx-tad-smaller /x-tad-smallerx-tad-smaller@PURGECACHE/x-tad-smallerx-tad-smaller

Re: Witango-Talk: purgecache?

2004-02-10 Thread Alan Wolfe
heya, in your witango.ini file it says: CONFIGPASSWD=XX where XX is your password. before you can do some actions (like reloadconfig and purgecache), you have to set a password for them to work. you would do that like this: @ASSIGN NAME=user$configPasswd VALUE='XX' @purgecache

RE: Witango-Talk: Tango Memory Leaks

2004-02-10 Thread Steve Campbell
Maybe I am so behind with versions, but watchdog, can someone educate me? IF need be then yes, do it off list. Thanks Steve -Original Message- From: Fogelson, Steve [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 4:11 PM To: '[EMAIL PROTECTED]' Subject: RE: Witango-Talk:

Re: Witango-Talk: purgecache?

2004-02-10 Thread Russell Stephany
hi, does anyone know about @purgecache in a load-balanced environment? do i need to hit each server with a @purgecache? (which, of course, raises the question of how do you force a particular server) cheers, russell Alan Wolfe [EMAIL PROTECTED] wrote on 11/02/2004 12:06:49 PM: heya, in

Re: Witango-Talk: purgecache?

2004-02-10 Thread Fergal Donlon
Hi Russell, Yes you would need a @purgecache for each instance of server running. There is a pdf called Witango 5 Professional Server Configuration Guide, available via witango.com or from: http://www2.witango.com/downloads/ProfConfigGuide.pdf It contains information on how to direct requests