Re: java.lang.NullPointerException ERROR accessing CFC

2004-10-18 Thread dave
try -- Original Message -- From: Lugene Johnson <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Tue, 19 Oct 2004 00:41:00 -0400 >Line of code: > > > >ERROR: > >java.lang.NullPointerException > at > coldfusion.runtime.TemplateClassLoader.

Re: CFC Scoping Error

2004-10-18 Thread Douglas Knudsen
try use dot notation for the component where dirname is at the root of a CF path. Doug On Tue, 19 Oct 2004 00:26:19 -0400, Lugene Johnson <[EMAIL PROTECTED]> wrote: > I'm developing an application using CFMX developers edition...my application was > working fine...and boom the following er

java.lang.NullPointerException ERROR accessing CFC

2004-10-18 Thread Lugene Johnson
Line of code: ERROR: java.lang.NullPointerException at coldfusion.runtime.TemplateClassLoader.newInstance(TemplateClassLoader.java:327) at coldfusion.runtime.TemplateProxyFactory.resolveName(TemplateProxyFactory.java:98) at coldfusion.runtime.TemplateProxyFactory.reso

RE: custom tag help

2004-10-18 Thread James Holmes
The variables scope should work within the custom tag: #VARIABLES[ATTRIBUTES.QUERYNAME][attributes.fieldname][currentrow]# Note that I dropped the query name from currentrow as it's now a dynamic name and you can rely on CF to figure out what currentrow means inside a cfoutput tag. -Origin

CFC Scoping Error

2004-10-18 Thread Lugene Johnson
I'm developing an application using CFMX developers edition...my application was working fine...and boom the following error crept up. I have download and installed the CFMX 6.1 Updater, but this does not solve the problem any ideas? LINE OF CODE: ERROR MESSAGE: java.lang.NullPointerExceptio

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Joseph Flanigan
> I am curious do you make a SP for each query need. Meaning for example do you have a separate SP for inserts that go into table A, B, or C. Or do you have one single SP that handles all three based upon what is fed into it? The simple answer is, yes every insert is its own procedure. Yes. e

RE: custom tag help

2004-10-18 Thread Phillip Perry
Thanks James. That does work if you assume that display is the query name, but what if the query name is stored in an attributes.queryname value? I've played around with what you gave me but I can't seem to get it to work. any thoughts? -Original Message- From: James Holmes [mailto:[EMAIL

RE: custom tag help

2004-10-18 Thread James Holmes
Assuming the attribute is ATTRIBUTES.FIELDNAME, #display[attributes.fieldname][display.currentrow]# will do the job. -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Tuesday, 19 October 2004 10:12 To: CF-Talk Subject: custom tag help Hi, I'm messing with custom

custom tag help

2004-10-18 Thread Phillip Perry
Hi, I'm messing with custom tags and am doing pretty basic stuff (i think) to get used to using them. the tag does the following query SELECT * FROM table_name I've determined this works, but obviously this isn't very useful as is. I added an attribute that gets the field name and displays

Re: UNIX Image Resizer Tag

2004-10-18 Thread Joe Rinehart
Doug Hughes (the link for that CFC references his site) publishes the Alagad Image Component, it should work well for you. http://www.alagad.com -joe On Mon, 18 Oct 2004 15:45:07 +0200, Massimo Foti <[EMAIL PROTECTED]> wrote: > > We're looking for an image resize tag to be used in a Unix/CFMX

RE: email, pause while looping through list

2004-10-18 Thread mayo
Anders, Thanks. It makes a lot of sense. I didn't like the track I was taking. Gil -Original Message- From: Anders Green [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 7:35 AM To: CF-Talk Subject: Re: email, pause while looping through list At 10:29 PM 10/17/2004,

Re: Need help with Reporting area

2004-10-18 Thread Douglas Knudsen
you can use the DB to generate dynamically either via the data dictionary if on Oracle or its equivalent in SQL Server. Heck, just use cfquery to select one row from the table and then you can use queryname.colmumnlist even. Depends on how fancy you want all this. Doug On Mon, 18 Oct 2004 16:4

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Joseph Flanigan
> Why it is better in your opinion to use stored procedures for insert/update/deletes? The quick answer is that stored procedures are pre-complied execution plans. To run in the database engine, every SQL statement is compiled into something the database people call execution plans. These plan

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Joseph Flanigan
> Why it is better in your opinion to use stored procedures for insert/update/deletes? The quick answer is that stored procedures are pre-complied execution plans. To run in the database engine, every SQL statement is compiled into something the database people call execution plans. These pla

Re: Need help with Reporting area

2004-10-18 Thread Greg Morphis
You could build an admin page where it allows the admin to select which columns to place in there... after you run a query.. use #queryName.columnlist# to get the columns On Mon, 18 Oct 2004 16:34:34 -0500, Donna French <[EMAIL PROTECTED]> wrote: > I have the basic idea of what I want to accomplis

Need help with Reporting area

2004-10-18 Thread Donna French
I have the basic idea of what I want to accomplish but I'm trying to figure out if there is an easier way to go about it (as usual). Here's the basics of the app - CFMX and Access Clients (tablename) ClientID Client_FName Client_LName Client_Address the table has var

Re: multiple selections in dependant drop downs

2004-10-18 Thread Aaron Rouse
You could do it with qForms.  They have an example of n-selects online, sounds like you would just not want to clear out the second box when a new item is picked in the first one. On Mon, 18 Oct 2004 15:35:34 -0400, Wurst, Keith D. <[EMAIL PROTECTED]> wrote: > hi everyone. i was wondering if anyon

RE: multiple selections in dependant drop downs

2004-10-18 Thread Ewok
TwoSelectsRelated by Nate Weiss comes to mind. Of course you would have to mod it a bit to display records corresponding to a list of ID’s rather than a single ID    _   From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 3:36 PM To: CF-Talk Subject: multiple selec

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Joseph Flanigan
The technique of assigning a SQL  query to variable and then resolving the variable in the cfquery is called the folded string technique. Since cfqueryparam is a sub-tag of cfquery it cannot be used in a folded string outside the cfquery. The function of cfqueryparam is to do data type binding

Re: Caching CFC/web services?

2004-10-18 Thread Douglas Knudsen
yeah, there was a big thread on here a few months back about that. run a search at HOF, its a good thread to read up. Doug On Mon, 18 Oct 2004 13:12:35 -0700, Barney Boisvert <[EMAIL PROTECTED]> wrote: > isDefined tries to determine if the passed string is a valid variable >  reference.  structK

Re: Caching CFC/web services?

2004-10-18 Thread Barney Boisvert
isDefined tries to determine if the passed string is a valid variable reference.  structKeyExists looks for the named key in the named struct/scope.  IsDefined, as you might imagine, performs significantly more work to get it's job done. structKeyExists(application, "myThing") first finds the 'app

Re: Consume a web service with JavaScript...possible?

2004-10-18 Thread Massimo, Tiziana e Federica
> I have an idea for an extension for FireFox,  One key element is going > to be the ability to comsume a web service, or parse an XML file. > > Can I consume a web service using _javascript_? Yes. If you are using Mozilla, this may be a good starting point: http://www.mozilla.org/projects/webser

Re: Caching CFC/web services?

2004-10-18 Thread Johnny Le
Hi Barney, That is exactly what I was looking for.  I should have thought of that. Your code brings up another question. Is there any difference between structKeyExists and IsDefined? Why should someone use structKeyExists instead of IsDefined since IsDefined is simplier to remember? Johnny >Yo

Re: OT: Consume a web service with JavaScript...possible?

2004-10-18 Thread Barney Boisvert
Check out Neuromancer, from Rob Rohan.  A google will turn it up. Pretty slick, and it does exactly that, along with allowing you to do simple HTTP requests as well. cheers, banreyb On Mon, 18 Oct 2004 15:54:44 -0400, Scott Stroz <[EMAIL PROTECTED]> wrote: > I have an idea for an extension for F

OT: Consume a web service with JavaScript...possible?

2004-10-18 Thread Scott Stroz
I have an idea for an extension for FireFox,  One key element is going to be the ability to comsume a web service, or parse an XML file. Can I consume a web service using _javascript_? Any ideas on good references on parsing XML in _javascript_?  Most of the stuff I have found is IE-centric. Tha

[sot] moving to JSP

2004-10-18 Thread Douglas Knudsen
maybe a cf-community thingbut wanting to move to JSP stuffs, anyone out there move to JSP stuffs from the CF world?   Is there really such a thing as RAD in the Java/JSP world?  I'm used to being on like 6 to 10 projects in a given year, can this happen in the JSP world?  Anyone out htere b

multiple selections in dependant drop downs

2004-10-18 Thread Wurst, Keith D.
hi everyone. i was wondering if anyone has ever come across a script that will allow a user to select more then one value in a multiple drop down box - and then have those selections impact the content of a related drop down box. - so, for example, if a user selects TN and PA in the first drop down

Re: OT: Switching domains with IIS

2004-10-18 Thread Dirk De Bock - Listclient
Redirect Variables You can use redirect variables to pass portions of the original URL with the destination URL. To use these variables, open a directory's properties in IIS Manager, select the Home Directory, Virtual Directory, or Directory tab, click the A redirection to a URL option, and enter a

Re: Image Resize Tag on Unix

2004-10-18 Thread Rick Root
Doug James wrote: > We use cfexecute and 'mogrify' to create thumbnails. You might take a look. I bet if cfobject is disabled, so then will cfexecute =) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT: Switching domains with IIS

2004-10-18 Thread Rick Root
Stephen Moretti (cfmaster) wrote: > Rick Root wrote: > >  > Hi folks.. We are going to be changing our fully qualified domain name >  > from www.ads.duke.edu to www.it.dev.duke.edu ... Right now, you can use >  > both domains but the url doesn't change... I'd like for *ALL* requests >  > to "www.a

Re: Switching domains with IIS

2004-10-18 Thread Rick Root
Mark A Kruger wrote: > Is there a question here?  You can point them to the same IP and set up IIS > to watch that IP - sharing the same root for both urls.  Or you can use > virtuals and watch the host headers. Yes, I could do that.. however, I don't want to do that, because www.ads.duke.edu an

Re: Enable long text retrieval on MySQL datasource

2004-10-18 Thread Matt Robertson
You do if you want text returned that is longer than the default of 64k.  A text-type field would not require this, but if you are using mediumtext or longtext types then definitely yes. I generally leave this off unless I am using a particular log file format where I might be dumping 200k-pluis o

Enable long text retrieval on MySQL datasource

2004-10-18 Thread Nando
Hi, If i'm using the longtext datatype in MySQL, do i need to enable long text retrieval in the datasource for that DB? "-- Enable long text retrieval (CLOB)" :) nando [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: page creation times

2004-10-18 Thread Cornillon, Matthieu (Consultant)
> The theory in that is a very very good answer... finally a pretty > balanced point... altho you may want to cache that 43 second query > somehow so that it isn't that long the next time round :) Indeed.  I was mainly using such a big number for contrast.  In general, a 43-second process had darn

RE: Functional roles on web application team

2004-10-18 Thread Earl, George
Ketan said: > Are you looking for this article? >   > http://www.macromedia.com/resources/techniques/ Lawrence said: > I think you mean this one. scroll down halfway > > http://www.macromedia.com/resources/techniques/define/plan.html Thanks, guys, but these links point to the same pages I refere

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dan O'Keefe
Thanks, I will check that out - Mine is the Heinekin pattern, so if it resembles someone else's, just coincidence. Dan On Mon, 18 Oct 2004 17:08:39 +0100, Greg Stewart <[EMAIL PROTECTED]> wrote: > Sounds to me like you are looking at the DAO pattern > (http://java.sun.com/blueprints/corej2eepatte

Re: Connection Reset By Peer

2004-10-18 Thread Rich Tretola
Any idea how to increase the coldfusion reserved buffer space? Rich On Mon, 18 Oct 2004 11:10:17 -0500, Rich Tretola <[EMAIL PROTECTED]> wrote: > Could it be spiders and bots that are causing the massive amount of > these records in the logs?  I find it hard to believe that there are > that many

Re: Connection Reset By Peer

2004-10-18 Thread Rich Tretola
Could it be spiders and bots that are causing the massive amount of these records in the logs?  I find it hard to believe that there are that many impatient users. Rich On Mon, 18 Oct 2004 08:55:14 -0700, Lawrence Ng <[EMAIL PROTECTED]> wrote: > further to my feedback, here's MM's take on it. >  

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Greg Stewart
Sounds to me like you are looking at the DAO pattern (http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html). Without starting an OO/mach-ii debate or anything like that, you may want to have a quick look at the Phil Cruz's mach-ii.info site to see how he implemented the DA

Re: Connection Reset By Peer

2004-10-18 Thread Lawrence Ng
further to my feedback, here's MM's take on it. http://www.macromedia.com/support/coldfusion/ts/documents/connection_reset.htm [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Connection Reset By Peer

2004-10-18 Thread Rich Tretola
Could it be bad cf code (slow page load) or more likely a network/firewall issue? Rich On Mon, 18 Oct 2004 15:38:17 +0100, Andy Allan <[EMAIL PROTECTED]> wrote: > Yup, though the reason why they are occuring excessively may need >  investigating, e.g. a sign of a bottleneck somewhere. >   >  Andy

Re: Connection Reset By Peer

2004-10-18 Thread Rich Tretola
I am glad it is benign  but it fills the log file with almost a gig a week.  Is there anyway to stop it? Rich On Mon, 18 Oct 2004 15:26:26 +0100, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]> wrote: > The log entry is benign and can be safely ignored. It is when a user clicks >  cancel on their b

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dan O'Keefe
Thanks, that is what it is starting to look like, but defats the intended purpose which was being able to use this component from any database comonent and generate the syntax. Dan >  If you are building up the query using cf logic (and not pulling the bits > of the query from a db or elsewhere)

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dan O'Keefe
Thanks Dina, Thats what I meant (&). I tried htmlEditFormat and still get an error on the &. Dan On Mon, 18 Oct 2004 07:58:49 -0700, Dina Hess <[EMAIL PROTECTED]> wrote: > try htmleditformat(); and it's ">" not "@gt;" >    - Original Message - >    From: Dan O'Keefe >    To: CF-Talk >  

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dan O'Keefe
A blackbox component that I can pass in an array, with field name, value, and CFSQL type, and have the component return a complete insert or update statement to be executed. I am strating to think it cannot be done, and I see Pascal agree's Thanks, Dan On Mon, 18 Oct 2004 15:49:07 +0100, Thomas

RE: page creation times

2004-10-18 Thread d.a.collie
>>  1) I am browsing around a site to try to find something.  I don't know where  >> it is, exactly, so I have to try a bunch of different options.  If all of  >> the options along the way are a bit slow (let's say 2-5 seconds each), my  >> brain starts to smoke and I go elsewhere if possible.  >>

RE: Execute Query string w CFQUERYPARAM

2004-10-18 Thread d.a.collie
I don't think you can build up a string with cfqueryparam and execute it inside a cfquery tag (check the archives for a definitive answer) you would need to build some sort of udf's (custom tag pre-cfmx) that would carry out this sort of thing AFAIK   (I think Issac's onTap does something lik

Re: Connection Reset By Peer

2004-10-18 Thread Lawrence Ng
check your firewall /cache settings and increase the number of session requests if possible. We had similar issues but it's more a firewall/security settings rather than CF. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: page creation times

2004-10-18 Thread Micha Schopman
10 seconds for general browsing is to much, extensive research has shown that. A maximum has been established as 7 seconds before people move away. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rab

RE: Post-6.1MX Updater - CFINSERT = String index out of range

2004-10-18 Thread Dave Watts
> I thought MS - JDBC Driver was not compatbile with MS SQL 7.0, atleast > when i looked at it a while go. MS's own JDBC driver isn't, but the DataDirect driver that comes with CFMX is, I think. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [

RE: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Gaulin, Mark
I'm guessing that this is not possible unless you are willing to write the string to a file and cfinclude it.  The "<" problem sounds like a coding issue, and maybe separating the "<" from the "cf" would help with with the parsing, but I couldn't say for sure without looking at your code. Withou

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dina Hess
try htmleditformat(); and it's ">" not "@gt;"   - Original Message -   From: Dan O'Keefe   To: CF-Talk   Sent: Monday, October 18, 2004 7:33 AM   Subject: Execute Query string w CFQUERYPARAM   I have a variable that contains the following:   Insert into tblProducts (product,c_productDesc

RE: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Pascal Peters
You can't build a string to execute within cfquery and use cfqueryparam at the same time. Build your sql in the cfquery tag itself. Pascal > -Original Message- > From: Dan O'Keefe [mailto:[EMAIL PROTECTED] > Sent: 18 October 2004 16:34 > To: CF-Talk > Subject: Execute Query string w CFQUE

Re: Post-6.1MX Updater - CFINSERT = String index out of range

2004-10-18 Thread Joe Eugene
> I'm using the JDBC SQL drivers (MS SQL 7.0). I thought MS - JDBC Driver was not compatbile with MS SQL 7.0, atleast when i looked at it a while go. Joe Eugene - Original Message - From: "Sung Woo" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 10:

Re: Execute Query string w CFQUERYPARAM

2004-10-18 Thread Thomas Chiverton
On Monday 18 Oct 2004 15:33 pm, Dan O'Keefe wrote: > I want to execute this string inside a cfquery tag. 1st problem is, > when I am building the string and looping over an array, if I try to > use < and > in the string, my string ends up being empty. If I replace > that with @lt; and @gt;, the str

cfusion instance crashed

2004-10-18 Thread Douglas Knudsen
Just had a cfusion instance under JRUn freak out.  This was in the logs.    removeOnExceptions is true for uportal, closed the physical Connection # # HotSpot Virtual Machine Error, Internal Error # Please report this error at # http://java.sun.com/cgi-bin/bugreport.cgi # # Java VM: Java HotSpot(T

Re: page creation times

2004-10-18 Thread Thomas Chiverton
On Monday 18 Oct 2004 15:14 pm, Joe Eugene wrote: > > have a feel for what ranges are acceptable? > > Depends on the complexity of your applications. > I would think execution times between 300 - 500 ms are acceptable. I'd say anything up to ten seconds is alright. It rather depends where and what

Re: Laszlo decision to open source pays a dividend

2004-10-18 Thread Thomas Chiverton
On Monday 18 Oct 2004 15:03 pm, E C list wrote: > instance, can get very tedious when you have to specify X,Y coordinates for > the placement of each field. That's why they have the concept of layout's, so you don't have to, isn't it ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(

Re: Connection Reset By Peer

2004-10-18 Thread Andy Allan
Yup, though the reason why they are occuring excessively may need investigating, e.g. a sign of a bottleneck somewhere. Andy On Mon, 18 Oct 2004 15:26:26 +0100, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]> wrote: > The log entry is benign and can be safely ignored. It is when a user clicks > can

Execute Query string w CFQUERYPARAM

2004-10-18 Thread Dan O'Keefe
I have a variable that contains the following: Insert into tblProducts (product,c_productDesc,active) Values , , I want to execute this string inside a cfquery tag. 1st problem is, when I am building the string and looping over an array, if I try to use < and > in the string, my string ends up

Re: HTTP_REFERER

2004-10-18 Thread Kay Smoljak
On Sun, 17 Oct 2004 18:11:05 -0400, Phillip Perry <[EMAIL PROTECTED]> wrote: > Doing this with the HTTP_REFERER variable gives me > an error stating that http://www.blah.com/blah/blah.cfm is syntactically > incorrect. Don't forget, that sometimes personal firewall software (like Norton Internet Se

Post-6.1MX Updater - CFINSERT = String index out of range

2004-10-18 Thread Sung Woo
I just went through a little hell backing out of the CFMX 6.1 Updater (the one released on August 2004).  After doing this update, many (if not all) CFINSERT operations resulted in this error: "String index out of range: -2" I'm using the JDBC SQL drivers (MS SQL 7.0). BTW, I explicitly followed

RE: Connection Reset By Peer

2004-10-18 Thread Robertson-Ravo, Neil (RX)
The log entry is benign and can be safely ignored. It is when a user clicks cancel on their browser during page load. I have no idea why it is logged and or why it cannot be disabled from being logged. N    _   From: Joe Eugene [mailto:[EMAIL PROTECTED] Sent: 18 October 2004 15:20 To: CF-T

RE: page creation times

2004-10-18 Thread Cornillon, Matthieu (Consultant)
Anders, DISCLAIMER: All of the rambling you are about to read is based on my own experience designing user interfaces, and none of it is based on industry standards.  In other words, get your grains of salt ready. I think that it depends what page is loading, and how it all fits into the user

Re: Need a Mail Server Solution Pronto!

2004-10-18 Thread Adrocknaphobia
Just to add a little insight to the thiread. I usually push all my email through the SMTP of IIS because CF doesnt deal very well when it can reach its SMTP server. It basically tries to send an email once, if it can't connect to the SMTP server it fails and marks the mail as undelivered. By sendi

RE: page creation times

2004-10-18 Thread Micha Schopman
300ms - 500ms ? For me in general that is extremely slow. Unless you are doing big datasets, and complex business logic I expect execution times under 50ms. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081

Re: Image Resize Tag on Unix

2004-10-18 Thread guy . mcdowell
The kicker is finding one that doesn't use CreateObject or cf_object or such (due to security implications). Truly, Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is confidential, may be

Re: Connection Reset By Peer

2004-10-18 Thread Joe Eugene
"Connection Reset By Peer" is the most common error/? we have seen in JRun Log files. I tried the forums a while ago, didnt get any response. I think i read somewhere this might be caused by the user closing/cancelling the request. Joe Eugene - Original Message - From: "Rich Tretola" <[

Re: Image Resize Tag on Unix

2004-10-18 Thread Doug James
We use cfexecute and 'mogrify' to create thumbnails. You might take a look. Doug James Webmaster MUSC - Hollings Cancer Center 843.792.6357 http://hcc.musc.edu Guy McDowell wrote: >Hi, > >We're looking forn image resize tag to use in a Unix/CFMX environment. Any leads? We're Googling to no avail

Re: page creation times

2004-10-18 Thread Joe Eugene
But does anyone > have a feel for what ranges are acceptable? Depends on the complexity of your applications. I would think execution times between 300 - 500 ms are acceptable. Joe Eugene - Original Message - From: "Anders Green" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sen

Re: Image Resize Tag on Unix

2004-10-18 Thread Scott Stroz
Check out the Algad Image Component...http://www.alagad.com On Mon, 18 Oct 2004 09:57:42 -0400, Guy McDowell <[EMAIL PROTECTED]> wrote: > Hi, >   >  We're looking forn image resize tag to use in a Unix/CFMX environment. Any > leads? We're Googling to no avail. >   >  Truly, >   >  Guy McDowell >  

Re: application.cfm and headers

2004-10-18 Thread s . isaac dealey
LOL... I don't know about the killing part. :) Once you understand the basic's it's really not very "complex". It does appear that way if you just open a template and look at the code without knowing what it does or why. It's similar to creating the whole view with DOM, although it's all done on t

Re: Connection Reset By Peer

2004-10-18 Thread Rich Tretola
Has anyone else had this problem? Rich On Sun, 17 Oct 2004 21:59:46 -0400, Rich Tretola <[EMAIL PROTECTED]> wrote: > > > I have thousands of entries like the following in my default-err.log file, > the only difference in the type of error in the top line where I wrote > "type" >   >  10/17 18:1

RE: Laszlo decision to open source pays a dividend

2004-10-18 Thread E C list
I've been looking at Laszlo for a couple of weeks now, and, especially with the price tag, it is very attractive.   If they did support greater than Flash 5, they would probably also need to update their code to take advantage of the additional features.  I guess now that its open source, someone e

Image Resize Tag on Unix

2004-10-18 Thread Guy McDowell
Hi, We're looking forn image resize tag to use in a Unix/CFMX environment. Any leads? We're Googling to no avail. Truly, Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is confidential, m

Re: UNIX Image Resizer Tag

2004-10-18 Thread Allan Cliff - CFUG Spain
We use imagemagick - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 3:43 PM Subject: UNIX Image Resizer Tag > We're looking for an image resize tag to be used in a Unix/CFMX > environment. Anybody know of one? > > Googling is

Re: Caching CFC/web services?

2004-10-18 Thread Douglas Knudsen
>  (and then insert it into the database). If the request to the service >  times out or throws an error, I use the last value from the database. timesout?  How do you hanlde this?  Are you using CFINVOKE or CFHTTP here? Doug On Mon, 18 Oct 2004 21:35:54 +0800, Kay Smoljak <[EMAIL PROTECTED]> wr

Re: UNIX Image Resizer Tag

2004-10-18 Thread Massimo Foti
> We're looking for an image resize tag to be used in a Unix/CFMX > environment. Anybody know of one? > If you run CF MX you can try this CFC: http://www.olimpo.ch/tmt/cfc/tmt_img Check the "Configuring Headless Systems" notes before Massimo Foti DW tools: http://w

UNIX Image Resizer Tag

2004-10-18 Thread guy . mcdowell
We're looking for an image resize tag to be used in a Unix/CFMX environment. Anybody know of one? Googling isn't paying off. Truly, Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is con

Re: Caching CFC/web services?

2004-10-18 Thread Kay Smoljak
On Sun, 17 Oct 2004 23:42:56 -0400, Johnny Le <[EMAIL PROTECTED]> wrote: > Is it possible to cache the result of a web service?  I created a web > service to use in my flash application, but it takes a long time to return > the result.  Since the result is not going to change often, I wonder if I >

Re: Laszlo decision to open source pays a dividend

2004-10-18 Thread Thomas Chiverton
On Saturday 16 Oct 2004 04:17 am, dave wrote: > there that were made just to take a swf and reduce its size but the last Is the Laszlo Krank not as good as them then ? I'm typicaly getting ~150K with external resources, which seems OK to me. -- Tom Chiverton Advanced ColdFusion Programmer Tel:

page creation times

2004-10-18 Thread Anders Green
This morning I put a GetTickCount() in my header and footer to see how long my pages were taking to make/generate. Now, naturally these times could be all over the place depending on your hardware, network connection, caching, etcetera. But does anyone have a feel for what ranges are acceptable? W

RE: Switching domains with IIS

2004-10-18 Thread Mark A Kruger
Rick, Is there a question here?  You can point them to the same IP and set up IIS to watch that IP - sharing the same root for both urls.  Or you can use virtuals and watch the host headers. -Mark   -Original Message-   From: Rick Root [mailto:[EMAIL PROTECTED]   Sent: Monday, October 18,

Re: OT: Switching domains with IIS

2004-10-18 Thread Stephen Moretti (cfmaster)
Rick Root wrote: > Hi folks.. We are going to be changing our fully qualified domain name > from www.ads.duke.edu to www.it.dev.duke.edu ... Right now, you can use > both domains but the url doesn't change... I'd like for *ALL* requests > to "www.ads.duke.edu" to be re-written to "www.it.dev.duke.

Re: Caching CFC/web services?

2004-10-18 Thread Douglas Knudsen
maybe its better to cache on the client end, not in the CFC?  Let the client decide when to cahce or refresh.  I'm not familiar with Flash arch, but doesn't Flash have some sort of cache mechanism in a swf? Also, Johnny, do you want this cached across clients or for each client? Doug On Sun, 17

Re: application.cfm and headers

2004-10-18 Thread S . Isaac Dealey
> I thought anything to do with presentation or look and > feel was supposed to be a no no in an application.cfm > file. > As a rule of thumb that's my opinion. s. isaac dealey 954.927.5117 new epoch : isn't it time for a change? add features without fixtures with the onTap open source fra

Re: application.cfm and headers

2004-10-18 Thread S . Isaac Dealey
LOL... I don't know about the killing part. :) Once you understand the basic's it's really not very "complex". It does appear that way if you just open a template and look at the code without knowing what it does or why. It's similar to creating the whole view with DOM, although it's all done on t

OT: Switching domains with IIS

2004-10-18 Thread Rick Root
Hi folks.. We are going to be changing our fully qualified domain name from www.ads.duke.edu to www.it.dev.duke.edu ... Right now, you can use both domains but the url doesn't change... I'd like for *ALL* requests to "www.ads.duke.edu" to be re-written to "www.it.dev.duke.edu" so that we are co

Re: email, pause while looping through list

2004-10-18 Thread Anders Green
At 10:29 PM 10/17/2004, mayo wrote: >I can send 20 emails/3 minutes. 1) create a separate page that sends 6 emails, and marks them somehow as sent. 2) use cfschedule to run that page every minute, with a self-cancel when it find out that there are no more emails not marked as sent I wouldn't wan

Re: application.cfm and headers

2004-10-18 Thread Will Tomlinson
I thought anything to do with presentation or look and feel was supposed to be a no no in an application.cfm file. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]