Exception thrown and not caught - is back

2008-01-03 Thread Dustin M. Snell
Hello CF-Talk,

 

When I try to implement the following tutorial I get the dreaded error
Exception Thrown and Not Caught in IE. Quite a few people in the comments
seem to have the same problem - anyone happen to know what causes this for
this example?

 

http://www.forta.com/blog/index.cfm/2007/5/31/ColdFusion-Ajax-Tutorial-2-Rel
ated-Selects

 

-Dustin

 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295792
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: SQL Full-Text Searching

2007-12-20 Thread Dustin M. Snell
CF8 and MS SQL 2000

 

I would like to implement Google-esque searching on our Intranet against our
database. 

 

To do this I enabled Full-Text on the table I want to search (customers) and
use a query like this:

SELECT * FROM Customer where CONTAINS (*, '  search  ')

 

This works somewhat but one problem I am having is that:

 

John Doe will not locate a record where firstname=John and lastname=Doe.  It
does find [EMAIL PROTECTED] however.  Both behaviors I find odd. Does
anyone know either how to correct the inability to find that record or a
better way of doing this all together?

 

BTW, we will be upgrading to MS SQL 2008 in a few months, maybe that has
some built in capability that will make this easy?



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295186
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFGRID in CFWINDOW behind CFLAYOUT

2007-12-20 Thread Dustin M. Snell
I have this trouble with any flash object. The flash object always stays in
front of my CFWINDOW. Are you using a flash grid? 

-Original Message-
From: Chad Baloga [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 20, 2007 7:07 AM
To: CF-Talk
Subject: CFGRID in CFWINDOW behind CFLAYOUT

Has anyone had problems using cflayout/cfwindow/cfgrid together?  Everything
loads fine, but I have a cfgrid in a cfwindow off of a page using cflayout.
When you drag the window up into the browser, the cfgrid in the popup gets
hidden behind the cflayout.  It will work if you use html format for the
cfgrid but makes it clunky, especially when you are querying a table with
thousands of records in the cfgrid.
Any ideas??

Thanks,
Chad 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295189
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Since I didn't get any replies to this, perhaps I can rephrase the question.
Does anyone know of *any* way. To store the last position of *multiple* open
CFWINDOW objects. All examples I have found only work with one window.

-Original Message-
From: Dustin M. Snell [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 18, 2007 4:17 PM
To: CF-Talk
Subject: Multple CFWINDOWS - cannot identify

Hello, I am trying to move our Intranet app to use CFWINDOWs. One of the
things I would like to do is migrate over time. This being the case, I want
to make a routine that saves the X and Y coordinates of a window to a
cookie, so that on the next page load the CFWINDOW is created in the same
position it was at. This gives the impression to the user that the Windows
are persistant. I have this successfully working with ONE window. 

 

I run into problems with more than one window because there seems to be no
way to check for the existence of a certain window by name, or to extract
the name of whatever window passed the move event. I am running into is that
I need to get the name of the Window (or some other identifying
characteristic) so that I know which cookie to write to. Unfortunately NAME
does not seem to be exposed. Here is my JavaScript code (called via
AJAXOnLoad):

 

moveListener = function() 

  {

  if (ColdFusion.Window != null)

  { 

  var w =
ColdFusion.Window.getWindowObject('todayAtWindow');

 
w.on('move',setCoordsTODAYAT,w);

 
w.on('hide',closeWindowTODAYAT,w); 



 

  }

 

setCoordsTODAYAT = function(ob,x,y) 

{ 

 

Set_Cookie('TODAYATWINDOW_X', x, 10, '/', '', '');

Set_Cookie('TODAYATWINDOW_Y', y, 10, '/', '', '');

}

 

closeWindowTODAYAT = function(ob) 

{ 

Set_Cookie('TODAYATWINDOW_SHOW', false, 10, '/', '', '');

}

 

Any help would be appreciated.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295099
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Sorry if I seem silly or not to be thinking straight. 

Although I do have a programming background, I am rather new to Javascript
and AJAX techniques. The function naming is the result of an attempt at
solving the problem -but it didn't work.  Ideally all the CFWINDOWs would
all go through a *single* event handler and the name of the window could be
retrieved via the object. This doesn't seem possible from what I have seem
so far. ob.name gives you nothing. So next, I decided to do separate event
handlers for each object. Unfortunately there is no way via pure javascript
to see which windows by name happen to be open or not. So you will get an
error when you try to getWindowObject on a window that might not be open. I
suppose I could use CF to conditionally generate javascript code, but I do
wish I could just query this all via Javascript. 

Again, a single event handler with access to the name of the window would be
ideal - I am amazed that this isn't possible. When working with windows it
seems to me the ability to say DoesWindowExist() and get Window.name()
should be part of the basic functionality. Of course, I could still be
missing something.

-Dustin
-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 19, 2007 8:26 AM
To: CF-Talk
Subject: Re: Multple CFWINDOWS - cannot identify - 2nd try

I must admit, either your not thinking straight or you are plan being silly.

The answer is in your code, every window has a name. So why not do
what you have done with the next window name?

Personally, I would send an event back to the server when the mouse up
event is fired and save that winodws coords in the db against that
user window. That way cokkies can be switched off / deleted and still
have that persistance feel.


On 12/20/07, Dustin M. Snell [EMAIL PROTECTED] wrote:
 Since I didn't get any replies to this, perhaps I can rephrase the
question.
 Does anyone know of *any* way. To store the last position of *multiple*
open
 CFWINDOW objects. All examples I have found only work with one window.

 -Original Message-
 From: Dustin M. Snell [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, December 18, 2007 4:17 PM
 To: CF-Talk
 Subject: Multple CFWINDOWS - cannot identify

 Hello, I am trying to move our Intranet app to use CFWINDOWs. One of the
 things I would like to do is migrate over time. This being the case, I
want
 to make a routine that saves the X and Y coordinates of a window to a
 cookie, so that on the next page load the CFWINDOW is created in the same
 position it was at. This gives the impression to the user that the Windows
 are persistant. I have this successfully working with ONE window.



 I run into problems with more than one window because there seems to be no
 way to check for the existence of a certain window by name, or to extract
 the name of whatever window passed the move event. I am running into is
that
 I need to get the name of the Window (or some other identifying
 characteristic) so that I know which cookie to write to. Unfortunately
NAME
 does not seem to be exposed. Here is my JavaScript code (called via
 AJAXOnLoad):



 moveListener = function()

  {

  if (ColdFusion.Window != null)

  {

  var w =
 ColdFusion.Window.getWindowObject('todayAtWindow');


 w.on('move',setCoordsTODAYAT,w);


 w.on('hide',closeWindowTODAYAT,w);





  }



 setCoordsTODAYAT = function(ob,x,y)

 {



Set_Cookie('TODAYATWINDOW_X', x, 10, '/', '', '');

Set_Cookie('TODAYATWINDOW_Y', y, 10, '/', '', '');

 }



 closeWindowTODAYAT = function(ob)

 {

Set_Cookie('TODAYATWINDOW_SHOW', false, 10, '/', '', '');

 }



 Any help would be appreciated.





 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295103
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Thanks for your reply. Ok I have Firebug. I see quite a lot of properties
and methods. After checking the whole tree I do not see a way to get all the
Windows that are open or a way to check if a certain Window Exists by name
or any other identifying characteristic that would persist from page to
page. Therefore I cannot save the position of multiple windows reliably,
because I am only able to check if there are Windows (in general) open or
not, there seems to be no ability to test in JavaScript for a certain Window
being open. (ID is uniquely generated on each page load so that won't work
either).

Am I looking more or less silly at this point?

-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 19, 2007 9:03 AM
To: CF-Talk
Subject: Re: Multple CFWINDOWS - cannot identify - 2nd try

Ok,


Here is what you need to do.

1) D'load Firefox
2) Get the plugin / addon calle fireBug
3) Use that to view properties and methods of an object


For example, in the fireBug window.

 Coldfusion

Will dump the object to the console, for you to browse and inspect.

HTH




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295108
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Multple CFWINDOWS - cannot identify

2007-12-18 Thread Dustin M. Snell
Hello, I am trying to move our Intranet app to use CFWINDOWs. One of the
things I would like to do is migrate over time. This being the case, I want
to make a routine that saves the X and Y coordinates of a window to a
cookie, so that on the next page load the CFWINDOW is created in the same
position it was at. This gives the impression to the user that the Windows
are persistant. I have this successfully working with ONE window. 

 

I run into problems with more than one window because there seems to be no
way to check for the existence of a certain window by name, or to extract
the name of whatever window passed the move event. I am running into is that
I need to get the name of the Window (or some other identifying
characteristic) so that I know which cookie to write to. Unfortunately NAME
does not seem to be exposed. Here is my JavaScript code (called via
AJAXOnLoad):

 

moveListener = function() 

  {

  if (ColdFusion.Window != null)

  { 

  var w =
ColdFusion.Window.getWindowObject('todayAtWindow');

 
w.on('move',setCoordsTODAYAT,w);

 
w.on('hide',closeWindowTODAYAT,w); 



 

  }

 

setCoordsTODAYAT = function(ob,x,y) 

{ 

 

Set_Cookie('TODAYATWINDOW_X', x, 10, '/', '', '');

Set_Cookie('TODAYATWINDOW_Y', y, 10, '/', '', '');

}

 

closeWindowTODAYAT = function(ob) 

{ 

Set_Cookie('TODAYATWINDOW_SHOW', false, 10, '/', '', '');

}

 

Any help would be appreciated.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295071
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFCHART in CFLAYOUT (tabs) Image Expired in Firefox

2007-12-18 Thread Dustin M. Snell
I am combining multiple Flash CFCHARTS inside a CFLAYOUT tab control. Works
great in IE, in Firefox the first tab displays fine but switching to
alternate tabs causes Image Expired Refresh the Page to View the Image
(which is odd because I am using flash format) in all the tabs. 

 

Any ideas?

 

Thanks in advance.

 

-Dustin Snell



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295072
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Ajax controls rendering badly

2007-12-17 Thread Dustin M. Snell
Hi List, 

 

I have been playing with CFLAYOUT (tabs) and I am not really too excited
about the way the page is drawn. I know it sounds picky but open first
loading the page ou see all the content drawn on the page first then it puts
them into the tabs. Is there any way around this?  

 

I would like it to work so that the tabs are drawn first. I wouldn't even
mind of the other content didn't even attempt to load until the tab is
selected - although that's not as important as the content being hidden
until selected.

 

The same behavior seems to apply to CFWINDOW. I am kind of new to the Ajax
controls so sorry if this has been asked before.

 

-Dustin 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294931
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF forums

2007-12-17 Thread Dustin M. Snell
We use Fusetalk - so does Adobe.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 17, 2007 12:00 PM
To: CF-Talk
Subject: CF forums

Hey All,

I finally have a need for a CF forum (had to happen after 9 years) ;-)

The only one I can recall seeing is CF_BB, but I know there are 2 major 
players.

S.

1) Which is closest to PHP_BB?

2) Are they both free?

3) What database is behind them?

4) How's the ease of install/configuration (how many hours for a 
knowledgeable CFer)?

5) Anything else CONSTRUCTIVE you may have to add ;-)

TIA

Cheers

-- 

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294939
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF forums

2007-12-17 Thread Dustin M. Snell
Wow, that seems like a terrible reason to dismiss a great product. 

We don't use Fusetalk because Adobe does, as a matter of fact we were using
it before they started. We did an evaluation of all the solutions out there
and found Fusetalk to be the best. And now 3 years later, I can say it has
worked out quite well.

To answer your questions:

1) Which is closest to PHP_BB? Not sure but all the major things seem to be
there (avatars, signatures, logon integration, rich text, code attach etc)

2) Are they both free? Fusetalk is not free but not overpriced either. See
www.fusetalk.com for details.

3) What database is behind them? Any Database that CF supports works. We use
MS SQL 2000 atm.

4) How's the ease of install/configuration (how many hours for a
knowledgeable CFer)? Up and running in no time, 3-5 hours depending on how
closely you want it to integrate with your existing site. 

5) Anything else CONSTRUCTIVE you may have to add ;-) Great support.
Regular updates. I hear version 4 is going to be out in 2008 and be even
better.

Just my opinion FWIW.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 17, 2007 12:57 PM
To: CF-Talk
Subject: Re: CF forums

Dustin M. Snell wrote:
 We use Fusetalk - so does Adobe.
Well given my lack of anything nice to say about the Adobe siteI 
think we'll skip it ;-)

..but thanks!

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294942
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: memory issues

2007-12-17 Thread Dustin M. Snell
We have the same issue. Sometimes jrun freezes as well. I suspect  
though that it may not be a problem (the memory usage) as it may just  
be set up to use all available memory for speed (caching etc) just  
like .net, SQL server and vista. But if there is a shortage they may  
give back. I have no proof of this however. So give it lots of ram.  
It's cheap enough these days.

Composed via iPhone. Please forgive typos.

On Dec 17, 2007, at 7:58 PM, Jonathon Stierman [EMAIL PROTECTED]  
wrote:

 An application of mine has recently been acting up -- memory has been
 shooting up at a fairly rapid pace this past week, and I'm at my  
 wits end!
 Can't seem to find any way to fix it.  Here's the symptoms:

 After rebooting the CF service, memory starts out at about 60mb for  
 the
 jrun.exe process.  After that all hell breaks loose ;)  It continues  
 to
 consume about 4 megs a minute until it plateau's at about 590mb.  At  
 that
 point, the server starts delivering 500 null errors, and my
 application/exception.log files fill up with  
 java.lang.OutOfMemoryError
 messages.

 The site gets a couple hits a second, and  those hits are fairly  
 heavy in
 processing.  Most involve file-reading and then parsing that file  
 for the
 relevant data.

 I have downloaded a trial version of FusionReactor and got that set  
 up on
 the system.  If I'm reading it right, it looks like every request  
 coming in
 is consuming large amounts of memory.  I can understand why they'd  
 take up
 lots of memory -- each one has to read a text file that is between  
 200k and
 5 megs, and that seems to correlate with the memory jumps -- but why
 wouldn't that memory be released after the request is complete?  It  
 just
 keeps piling up.

 Is this to be expected from high volumes of file-reading/parsing  
 requests?
 What advice can you give for getting some of that memory free and  
 available?

 Server monitoring and tweaking is definitely not my forte -- any  
 help and
 knowledge will be much appreciated!

 TIA!

 Oh -- incase the box info helps.  It's a Windows Server 2003 dedicated
 server, running CFMX7 Standard.

 Jonathon



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294976
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion.Window.getWindowObject causes exception on IE

2007-12-15 Thread Dustin M. Snell
Thank you so much. I really appreciate it.

Composed via iPhone. Please forgive typos.

On Dec 14, 2007, at 10:55 PM, Azadi Saryev [EMAIL PROTECTED] wrote:

 well, here it is:

 tested it - saw exception.
 tested it in FF with ?cfdebug added to url - saw same exception logged
 in the logger.
 why the exception? because your cfwindow does not yet exists when your
 function tries to access it.
 remove the onload=... from the body tag, and add
 cfscriptajaxOnLoad('moveListener');/cfscript just before the  
 closing
 /body.  worked like a charm for me...

 ---
 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com



 Dustin M. Snell wrote:
 How could you guys not answer this?  I have been on and off this list
 since 1998. The least I would expect is for someone to try it and
 either confirm or deny that it is a problem with cf. At least then I
 could elevate it as a bug. Is cftalk not what it used to be?

 Composed via iPhone. Please forgive typos.

 On Dec 14, 2007, at 8:05 AM, Dustin Snell [EMAIL PROTECTED]
 wrote:


 I am getting the error “Exception Thrown and not caught” on IE7,
 code works on Firefox. Have been working on this for more than 8 hou
 rs. I need to capture the coordinates of a CFWINDOW so that if the u
 ser goes to another page on the site the window can be recreated in
 the same place. Just put this in any CFM file. (If anyone knows how
 to fix or a better way of doing it I would be very appreciative). He
 re is very simple code to reproduce:

 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
 
 html xmlns=http://www.w3.org/1999/xhtml;
 head
 meta http-equiv=Content-Type content=text/html;  
 charset=utf-8 /
 titleUntitled Document/title
   script type=text/javascript
   moveListener = function()
   {
   if (ColdFusion.Window != null)
   { var w = ColdFusion.Window.getWindowObject('testWindow');
   w.on('move',setCoords,w);
   }
   }

   setCoords = function(ob,x,y)
   { alert(x);
   }
   /script
 /head
 body onload=javascript:moveListener()
   CFWINDOW closable=true initshow=true name=testWindow
   Test test
   /CFWINDOW
 /body
 /html







 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294867
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion.Window.getWindowObject causes exception on IE

2007-12-14 Thread Dustin M. Snell
How could you guys not answer this?  I have been on and off this list  
since 1998. The least I would expect is for someone to try it and  
either confirm or deny that it is a problem with cf. At least then I  
could elevate it as a bug. Is cftalk not what it used to be?

Composed via iPhone. Please forgive typos.

On Dec 14, 2007, at 8:05 AM, Dustin Snell [EMAIL PROTECTED] 
  wrote:

 I am getting the error “Exception Thrown and not caught” on IE7,  
 code works on Firefox. Have been working on this for more than 8 hou 
 rs. I need to capture the coordinates of a CFWINDOW so that if the u 
 ser goes to another page on the site the window can be recreated in  
 the same place. Just put this in any CFM file. (If anyone knows how  
 to fix or a better way of doing it I would be very appreciative). He 
 re is very simple code to reproduce:

 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd 
 
 html xmlns=http://www.w3.org/1999/xhtml;
 head
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 titleUntitled Document/title
script type=text/javascript
moveListener = function()
{
if (ColdFusion.Window != null)
{ var w = ColdFusion.Window.getWindowObject('testWindow');
w.on('move',setCoords,w);
}
}

setCoords = function(ob,x,y)
{ alert(x);
}
/script
 /head
 body onload=javascript:moveListener()
CFWINDOW closable=true initshow=true name=testWindow
Test test
/CFWINDOW
 /body
 /html


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


1 ColdFusion Failover costs 8-10x more than a standalone server!

2005-08-30 Thread Dustin M Snell [Network Automation]
Hi,

We are having major reliability problems with ColdFusion 7. These problems
have been discussed here before with no real solutions. For example: JRUN
will go completely haywire and take all the CPU and Virtual Memory on the
system about once every 2 days, sometimes multiple times a day. We haven't
been able to figure out why. 

For this and other reasons (such as the occasional upgrade), we have decided
that a 2 server cluster would be a good idea so at least we could get some
redundancy. We don't need load balancing really, just failover but it looks
like you usually get both no matter what you do.

Unfortunately, after calling Macromedia I have found that the only way to do
this is to buy 2 licenses of ColdFusion Enterprise. So basically this will
entail approximately a $10k+ investment in just Coldfusion licenses (not to
mention hardware etc), which works out to about 8 times our original
investment for the existing license, just to get some redundancy!

So the formula is: 

1 server solution = $695-$1200 (depending on upgrade or new)
1 redundant server solution (2 servers with same content) = $10,000+

Does this make sense to everyone here?

For the love of God can someone tell me please: is there another way to get
some redundancy? 

-Dustin Snell
Network Automation, Inc



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 1 ColdFusion Failover costs 8-10x more than a standalone server!

2005-08-30 Thread Dustin M Snell [Network Automation]
Thanks for all the answers so far,

Hmm - so it may be possible after all if I am willing to loose the sessions?
What are sticky sessions?

-Dustin Snell
Network Automation, Inc



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216873
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 1 ColdFusion Failover costs 8-10x more than a standalone server!

2005-08-30 Thread Dustin M Snell [Network Automation]
Adam, 

Hey! Speaking of cheap -- that's kind of a cheap shot! I'm not cheap, but we
are talking about a small business here that still has a requirement for
maximum uptime. 

I wouldn't mind paying twice as much for two servers - even though the 2nd
isn't even doing anything most of the time. I don't think it's much to ask
that it be able to scale to that level without having to increase our
initial investment 8x over.

-Dustin



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216874
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 1 ColdFusion Failover costs 8-10x more than a standalone serv er!

2005-08-30 Thread Dustin M Snell [Network Automation]
Hi Dave (or anyone else participating),

So do you recommend a hardware load balancer for a small 2 server setup
instead of using, let's say NLB in Windows 2003? Our server has about
3000-5000 unique visitors per day.

If you would recommend a hardware load balancer, which one would be a good
one start looking at for our size implementation?

Thanks to everyone for their help,

-Dustin Snell
Network Automation, Inc



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216885
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control (found issue)

2005-08-24 Thread Dustin M Snell [Network Automation]
This is very interesting. We use Fusetalk over here as well. Problem is, I
don't want to disable it because we actively use it! Can you be more
specific about what exactly you need to do to fix the problem? Does it
require discontinuing use of Fusetalk altogether?

-Dustin Snell
Network Automation, Inc

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 8:46 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control (found issue)

Okay, I think I have found the issueit was trying to run some file over
and over.  
 
I removed the directory as it wasn't in use any longer.  Here's the freak
show:  I removed all scheduled tasks, etc, mappings, etc to the Fusetalk
Forums that was firing up this query over and over.  I even deleted *all*
scheduled tasks for now.
 
Restarted.  
 
Now, it just gives me an error file not found in the exception.log every
thirty seconds.  At least memory has stabilized, my i/o just getting some
love now.   But the server is staying up.
 
Stopped the IIS website even that was where the forums were stored.
Restarted CF.  Same flippin thing happening.
 
NOW, how can this be?  Is there a file that contains/runs certain scheduled
tasks that in some way may not have properly deleted this process...I
started to look for a scheduled task xml file somewhere but not real certain
where its stored.  I mean, it starts right from the get go like a dog after
a bone.
 
Any thoughts from other server guys on this one?



From: Micha Schopman [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 9:53 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control



That does not solve the problem, it only covers the problem up. What
does SQL Profiler tell you, what is happening in terms of SQL Server
traffic?

Maybe Macromedia can come up with an answer, my guess is you are not the

only one with this bug.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep.
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl


-
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: woensdag 24 augustus 2005 15:39
To: CF-Talk
Subject: Re: Old saw: jrun.exe out of control

 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm










~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216191
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: HTML Editor

2005-03-23 Thread Dustin M Snell [Network Automation]
Why not Dreamweaver MX 2004? That's my favorite one.

-Dustin

-Original Message-
From: Mickael [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 23, 2005 3:02 PM
To: CF-Talk
Subject: HTML Editor

Hello All,

I am sorry for being OT but I was wondering if anyone could point me in the
right direction in regards to an HTML Editor that can be used for my users
to edit their own pages.

I have been using FCK editor and SoEditor but find that their support for
stylesheets is terrible.  Can an anyone recommend a good reliable editor
that I can use or buy.


Thanks

Mike





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199842
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ParseDateTime()

2001-04-15 Thread Dustin M. Snell [Unisyn Software, LLC]

Just wondering -- do you have any code that you have written to deal with
this?

-Dustin Snell
Unisyn Software
- Original Message -
From: "Paul Hastings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, February 01, 2001 8:38 PM
Subject: Re: ParseDateTime()


  Well, I've used it mostly to translate POP dates (the kind that come in
  email headers) into "standard" date formats.

 parseDateTime() chokes on quite a few POP date formats, whether
 these are just strange "standards" or misconfigured (you would not
 believe how many different kinds we've seen). i would use it with
 caution...



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Hyperlink cause a post, how to?

2001-03-16 Thread Dustin M. Snell [Unisyn Software, LLC]

Does anyone know how to make text link (not a button) cause a post event
(like a submit button)? And even better than that - depending on what link
was clicked I need to send a different value.

The practical application for this is to sort a result set with several
columns by clicking on the column name - but without having to repackage the
whole query again on the URL (want to use the hidden form values).

Thanks,

Dustin M. Snell
Unisyn Software, LLC
Creators of AutoMate - The Leading Automation Software For Windows
Free Download at http://www.unisyn.com

- Original Message -
From: "Trey Rouse" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 4:45 PM
Subject: Re: SQL 2000 (enterprise manager)


 Actually I have no problem doing ANY function using Enterprise Manager
2000
 on a sql 7.0 box.  *shrug*



 At 10:32 AM 3/16/2001 -0700, you wrote:
 Acually i just got off the phone with an SQL Administrator at interland
and
 they say that SQL 2000 (Enterprise Manager) will connect to SQL 7.0
Server
 but it wont open the database folder. so i reinstalled SQL 7.0 and for
 whatever reason it connected fine this time, i didnt change or do
anything
 differantly on my end at all so the reason i didnt get connected the
first
 time i guess ill never find out.
 
 Jay Patton
 Web Design / Application Design
 Web Pro USA
 406.549.3337 ext. 203
 1.888.5WEBPRO
 www.webpro-usa.com
 - Original Message -
 From: "Sean Daniels" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 10:17 AM
 Subject: Re: SQL 2000 (enterprise manager)
 
 
   On 3/16/01 11:03 AM Jay Patton wrote:
  
I just upgraded to windows 2000 pro on my development machine, i was
originally running win98 and had sql 7.0 Enterprise manager running
on
 that.
however after my upgrade to 2k i couldn't connect to my sql servers
with
 that
same software any longer. last night i downloaded the evaluation
version
 of
sql 2000 and with that i connected to the servers fine however now
 whenever i
go to open the database folder to view my db the enterprise manager
 quits
responding and i have to kill the program. has this happened to
anyone
 else?
or does anyone have any ideas why this might be happening?
  
   I haven't tried the SQL 2000 enterprise manager yet, but I use SQL 7
   Enterprise Manager all the time on my Windows 2000 pro machine. You
might
   just try reinstalling those.
  
   - Sean
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Authorize.Net or Cybercash or someone else?

2001-03-06 Thread Dustin M. Snell [Unisyn Software, LLC]

Do you happen to have any sample source code for using this?

Dustin M. Snell
Unisyn Software, LLC
Developers of AutoMate - The Leading Automation Software for Windows
http://www.unisyn.com
- Original Message -
From: "Jeff Beer" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, March 06, 2001 5:07 AM
Subject: RE: Authorize.Net or Cybercash or someone else?


 VeriSign bought Signio a while back - very fast, easy to use, stable, and
 has a great price structure.

 Check out the PayFlowPro product.  It's hard to say five times quickly,
but
 it works like a charm.

 -Original Message-----
 From: Dustin M. Snell [Unisyn Software, LLC]
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, March 05, 2001 10:14 PM
 To: CF-Talk
 Subject: OT: Authorize.Net or Cybercash or someone else?


 Hello All,

 I have never been terribly enthusastic about Cybercash's quality of
service.
 I am hearing a lot about Authorize.net now.  Our site is all CF 4.5/W2K so
 good integration in that area is a must. Price, reliabilty, speed are also
 important of course. Does anyone have any opinions on this and or
 comparisons?

 If the answer is Authorize.net - could someone point me in the direction
to
 find CF integration instructions for online transaction processing?

 Thanks!

 Dustin M. Snell
 Unisyn Software, LLC
 Developers of AutoMate - The Leading Automation Software for Windows
 http://www.unisyn.com

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Authorize.Net or Cybercash or someone else?

2001-03-05 Thread Dustin M. Snell [Unisyn Software, LLC]

Hello All,

I have never been terribly enthusastic about Cybercash's quality of service.
I am hearing a lot about Authorize.net now.  Our site is all CF 4.5/W2K so
good integration in that area is a must. Price, reliabilty, speed are also
important of course. Does anyone have any opinions on this and or
comparisons?

If the answer is Authorize.net - could someone point me in the direction to
find CF integration instructions for online transaction processing?

Thanks!

Dustin M. Snell
Unisyn Software, LLC
Developers of AutoMate - The Leading Automation Software for Windows
http://www.unisyn.com




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Determine if a variable has a value

2001-03-05 Thread Dustin M. Snell [Unisyn Software, LLC]

I usually use CFPARAM NAME="varname'" DEFAULT=""

Then just check the value with CFIF varname IS ""

There are other ways but this will work.

Dustin M. Snell
Unisyn Software, LLC
Developers of AutoMate - The Leading Automation Software for Windows
http://www.unisyn.com

- Original Message -
From: "Michael S. Kimmett" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, March 05, 2001 8:27 PM
Subject: Determine if a variable has a value


 Hello,

 I am new to ColdFusion, so this will be an easy answer to most of you.  I
am having difficulty trying to determine if a variable in one of my pages
has a value.  What I mean by a value is did I assign it a value or is it
still empty.  I have tried using IsDefined, Evaluate, and other CF
Functions, but they all are failing the test. Any ideas on how to quickly
and easly determine if variable has a value.

 Thanks in advance.

 Michael



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ParagraphFormat woes

2001-01-16 Thread Dustin M. Snell [Unisyn Software, LLC]

I am using ParagraphFormat to try to format text retrieved from a MSSQL
database through ODBC - in the database the Carrage return linefeeds are
intact but when I use ParagraphFormat to display in HTML I only get new
paragraphs and new lines are lost.  Can somebody help me?

  Version 4, 5, 1, 0

  Edition Professional



-Dustin Snell
Unisyn Software, LLC



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists