RE: Witango-Talk: REGEX

2005-02-18 Thread Ben Johansen
This is strange, I just tested the command from the doc and it worked fine on windows platform - 5.0.1.065 Chimera (Win32) I did find that when I un-wrap you code from the email that there is a missing space between one of the [A-Z] and [0-9] pairs ---from docs-- @REGEX

Re: Witango-Talk: REGEX

2005-02-18 Thread Roland Dumas
The space was introduced by the email, there is none in the code. Started with an attempt to plug in some of these URL detection schemes. Nothing worked, It just gave me back the witango tag. I thought maybe something might be wrong with the code, so I copied the snipped right out of the

RE: Witango-Talk: REGEX

2005-02-18 Thread Ben Johansen
I thought that might be the case. And I didn't doubt that you were having an issue. Just strange Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement -Original Message- From: Roland Dumas [mailto:[EMAIL PROTECTED] Sent:

Witango-Talk: Is anyone out there in Witango Land using XPATH in 5.5?

2005-02-18 Thread Ben Johansen
Hi, Anyone, anyone. Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Witango-Talk: Filemaker Server 7

2005-02-18 Thread Shannon Henderson
?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE JDBCINI SYSTEM jdbcini.dtd JDBCINI Version=0x0001 DataSources DataSource ID=Untitled2 DSNUntitled2/DSN

RE: Witango-Talk: Is anyone out there in Witango Land using XPATH in 5.5?

2005-02-18 Thread steve
Hello, I am interested, XPATH? Steve -Original Message- From: Ben Johansen [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 11:11 AM To: witango-talk@witango.com Subject: Witango-Talk: Is anyone out there in Witango Land using XPATH in 5.5? Hi, Anyone, anyone. Ben

RE: Witango-Talk: Is anyone out there in Witango Land using XPATH in 5.5?

2005-02-18 Thread Ben Johansen
XPath is the newly added XML parsing language added in Witango 5.5 I am wondering if anyone out there is using it? Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement -Original Message- From: steve [mailto:[EMAIL PROTECTED]

Re: Witango-Talk: Auto a href

2005-02-18 Thread webdude
Title: Re: Witango-Talk: Auto a href Okay, I am not a regex expert by any means, but I am trying to do something like this, @assign str @arg text SCOPE=user @assign expr http?://[^ ]* SCOPE=user @regex str=@@str expr=expr type=e but I keep getting a return of M regardless if I am typing

RE: Witango-Talk: Auto a href

2005-02-18 Thread Ben Johansen
Title: Re: Witango-Talk: Auto a href Ok, To use the ? (optional) operator you need to have the optional value Try https?://[^ ]* notice the s? this says that the s is optional a good test site is http://www.quanetic.com/regex.php Ben Johansen - http://www.pcforge.com

RE: Witango-Talk: Auto a href

2005-02-18 Thread Ben Johansen
Title: Re: Witango-Talk: Auto a href Ok try this [ ]https?://[^ ]+\.[a-zA-Z]{2,4}[ ] This says starts with [space]http has 1 to many non spaces chars ends with . and 2 to 4 chars with space after that Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon

RE: Witango-Talk: Auto a href

2005-02-18 Thread webdude
Title: RE: Witango-Talk: Auto a href Tried this... @assign str @arg text SCOPE=user @assign expr https?://[^ ]+\.[a-zA-Z]{2,4} SCOPE=user @regex str=@@str expr=expr type=e Still getting M I really have no idea what I am doing. I have never worked with regex before. I can see where this would

RE: Witango-Talk: Auto a href

2005-02-18 Thread Ben Johansen
Title: RE: Witango-Talk: Auto a href Ok test this taf out Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 10:34 AM To:

Witango-Talk: REGEX on Mac: DOA

2005-02-18 Thread Roland Dumas
Running some tests, it appears that regex isn't alive on witango 5.065 When it does process, it gives wrong answer. That is, if you process the test case in the dev guide, you get it to parse the address but it gives the initial value and string lengths of 0, instead of the values in the manual

Re: Witango-Talk: Auto a href

2005-02-18 Thread Roland Dumas
Title: Re: Witango-Talk: Auto a href Mac witango 5.065: http://ridge3.imagineworks.com/dev/regex_href.taf On 2/18/05 10:24 AM, Ben Johansen [EMAIL PROTECTED] wrote: Ok test this taf out TO UNSUBSCRIBE: Go to

RE: Witango-Talk: Auto a href

2005-02-18 Thread webdude
Title: RE: Witango-Talk: Auto a href Okay, I got that to work. I understand that it is finding the string, showing the number of characters before the string and the length of the string, correct? What would be next to append the a href and the target-_blank and /a? Ok test this taf out

Re: Witango-Talk: Auto a href

2005-02-18 Thread Roland Dumas
Title: Re: Witango-Talk: Auto a href Can someone post this on a public windows box? On 2/18/05 10:24 AM, Ben Johansen [EMAIL PROTECTED] wrote: Ok test this taf out TO UNSUBSCRIBE: Go to

RE: Witango-Talk: Auto a href

2005-02-18 Thread Ben Johansen
Title: Re: Witango-Talk: Auto a href Ok http://www.pcforge.com/regex_href.taf Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement From: Roland Dumas [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005

RE: Witango-Talk: Auto a href

2005-02-18 Thread Ben Johansen
Title: RE: Witango-Talk: Auto a href Sounds like a good step to take ;-) Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Web App. Developement From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 11:09

Re: Witango-Talk: Auto a href

2005-02-18 Thread Roland Dumas
Title: Re: Witango-Talk: Auto a href Youd use the @replace, using the captured string like this If your whole string is @@request$string If you put the @regex into a variable, it would be an array, say its called @@request$my_stuff @ASSIGN request$my_stuff value='@REGEX EXPR=[ ]https?://[^

RE: Witango-Talk: REGEX on Mac: DOA

2005-02-18 Thread Ben Johansen
Ya know, I've been thinking about this, may it is not a Witango problem, May it is the people who implemented the POSIX standard on Mac had a issues with rankings and lists and said it wasn't fair for the trailing characters. So they decided that if all are ranked the same there would be no bias

Re: Witango-Talk: REGEX on Mac: DOA

2005-02-18 Thread Roland Dumas
PBBBTHTH! On 2/18/05 12:06 PM, Ben Johansen [EMAIL PROTECTED] wrote: Ya know, I've been thinking about this, may it is not a Witango problem, May it is the people who implemented the POSIX standard on Mac had a issues with rankings and lists and said it wasn't fair for the trailing

Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
Witango 5.065 MacOS Server 10.2.8 Moderate usage, 80-90% CPU usage. What would cause that? - Roland Dumas Roberts Information Services 310 W. Bellevue Avenue San Mateo CA 94402 650-347-1373 415-412-9300 (cell) [EMAIL PROTECTED] SMS:

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Bill Conlon
infinite loop. try top Is that witangod at 80%? On Friday, February 18, 2005, at 12:15 PM, Roland Dumas wrote: Witango 5.065 MacOS Server 10.2.8 Moderate usage, 80-90% CPU usage. What would cause that? - Roland Dumas Roberts Information Services 310 W.

RE: Witango-Talk: CPU consumption

2005-02-18 Thread steve
Hello I usually lurk around here but I wanted to ask, are you using the Mac WebServer or are you using another webserver to run with your WiTango Server??? Thanks Steve -Original Message- From: Roland Dumas [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 2:15 PM To:

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
Yup Hadn't thought about an infinite loop. Wouldn't it time out? On 2/18/05 1:01 PM, Bill Conlon [EMAIL PROTECTED] wrote: infinite loop. try top Is that witangod at 80%? On Friday, February 18, 2005, at 12:15 PM, Roland Dumas wrote: Witango 5.065 MacOS Server 10.2.8 Moderate

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
Webstar on same machine On 2/18/05 1:18 PM, steve [EMAIL PROTECTED] wrote: Hello I usually lurk around here but I wanted to ask, are you using the Mac WebServer or are you using another webserver to run with your WiTango Server??? Thanks Steve -Original Message- From:

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Bill Conlon
eventually, how long does witangod stay 90% cpu? What does your log file say is the last file executed. I've messed up my counters, and had FOR loops run til I kill the daemon. On Friday, February 18, 2005, at 01:18 PM, Roland Dumas wrote: Yup Hadn't thought about an infinite loop. Wouldn't

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
Wish I could find the 'last file', but it runs and runs with CPU ranging from 0-3%, an occasional 10% and back to 0. Then I notice it's at 40-90-90-80-90 and never comes down. Will have to have someone watch it closely to see the exact time it climbs. On 2/18/05 1:28 PM, Bill Conlon [EMAIL

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Bill Conlon
how about a deadlock? Maybe mutliple threads competing for the same resource? On Friday, February 18, 2005, at 01:36 PM, Roland Dumas wrote: Wish I could find the 'last file', but it runs and runs with CPU ranging from 0-3%, an occasional 10% and back to 0. Then I notice it's at

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
Wow, never heard of that. What kind of resource could be fought over? (really not very likely, given the moderate traffic. At most 10 user scopes alive at any one time) On 2/18/05 1:40 PM, Bill Conlon [EMAIL PROTECTED] wrote: how about a deadlock? Maybe mutliple threads competing for the

Witango-Talk: Turning cache on

2005-02-18 Thread Roland Dumas
Seems to be my day for witango quirks I have cache and include caches at true Then I look at number of cached docs and includes and it stays at 0, which means cache isn't on. (yes, I've restarted witango) Any sneaky ways to persuade cache to work? -

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Bill Conlon
http://java.sun.com/docs/books/tutorial/essential/threads/deadlock.html Starvation and Deadlock If you write a program in which several concurrent threads are competing for resources, you must take precautions to ensure fairness. A system is fair when each thread gets enough access to

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Customer Support
Load up the Apple Development tools. In it you will find an application called Thread Viewer. Open it from the command line with a sudo command. Once it is open attach it to the witangod process and see what the threads are doing. You can also install the latest CHUD if you are an Apple

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Roland Dumas
On 2/18/05 4:28 PM, Customer Support [EMAIL PROTECTED] wrote: Load up the Apple Development tools. In it you will find an application called Thread Viewer. Open it from the command line with a sudo command. Once it is open attach it to the witangod process and see what the threads are

Re: Witango-Talk: CPU consumption

2005-02-18 Thread Customer Support
Use your db admin tool to see what connections are active on the db. If one is active shut it down. if this does not fix it try stopping your db and see if the thread goes into a wait state. Also download and install the latest iodbc driver manager. Witango Support On 19/02/2005, at 1:33