RE: Image manipulation

2003-09-10 Thread Geoffrey V. Brown
Hi, Efflare has a great solution, though, it is pricey, as you state. It is rock solid, and we put ours under very heavy load. Geoff B > -Original Message- > From: Rick Faircloth [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 10, 2003 2:58 PM > To: CF-Talk > Subject: Image manipu

RE: Paging Principals

2003-09-10 Thread Geoffrey V. Brown
Hi, This wouldn't sound not too different than a stored procedure then. It is written in a pretty solid stored procedure at present. Geoff B > -Original Message- > From: Ben Doom [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 10, 2003 2:25 PM > To: CF-Talk > Subject: RE: Paging P

RE: Paging Principals

2003-09-10 Thread Geoffrey V. Brown
Programmer & General Lackey > Moonbow Software, Inc > > : -Original Message- > : From: Geoffrey V. Brown [mailto:[EMAIL PROTECTED] > : Sent: Wednesday, September 10, 2003 9:18 AM > : To: CF-Talk > : Subject: Paging Principals > : > : > : Hi, > : I have a

Paging Principals

2003-09-10 Thread Geoffrey V. Brown
Hi, I have an app that queries a table and displays a subset of the query results in a paged format, showing only 10 results per page. Some queries will return upwards of 1,000 rows. This query joins quite a few tables - say 8 or so, however the query itself only requires one table to obtain the

ODBC Error: Timeout Expired

2000-11-13 Thread Geoffrey V. Brown
Hi, We are running SQL Server 7.0. I'm getting "timeout expired" errors on one script, which runs a lenthy query. The CFQuery has a timeout attrib of , and the script has a requesttimeout value of . The error is still occurring. I'm thinking this must be a server config issue. Any id

Using CFX with VB

2000-10-26 Thread Geoffrey V. Brown
Hi, I have a vb app that needs to pull some data from a CFX app. The CFX (in short) parses a string and returns it in various formats. Is this possible in VB? I've got it referencing the DLL fine, however, it crashes my app when I try to pass values to the DLL. Can this be done? - Geoff B

Win2k Clustering and CF

2000-10-13 Thread Geoffrey V. Brown
Hi, I've got a small win2k cluster setup for some CF apps that I'm running. I now need a way to monitor the CF service from a third box on the same network. If CF begins queueing too many requests, or is not responsive, I need to remove the box from the cluster. Removing the box can be done ve

RE: Sharing sessions between CFM & ASP

2000-10-02 Thread Geoffrey V. Brown
y possible. You can however, send a variable between pages > (links, cfhttp, etc.) and convert the variable (form, url) into that > application server's session variables. It works just like passing > session variables between 2 ColdFusion servers. > > -- > Billy Cravens &g

RE: Javascript string search question...

2000-10-02 Thread Geoffrey V. Brown
Hi, You can use this: MyString.indexOf("substring") This will return -1 if not found, or a value if the substring is found. - Geoff B > -Original Message- > From: Kevin Langevin [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 02, 2000 2:17 PM > To: CF-Talk > Subject: Javascript str

Sharing sessions between CFM & ASP

2000-10-02 Thread Geoffrey V. Brown
Hi, I have a session var that needs to be shared between a CFM script and an ASP script on the same server (same domain, etc). Is this possible? How? - Geoff B -- Archives: http://www.mail-archive.com/cf-talk@houseof

RE: ASP or Coldfusion?

2000-09-23 Thread Geoffrey V. Brown
I'm willing to bet it was your code. > > -Rich > > > - Original Message - > From: "Geoffrey V. Brown" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Friday, September 22, 2000 10:45 AM > Subject: RE: ASP or C

RE: ASP or Coldfusion?

2000-09-22 Thread Geoffrey V. Brown
l pIII 1/2 Gig server should be able to deal with > 500-600 responses every 8 seconds and that clustering servers provides a > linear growth. > > > > -- > > From: Geoffrey V. Brown[SMTP:[EMAIL PROTECTED]] > > Sent: 22 September 2000 15:45 > > To:

RE: ASP or Coldfusion?

2000-09-22 Thread Geoffrey V. Brown
Hi, I'll offer my opinion, as I'm facing the same thing. I have a site that is going to be massive. Cold Fusion simply could not hold up to the load, and crashed repeatedly. The site is about 99% data driven, so there is a lot of data access going on. I am now developing this site in ASP, and

Application in ASP

2000-09-07 Thread Geoffrey V. Brown
Hi, Here I am again, defiling the list with another ASP question. Sorry, but it is somewhat CF related Does anyone know if ASP has an application.cfm equivalent? Thanks, Geoff B -- Archives: http://www.mail-archi

URGENT! - Help With OLEDB

2000-09-06 Thread Geoffrey V. Brown
Hi, With some playing around, I have found that OLEDB seems to be much more stable that ODBC. For awhile, we were recieving random disappearances of ODBC datasources, which required a reboot. Anyway, the problem I'm having is that the results from OLEDB aren't consistant with those in ODBC. Ex

CFX in ASP

2000-09-05 Thread Geoffrey V. Brown
Hey, I was wondering if anyone knew of anyway to pull data from a CFX using ASP? I'm thinking it could be done in a round-about way, as Cold Fusion is on the same box as the ASP server, but for the sake of stability we need to run some scripts in ASP. Ideas? Thanks, Geoffrey Vail Brown --

RE: Can't work out IIF/IsDefined quirk

2000-08-29 Thread Geoffrey V. Brown
[EMAIL PROTECTED] > Subject: RE: Can't work out IIF/IsDefined quirk > > > On 8/29/00, Geoffrey V. Brown penned: > >Hi, > >Use this: > > > >#IIF(isdefined("form.categories"), "form.categories", de(''))# > > Sorry. You can

RE: Can't work out IIF/IsDefined quirk

2000-08-29 Thread Geoffrey V. Brown
Hi, Use this: #IIF(isdefined("form.categories"), "form.categories", de(''))# Thanks, Geoffrey Vail Brown __ Director of Online Operations Deerfield.com 231.935.4640 [EMAIL PROTECTED] Check out our complete line of Internet leveraging software at: http://www.deerfiel

RE: Why Netscape's serious lag time?

2000-08-25 Thread Geoffrey V. Brown
Hi, Netscape is a little freaky about tables. You have to make sure that all of your width / height calculations are defined, and are accurate. On first glance, I found that you have a table with a width of 600 contained within a table with a width of 585. Netscape is probably trying to recalc

RE: Cold Fusion vs. Java Servers: Performance

2000-08-22 Thread Geoffrey V. Brown
Any feedback on JRun performance vs CF? > -Original Message- > From: Ed Toon [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 22, 2000 5:15 PM > To: [EMAIL PROTECTED] > Subject: RE: Cold Fusion vs. Java Servers: Performance > > > Cold Fusion doesn't stand up to them. At all. I've watch

RE: Cold Fusion vs. Java Servers: Performance

2000-08-22 Thread Geoffrey V. Brown
Hi, I would also be very, very interested in this information... > -Original Message- > From: Jonathan Fisher [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 22, 2000 1:08 PM > To: [EMAIL PROTECTED] > Subject: Cold Fusion vs. Java Servers: Performance > > > This is a multi-part messag

Let's Brag...

2000-08-21 Thread Geoffrey V. Brown
Hi, We're looking to upgrade some of our servers. I saw that one CF load balancing document recommended a certain Compaq server for use with CF. I was wondering, what kind of servers is everyone else running? Just for the sake of my own curiosity Thanks, Geoff B

RE: Good inexpensive NT Email Solution

2000-08-18 Thread Geoffrey V. Brown
Hi, I'd highly recommend MDaemon. Not that I'm biased or anything We do have a CF interface to MDaemon as well, if that is a solution you decide to go with. You can find the trial here: http://mdaemon.deerfield.com/ Thanks, Geoffrey Vail Brown __ Director of On

Including an ASP Script in CFM

2000-08-16 Thread Geoffrey V. Brown
Hi, I have an ASP script that must be included in a CFM document. CFinclude does not work for this purpose. Is there any way to do this? I found the following, however, all I get is a blank screen:

CF Performance

2000-08-10 Thread Geoffrey V. Brown
Hi, I know this comes up a lot... but, I'm looking to drastically improve the performance of one of our CF servers. We are in the process of fine tuning some of our code so that it follows some of Allaire's suggestions on performance tuning. One server I'm running has Cold Fusion at 43 megs mem

Verity vs. Freetext

2000-08-08 Thread Geoffrey V. Brown
Hi, I have a large scale application that will contain a lot of data, and will require that users do frequent text searches. I am running SQL Server 7. Which would be faster - a verity collection, or using SQL 7's Full-text indexing? We are probably talking about well over 20,000 individual re

Dynamic Queries in Valuelist

2000-08-07 Thread Geoffrey V. Brown
Hi, I need to setup a valuelist using a dynamic query. From what I can tell, this doesn't seem to be possible. What I need is a way to drop a list of a varying number of items from a varying number of queries, and cache all of the results. Performance is key. - Geoff B -

Java & WDDX

2000-08-03 Thread Geoffrey V. Brown
Hi, I'm looking for a way to pull some data from a script on my website using WDDX. The client application I am writing is in Java. I am able to do this easily in VB, however, VB is a little too bloated for my purposes. Is there an easy way to use WDDX in Java? I've heard that it can be done,

OT: Javascript / DHTML List

2000-07-31 Thread Geoffrey V. Brown
Hi, This is off topic... Can anyone recommend a good Javascript / DHTML list for advanced developers? Thanks, Geoff B -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://

Image Submits & Fusebox

2000-07-28 Thread Geoffrey V. Brown
Hi, I know this probably should go to the fusebox list, however, I've been having problems posting to it. Maybe one of you could give me a hand with the problem below... I have a project that requires that form submit buttons use images. This creates a problem when trying to make this app fuse

Mapping Extensions

2000-07-24 Thread Geoffrey V. Brown
Hi, Does anyone know the registry entry that needs to be added so that I can have .htm files executed as cold fusion templates? I found the way to do it on PWS, but I can't find the key in IIS. Geoffrey Brown Intelliforum : Beyond HTML http://www.intelli

Errors when using CFHTTP / WDDX on 4.5

2000-07-12 Thread Geoffrey V. Brown
Hi, Since I've upgraded to 4.5, using cfhttp with any xml or text templates is not working. We now get an error that states that the ascii file that we are attempting to display is invalid. To work with the data read from cfhttp, we need to dump the content to a file, then read it back in. Is

Performance

2000-06-20 Thread Geoffrey V. Brown
Hi, I'm looking for some advice on tuning SQL Server. We have a DB that's (let's say) 100 tables, heavily normalized, with over 250,000 records in at least 10 primary tables. For many screens within the application, we need to do two or three queries, and sometimes quite a few more, all of whic