Re: Witango-Talk: Eliminating the SQL error message on large fields

2005-01-31 Thread Peter Ternström
Great link, thanks! Peter - Original Message - From: "Bill Conlon" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 01, 2005 12:14 AM Subject: Re: Witango-Talk: Eliminating the SQL error message on large fields How about <@ASSIGN SCOPE="request" NAME="text" VALUE="<@SUBSRTING NAME='<@POS

Re: Witango-Talk: Eliminating the SQL error message on large fields

2005-01-31 Thread Peter Ternström
Hello Tom, why don't you convert the fields to "text" fields in SQL server? I think text fields might be better, even from a performance point of view. Text fields are not limited in size, and you can still perform searches on them (searches are costly, though). Peter - Original Message ---

Re: Witango-Talk: Any Help Appreciated - WiTango Stops Responding

2005-01-13 Thread Peter Ternström
Dave, - What load are you experiencing? Requests a day. - Do you have any FOR or WHILE loops in your code? - When the server stops responding, what does the "task manager" CPU meter say? How much processor power is the witango service using? - Check the events log. Any unusual events before the s

Re: Witango-Talk: Calender Component

2005-01-10 Thread Peter Ternström
Wayne, I have developed a calendar component for my community application. If you want I can send you the calendar rendering TCF, and you will probably have a good start. Peter - Original Message - From: "Wayne Irvine" <[EMAIL PROTECTED]> To: Sent: Saturday, January 08, 2005 4:17 PM Su

Witango-Talk: A Quoting Question

2005-01-02 Thread Peter Ternström
Happy new year everyone on the list!   Just making sure my quotes are correct. The string in @@user$gui_lang can be se, en, pl, de and so on. Which one of the expressions below do you think is most properly quoted?   <@IF EXPR="@@user$gui_lang = se">   <@IF EXPR="'@@user$gui_lang' = 'se'">  

Witango-Talk: windows 2003

2004-12-27 Thread Peter Ternström
Hello again all!   is anyone out there using windows 2003 server? If so, do you find it more or less stable than windows 2000 server? Which one would you recommend for a medium to high volume witango hosting environment?   Have you tested witango with Win 2003 Sp1 (released in december)?   T

Witango-Talk: ODBC setup

2004-12-25 Thread Peter Ternström
You guys with stable Win / Witango5.x / MS SQL servers out there - how do you setup the ODBC connection to your database? What version of the ODBC and SQL server drivers do you use? Do you use connection pooling in ODBC?   Peter     __

Witango-Talk: System Exception at 77f486f7

2004-12-25 Thread Peter Ternström
Hello all and merry christmas! as you might have noticed on this list im having quite some trouble with my witango production server. It hangs under load and Im under pressure to get it working properly. The error reported in the event viewer looks like this: The description for Event ID ( 10 )

Re: Witango-Talk: application vars timing out

2004-12-25 Thread Peter Ternström
No, the server does not let me set variabletimout on app vars. Dory, what setup are you using? Win?, IIS?, Witango5.x? ODBC? Database? Peter - Original Message - From: "Dory" <[EMAIL PROTECTED]> To: Sent: Friday, November 12, 2004 5:36 PM Subject: Re: Witango-Talk: application vars timing

Re: Witango-Talk: Purge question

2004-12-08 Thread Peter Ternström
Thanks for the advice.   Well, I dont need to purge all variables. Purging one or two will make the system think the user has logged out. And I will have to purge variabletimeouttrigger aswell.   From a system perspective, I'd much rather do a complete purge than just picking out the a vict

Witango-Talk: Purge question

2004-12-08 Thread Peter Ternström
Hello everyone,   Say that you have two method calls within a taf, separated by some other actions.   Is it possible, that the two method calls would actually be executed simultanously?   The first of my two method calls ends with purging the user scope   The second one assigns fresh vars to

Witango-Talk: Thread safety of FILTER tag

2004-12-03 Thread Peter Ternström
  Using the FILTER metatag to filter an array in a shared scope, would that be thread safe?   My code looks as follows:   <@ASSIGN NAME="request$online_list" VALUE="<@FILTER ARRAY='d2$online_list' EXPR='#1=@@user$server_auid AND #7 != 1'>">     Would the array d2$online_list be "busy" while

Witango-Talk: return value in method calls

2004-12-03 Thread Peter Ternström
Hi all, what are the differences between "return value - method variable" and "return value - Results HTML" in a method call? In this particular method call im using the method to set a bunch of request VARs. I dont need it to output any HTML, or method return varibales. Im using <@ASSIGN> meta

Witango-Talk: Everyone here with a stable witango 5+ / windows environment, please raise a hand

2004-12-02 Thread Peter Ternström
Hi all!   if you have witango5.x / windows environment with acceptable stability, please raise a hand!   Peter   TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Witango-Talk: Quoting of method call parameters

2004-12-01 Thread Peter Ternström
Hello everyone, sorry for this maybe stupid question; what is correct quoting in a method call? if the parameters are integer values, should they be quoted anyway? Thanks for all help Peter TO UNSUBSCRIBE: Go to http://www.w

Witango-Talk: Quoting of method call parameters

2004-12-01 Thread Peter Ternström
Hello everyone, sorry for this maybe stupid question; what is correct quoting in a method call? if the parameters are integer values, should they be quoted anyway? Thanks for all help Peter TO UNSUBSCRIBE: Go to http://www.w

Witango-Talk: EXCEPTION_ACCESS_VIOLATION

2004-11-25 Thread Peter Ternström
Hello All, has anyone out there solved an EXCEPTION_ACCESS_VIOLATION error? Im getting this error at least once per day on our production servers. Looking through this list i find several other developers with the same problem, but I dont see any "probable cause" or solution. In addition, I fi

Re: Witango-Talk: application vars timing out

2004-11-12 Thread Peter Ternström
Im almost through replacing all references from application to a custom scope. So far no problems, but it is still only on our development servers. Well see how it goes on the production server. Thanks again for all good input! Peter - Original Message - From: "Dory" <[EMAIL PROTECTED]>

Re: Witango-Talk: application vars timing out

2004-11-10 Thread Peter Ternström
allow application scope. Dan on 11/10/04 2:18, Peter Ternström at [EMAIL PROTECTED] wrote: > Hello all, > > we're having the exact same problem - application vars and objects > stored in > application scope time out and our application seizes to work properly. > This > i

Re: Witango-Talk: application vars timing out

2004-11-09 Thread Peter Ternström
Hello all, we're having the exact same problem - application vars and objects stored in application scope time out and our application seizes to work properly. This is a major issue for us, since we are hosting about 140 communities on the web and noone can log in. We have tried to solve this by

Witango-Talk: REPLACE

2004-10-28 Thread Peter Ternström
Hello everyone, in the documentation for Witango 5.5 it says that <@REPLACE> is case sensitive. However in tests, it seems that it is not case sensitive and thinks a and A is the same character. Is this a known bug? Peter

Witango-Talk: Unhandled exception BS!

2004-06-01 Thread Peter Ternström
Hey folks, this error is really pissing me off now! Keep getting it every 2 minutes of programming or so. It is not linked to any particular action and just shuts down the editor randomly. Tried re-installing the product, but it doesnt seem to help. Any ideas? Peter Date: Wed Jun 02 07:30:17 2

Re: Witango-Talk: Tango Memory Leaks

2004-03-24 Thread Peter Ternström
Robert, have you set default scope to user or local? I changed default scope to local/request and that reduced the amount of Mem Usage greatly. (From 250 k to about 60 k) Peter - Original Message - From: "Robert Garcia" <[EMAIL PROTECTED]> To: "Multiple recipients of list witango-talk"

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, A

Witango-Talk: HTTP upload solution

2004-01-18 Thread Peter Ternström
Hello all fellow witango/tango developers! ive been struggling with the notorious IIS crash problem when using HTTP upload for over a year now. When someone uploaded a file, my IIS processes (inetserv.exe + dllhost) would leap up a total of 100%, sending the server to almost a complete stop. Somet

Re: Witango-Talk: File upload COMponent / ASP

2003-09-03 Thread Peter Ternström
Title: Re: Witango-Talk: File upload COMponent / ASP Thanks Garth,   looking at the asp files in the download package, it seems that I have to call the asp upload page from a tango file using http   (   The most elegant (and secure) way would to be able to instantiate the object and make a m

Witango-Talk: File upload COMponent / ASP

2003-09-03 Thread Peter Ternström
Good morning everyone,   has anyone here used a third party ASP / COM object for file upload instead of tangos built-in one? What im looking for is a component that hooks into tangos COM integration, not forcing me to actually call asp pages.   Any ideas, anyone? Peter

Witango-Talk: File upload causes server seizure

2003-09-02 Thread Peter Ternström
d files, using an external dll action that doesnt seize up the server? Any ideas, anyone? Thanks for all help Peter Ternström, Sweden TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf

Witango-Talk: Convert string to iso-8859-1

2003-08-14 Thread Peter Ternström
Hello all helpful people on the most excellent witango-talk list! I need to convert a string to "iso-8859-1". Does anyone know of any simple way to do this, except doing an enormous <@REPLACE>? Grateful for all input Peter