Re: Sublime Text 2

2013-03-29 Thread Dan O'Keefe

Dave,

Great free video course here:
https://tutsplus.com/course/improve-workflow-in-sublime-text-2

--
Dan O'Keefe


On Thu, Mar 28, 2013 at 10:28 AM, dave d...@northgoods.com wrote:


 Thanks Mark but I must be missing something. I downloaded the p-ackage
 control file. What screen must I be in when I do the Ctrl+shift+P?  When I
 do that from the opening screen, a drop down list appears with actions but
 if I type install nothing shows up and the dropdown list does not include
 any reference to Package Control.

 Did I miss something?

 Dave



 - Original Message -
 From: Mark Drew mark.d...@gmail.com
 To: cf-talk cf-talk@houseoffusion.com
 Sent: Thursday, March 28, 2013 10:52 AM
 Subject: Re: Sublime Text 2


 
  Install this:
  http://wbond.net/sublime_packages/package_control
 
  Once you do that just do  Ctrl + shift + P
  Type install' and select Package Control: Install Package
 
  then look for cold fusion
 
 
  Sincerely
 
  Mark Drew
 
  On 28 Mar 2013, at 15:47, dave d...@northgoods.com wrote:
 
 
  I downloaded and installed Sublime Text 2 but I can't locate a CF
  package.
  Does anyone have the link to this?
 
  Dave
 
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355200
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Builder - open multiple configured files

2013-03-26 Thread Dan O'Keefe

Thanks Mark, going to give that a shot.

--
Dan O'Keefe


On Tue, Mar 19, 2013 at 8:18 AM, Mark Drew mark.d...@gmail.com wrote:


 I am sure you can use mylyn for this. They are called contexts and it
 remembers the arrangement and files that you have open for a specific
 ticket.

 In your case you wouldn't have to have a issue or ticket but a ticket that
 refers to a section.

 I can post screenshots once I have installed it


 Sincerely

 Mark Drew

 On 19 Mar 2013, at 15:11, Dan O'Keefe dan.oke...@gmail.com wrote:

 
  Working on a project which also uses backbone.js quite extensively. The
 app
  is broken out into subsections, and each subsection can have several js
  files.
 
  I'm looking for a way to configure into a script of some type which files
  belong to which section so I can single click to open them all up for the
  section I want to work in.
 
  These are all javascript files so I am not adverse by any means to use a
  different editor for the js coding if it also gives me the functionality
 I
  am looking for.
 
  Anybody know of any way or any toll that would allow me to do that?
 
  TIA
  --
  Dan O'Keefe
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355162
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF Builder - open multiple configured files

2013-03-19 Thread Dan O'Keefe

Working on a project which also uses backbone.js quite extensively. The app
is broken out into subsections, and each subsection can have several js
files.

I'm looking for a way to configure into a script of some type which files
belong to which section so I can single click to open them all up for the
section I want to work in.

These are all javascript files so I am not adverse by any means to use a
different editor for the js coding if it also gives me the functionality I
am looking for.

Anybody know of any way or any toll that would allow me to do that?

TIA
--
Dan O'Keefe


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355095
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Polymorphism use

2012-07-02 Thread Dan O'Keefe

Thanks Matt,

That's true, but super is limited to only one level I believe. How about if
I wanted to execute the method in the animal object?

Dan



On Fri, Jun 29, 2012 at 3:08 PM, Matt Quackenbush quackfu...@gmail.comwrote:


 Since oCat extends feline, you'd be looking for super.makeSound().

 // oCat
 function makeSound()
 {
 super.makeSound();
 }


 HTH


 On Fri, Jun 29, 2012 at 7:49 AM, Dan O'Keefe dan.oke...@gmail.com wrote:

 
  I have an animal object with a method call makeSound().
 
  Then I have a feline object that extends animal with a method called
  makeSound().
 
  Then I have an object named cat that extends feline with a method called
  makeSound().
 
  If I instantiate the cat object and call it oCat, I can call
  oCat.makeSound() and get the cat sound.
 
  QUESTION IS, how do I call the makeSound() method in the feline object
 via
  the oCat handle?
 
  I am told it is possible but I have not been able to find out exactly
 how.
  I did read you need to pass a type reference to it but not sure what that
  means. Would it be oCat.makeSound(feline) ??
 
  --
  Dan O'Keefe
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351786
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Polymorphism use

2012-07-02 Thread Dan O'Keefe

Thanks Cameron, that makes sense.

I agree with Dave's position and guess I should have pointed out I do not
have a valid use case for this, but only trying to sort through the
limitations of a question posed to me.

Thanks,
Dan


On Mon, Jul 2, 2012 at 7:56 AM, Cameron Childress camer...@gmail.comwrote:


 Dan-

 As Dave pointed out, I'd typically make a standard assumption in most
 design that each subtype would automatically call super on extended methods
 / interfaces. This would mean that each level would contain the
 super.makeSound() to chain them all together as you go up the path
 of inheritance.

 -Cameron

 On Mon, Jul 2, 2012 at 9:22 AM, Dan O'Keefe dan.oke...@gmail.com wrote:

 
  Thanks Matt,
 
  That's true, but super is limited to only one level I believe. How about
 if
  I wanted to execute the method in the animal object?
 
  Dan
 


 --
 Cameron Childress
 --
 p:   678.637.5072
 im: cameroncf
 facebook http://www.facebook.com/cameroncf |
 twitterhttp://twitter.com/cameronc |
 google+ https://profiles.google.com/u/0/117829379451708140985


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351797
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF Polymorphism use

2012-06-29 Thread Dan O'Keefe

I have an animal object with a method call makeSound().

Then I have a feline object that extends animal with a method called
makeSound().

Then I have an object named cat that extends feline with a method called
makeSound().

If I instantiate the cat object and call it oCat, I can call
oCat.makeSound() and get the cat sound.

QUESTION IS, how do I call the makeSound() method in the feline object via
the oCat handle?

I am told it is possible but I have not been able to find out exactly how.
I did read you need to pass a type reference to it but not sure what that
means. Would it be oCat.makeSound(feline) ??

--
Dan O'Keefe


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351765
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) jQuery Facebook Wall Display

2011-01-05 Thread Dan O'Keefe

Justin,

Are you looking for the Recent Activity as shown on this site:
http://www.campuscircle.com/

Dan


On Tue, Jan 4, 2011 at 8:04 AM, Justin Scott jsc...@gravityfree.com wrote:


 Is anyone aware of a jQuery plugin (or script which uses jQuery) to pull a
 Facebook feed from their graph API and display it on the page in a manner
 similar to how the Facebook wall is displayed?  We have a client who would
 like to display a Facebook stream on their home page similar to how many
 people display their Twitter feed on their home pages.  Unfortunately it
 appears as though all of the social plugins that Facebook makes available
 revolve around the like button or showing what a visitor's friends have
 liked or shared on a site.  Essentially they want to take what they post to
 their wall and have it show up on their homepage as well.  Any suggestions?
 My Google-fu is failing me this morning.


 -Justin



 PS: Yes, we can roll our own but would prefer something we can drop in
 before we spend a lot of time reinventing the wheel if it exists somewhere
 already.  Thanks!


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340464
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ProFlashUpload

2010-12-13 Thread Dan O'Keefe

Yep, I had numerous problems with that exact issue. At one point that tool
was very solid but they introduced some issues in it at some point and
working with the author to resolve it was a huge waste of time and cost.
They gave up and should not be selling it anymore.

But now with CF9, you do not need it at all with the cffileupload tag.

   --
Dan O'Keefe


On Mon, Nov 29, 2010 at 8:42 AM, M P miketot...@gmail.com wrote:


 Anyone familiar with ProFlashUpload? I downloaded it and got it working
 yesterday and it was working fine. Today, it only works in IE. Yesterday I
 know it was working in Firefox, but today, it no longer does. It appears to
 work (no visible errors), but it doesn't actually upload the file.

 There's an error log that says something about the session timing out:

 The current proFlashUpload session has timed out. Please reload the
 interface and try again. Reference
 'SESSION.ProFlashUpload.vA6935FFAD6679CB9C4A6ACDEB0785179' not found.

 But as far as I can tell, the session is properly configured. And again, it
 works fine in IE.

 Anyone else seen this? I emailed the developer and he responded that he
 couldn't be bothered to help (which is odd since his website explicitly says
 to email him if you need further help). Normally that would be enough for me
 to simply find another solution, but in this case, it really does seem to be
 the best solution I've found for uploading multiple files at once.

 Unless anyone has other suggestions for that as well?

 thanks,

 Mike

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340043
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) CKFinder - anyone know about how licensing works?

2010-09-14 Thread Dan O'Keefe

I have a client having the same issue as far as contacting Fred
regarding a new purchase, and no response.

Dan



On Wed, Aug 25, 2010 at 11:45 PM, Mike Kear afpwebwo...@gmail.com wrote:

 G'day Gerald,

 I think you might be right.   There was nothing that I saw telling me
 that BEFORE i made the sale, and now I cant get anyone at CKFinder to
 answer my emails.  I have some issues connecting it up where the
 documentation is sparse to say the least,  and after 4 days they wont
 answer my email asking them to confirm what you said.     I need to
 see if they're willing to change the licence details to allow me to
 put the CKFinder where I need  it, and I need to have another tech
 question answered.

 But they haven't responded in any way after 3 attempts to contact them.

 So perhaps my options are running out and I might well end up doing
 what I usually do - making my own.  I could call it MKFinder.  The
 only bit I'm not sure how to do right now is integrating with
 FCKEditor or CKEditor and passing the image details back to the
 editor.  The rest I can do with ColdFusion.


 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



 On Wed, Aug 25, 2010 at 11:38 PM, Gerald Guido gerald.gu...@gmail.com wrote:

  install it into a subdomain
 *
 I think you are SOL** :(
 *
 *The *license states*:

 **Web Site*: you may integrate CKFinder in one web site (the Web Site).
 The Web Site URL must be specified at the moment of the purchase. The
 license will not be valid for sub-domains of the specified Web Site URL.
 ***
 *http://ckfinder.com/license

 G!


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337029
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SQL Server Data Archival - my solution

2010-08-02 Thread Dan O'Keefe

I find this intriguing as well. Almost like a poor mans historical
archive system.

A generator for the triggers would be cool also based on Illidium PU-36
--
Dan O'Keefe



On Fri, Jul 30, 2010 at 9:08 AM, Pete Ruckelshaus
pruckelsh...@gmail.com wrote:

 Feel free to pass on any enhancements or improvements!


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335921
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-06 Thread Dan O'Keefe

James,

I would be interested in participating on this as well as I have a
current need for the WS-Security piece with ExactTarget API.

Dan


On Sat, Jun 5, 2010 at 7:13 AM, James Holmes james.hol...@gmail.com wrote:

 OK, I'll finish up the webservice wrapper CFC on which I'm working and then
 look at what's necessary to add the digest password type (currently I just
 have the text type working) and any other parts of WS-Security that are
 possible in CF.

 The code will work in CF8 and higher, although parts of it will probably
 work in CF7 (since that's when we got addSoapRequestHeader()).

 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.au/blog/


 On 5 June 2010 21:15, Phillip Duba phild...@gmail.com wrote:


 James, I know I will definitely need something like that in the future.
 While this project went the .NET route, there are two follow-on projects
 that will most likely be needed, one requested by my group, so I know I'll
 be working on at least one more integration using WS-Securit. Thanks,

 Phil

 On Sat, Jun 5, 2010 at 8:12 AM, James Holmes james.hol...@gmail.com
 wrote:

 
  Coincidentally, I've just finished developing the code necessary to do a
  basic WS-SECURITY call in CF, using standard cf webservices code (i.e. no
  extra Java jars or other external dependencies).
 
  If people need this sort of thing, let me know because I'm thinking of
  starting an open source project to flesh it out.
 
  mxAjax / CFAjax docs and other useful articles:
  http://www.bifrost.com.au/blog/
 
 
  On 5 June 2010 01:04, Phillip Duba phild...@gmail.com wrote:
 
  
   It did for the pure web services, not for the HTTP Post method (not
   recommended for production). It was a proof-of-concept under a tight
   deadline so I didn't have time to follow the web service all the way to
  the
   conclusion I would need for production. I did find a few blog posts
 that
   got
   me pointed in the direction I probably needed to go. The specific
   implementation was the Username Token profile. I eventually got to
   receiving
   an error of cannot authorize/validate the username token. It probably
 had
   to
   do with timestamps and the makeup of the token itself. Again, I just
 ran
   out
   of time and the project was chosen to be done by another organization
   internally doing .NET work for which the WS-Security implementation was
   seamless using MS's WSE library. It wasn't the deciding factor, but it
  was
   definitely a differentiator,
  
   Phil
  
   On Fri, Jun 4, 2010 at 12:53 PM, Dan O'Keefe dan.oke...@gmail.com
  wrote:
  
   
Philip,
   
Did you authorization require WS-Security?
   
Dan
--
Dan O'Keefe
   
   
   
On Thu, Apr 29, 2010 at 12:13 PM, Phillip Duba phild...@gmail.com
   wrote:

 Dave, thanks for the response. I've gone to executing the request
  using
 CFHTTP, creating the soap:Header tag and building it as I go
 through
   the
WSE
 spec and examples. I've gotten to the point that I get unauthorized
  so
 that's where I'm at now. I may have to use CFHTTP to do it, but
 we'll
see.
 Thanks again,

 Phil



   
   
  
  
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334331
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and .NET Web Services running WSE 3.0

2010-06-04 Thread Dan O'Keefe

Philip,

Did you authorization require WS-Security?

Dan
--
Dan O'Keefe



On Thu, Apr 29, 2010 at 12:13 PM, Phillip Duba phild...@gmail.com wrote:

 Dave, thanks for the response. I've gone to executing the request using
 CFHTTP, creating the soap:Header tag and building it as I go through the WSE
 spec and examples. I've gotten to the point that I get unauthorized so
 that's where I'm at now. I may have to use CFHTTP to do it, but we'll see.
 Thanks again,

 Phil


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334309
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: coldfusion sessions and facebook connect

2009-10-08 Thread Dan O'Keefe

Jeff,

I did a few facebook applications a couple years ago, but facebook
connect does not ring a bell.

But the issue with the sessions does. The postback from facebook
resulted in a different CFID  CFTOKEN each time, so I ended up
rolling my own.

What specifically are you trying to do?
--
Dan O'Keefe



On Wed, Oct 7, 2009 at 7:51 PM, Jeff U j...@uspokerdirectory.com wrote:

 Also, another thread from 4 months ago:
 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59559

 so hopefully Casey or Shane can chime in if they are still out there.

 Thanks

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327059
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Create a circle with text in it?

2009-02-08 Thread Dan O'Keefe


 You can use the image functions to do this, though for the lettering
 will probably be a pain (I think you'd have to use composite images).
 It'd be doable though.  I'd expect any significant image package has
 support for laying text out like this, so that's undoubtedly a better
 bet.

 cheers,
 barneyb


Speaking of imaging packages, does anyone know of any that provide client
side modifications such as added shapes, arrows, etc?

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319039
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating Web Connector to QuickBooks

2009-01-14 Thread Dan O'Keefe
Did you find anything out regarding this?
Dan

On Sun, Jan 4, 2009 at 12:36 PM, Andy a...@omygoodness.com wrote:

 Updating my wife's business from Peachtree to QB.  Have any of you written
 a
 Web Connector for QB?  They use SOAP.  Are they examples out there that I
 can use to short-cut the development?

 Andy




 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317918
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Why is my CF8 server constantly hanging?

2008-12-03 Thread Dan O'Keefe

 Does anyone have any ideas?  At this point I'm willing to pay someone to
 help.  Ahh!


Might want to ping Charlie Aerhart as this is an area of his expertise.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316177
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdirectory directory to a another server

2008-11-26 Thread Dan O'Keefe
On Tue, Nov 25, 2008 at 7:16 PM, Dave Watts [EMAIL PROTECTED] wrote:

  That was my conclusion as well - only way it can work is if a domain is
  involved.

 It is possible, however, to use credentials that aren't valid locally
 to connect to a remote server:

 net use * \\server\share password /user:username


Interesting, that does make a successful connection. I logged into the CF
server with the CFService account and used the following:

net use z: \\192.168.1.160\share1 12345678 /user:CFService /persistent:yes

It creates the Drive Z, which I am using in the CFDirectory command but
still no results.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315974
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfdirectory directory to a another server

2008-11-25 Thread Dan O'Keefe

 In my example, it may be referred to as: \\server1\CFService.

 Then, on \\server2\share, grant access to \\server1\CFService.


That is where the problem is. When trying to give the user from server1
permission on server2, and you click on the Locations button, only the
current server is displayed. So even if I type in server1/CFService, it does
not accept it.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315879
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfdirectory directory to a another server

2008-11-25 Thread Dan O'Keefe
On Tue, Nov 25, 2008 at 6:28 AM, Jeffrey Lemire [EMAIL PROTECTED]
 wrote:

 Have you tried something like \\192.168.1.100\d$\ (d$ representing the
 root
 drive you're trying to access)

 Shares are usually associated with login accounts.


Yep, tried every possible combination I could think of.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315880
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdirectory directory to a another server

2008-11-25 Thread Dan O'Keefe
On Tue, Nov 25, 2008 at 10:47 AM, Dawson, Michael [EMAIL PROTECTED]wrote:

 Try using server\CFService  (Use the other slash)

 Mike


That was a type on my part, but just to be sure I tried it again. The Name
not found dialog states The following object is not from a domain listed
in the select location dialog box, and is therefore not valid.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315904
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdirectory directory to a another server

2008-11-25 Thread Dan O'Keefe
On Tue, Nov 25, 2008 at 3:37 PM, Dave Watts [EMAIL PROTECTED] wrote:

  That was a type on my part, but just to be sure I tried it again. The
 Name
  not found dialog states The following object is not from a domain
 listed
  in the select location dialog box, and is therefore not valid.

 I'm pretty sure you can't refer to local accounts on one machine from
 another machine. You can refer to domain accounts if both machines are
 within the same domain, or if an appropriate trust relationship has
 been created between the domains.


That was my conclusion as well - only way it can work is if a domain is
involved.

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315935
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfdirectory directory to a another server

2008-11-24 Thread Dan O'Keefe
I tried this recently myself without success. In my scenario, I had 2 Win2K3
standalone servers (not in a domain), so I could not give rights to a folder
on one server from the other. I tried matching up user account  passwords
that the CF Service used to login and applied the rights to the folder to be
written to, but that did not work wither. Tried both a mapped drive and UNC.
--
Dan O'Keefe


On Mon, Nov 24, 2008 at 5:14 PM, patrick buch [EMAIL PROTECTED]wrote:

 Hi everyone,

 I have a webpage that list everything in a particular folder, see code...

 cfdirectory action=LIST name=qCurrent
 directory=d:\saprepository\current sort=datelastmodified desc

 I want to change the directory to be another server. The CF Docs show this
 but it's not working...I don't get any results using the absolute
 addressing.

 cfdirectory directory=//12.3.123.123/c_drive/ name=dirQuery
 action=LIST

 Any suggestions?

 Thank you in advance for your time and help.





 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315846
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdirectory directory to a another server

2008-11-24 Thread Dan O'Keefe
Yes, Since I created matching accounts on the two servers, say CFService
and using the same passwords. Even gave the admin privelages so I could log
in with that account and test the share by going to \\192.168.1.100\sharname.
That was successful, but flat out would not work in CF 8.01.
Dan

On Mon, Nov 24, 2008 at 5:46 PM, Dave Watts [EMAIL PROTECTED] wrote:

  I tried this recently myself without success. In my scenario, I had 2
 Win2K3
  standalone servers (not in a domain), so I could not give rights to a
 folder
  on one server from the other. I tried matching up user account 
 passwords
  that the CF Service used to login and applied the rights to the folder to
 be
  written to, but that did not work wither. Tried both a mapped drive and
 UNC.

 Were you able to log into the first server with the account that
 should have access to the other server? Were you able to access the
 share from the first server's console?

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315855
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Going from Application.cfm to Application.cfc

2008-11-17 Thread Dan O'Keefe
Check this out and do a search on Ray's blog for application.cfc
http://www.coldfusionjedi.com/index.cfm/2007/11/5/ApplicationCFC-Template-Update

I think he even has a recorded preso he did once on using it.
--
Dan O'Keefe


On Mon, Nov 17, 2008 at 2:56 PM, Gerald Guido [EMAIL PROTECTED]wrote:

 I have a couple of old apps and I want to start using Application.cfc. Here
 is the thing. The main app I want to convert has parts that dates back to
 CF
 5 and has a LOT of stuff in Application.cfm: Queries, Logging, CFInclude's,
 all kinds of cfparams, stuff to load things into various scopes. A lot of
 it
 is unscoped like paths and URLs.

 Can anyone point me to any resources or offer any advice on the best way to
 go about this? Any Gotchas to avoid, etc?

 As always, many TIA
 G

 --
 Gerald Guido
 http://www.myinternetisbroken.com

 Neurotics build castles in the air, psychotics live in them. My mother
 cleans them.
 -- Rita Rudner


 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315384
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Retrieve files on another servers

2008-11-13 Thread Dan O'Keefe
What is the user that the ColdFusion service is logging in under? If it is
still local (the default) create a CFService user, change CF to login with
that account, and on the server you are trying to r/w from, give the
CFService user the appropriate permissions to that directory.
You can search the archives as well.
--
Dan O'Keefe


On Thu, Nov 13, 2008 at 8:47 AM, Chad Baloga [EMAIL PROTECTED] wrote:

 Does anybody know how to retrieve files on another server which is not a
 web server? I am able to write to the other server share by using some
 permissions, but the retrieval is not working.  It seems to want to use the
 local users machine as the requester and not coldfusion. Thanks

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315209
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Quickbooks and CF

2008-11-13 Thread Dan O'Keefe
Nick,
Is that for the desktop version then? What is the utility written in?

Dan
--
Dan O'Keefe


On Thu, Nov 13, 2008 at 3:47 PM, Nick Gleason [EMAIL PROTECTED]wrote:

 Hi there.  We have built a desktop utility that integrates transactions
 from
 within our online application into QuickBooks (although not QuickBooks
 online) with a click of the mouse.  This utility is somewhat specific to
 our
 application, but it might have some general applicability.  You are more
 than welcome to take a look at it to see if it's useful.  Contact me off
 list for more details.

 N


 .
 ..


  -Original Message-
  From: Phillip M. Vector [mailto:[EMAIL PROTECTED]
  Sent: Thursday, November 13, 2008 3:21 PM
  To: cf-talk
  Subject: Quickbooks and CF
 
  I've searched all around google and everywhere else I could
  look. Nothing.
 
  There is a function in the recent versions of quickbooks that
  says something to the effect of Synch Quickbooks. I've
  found XML guides how to write information to (I suppose) a
  cloud somewhere (which is then read by the program and it's
  synched up).
 
  Does anyone know where this cloud exists? I've called Intuit
  and they say it doesn't. Does this mean I have to write up an
  XML responder to make this work? If so, what format does
  the data need to be in?
 
  Either that or if someone has some code already written to
  put charges info quickbooks, it would be much appricated. I
  found something earlier, but it seems to only work with ez-cart.
 
  Is there any hope?
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315253
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: lists question

2008-11-05 Thread Dan O'Keefe
 I can't tell you how many posts I've seen over the years where the poster
 didn't even include the location of the job in the post.  Too funny, really.
 :)

Good point - always find myself having to hunt through the post to
find the location and if they are requiring on site. If we make those
required fields, can you force the subject line to append the location
and site requirements?

Dan

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

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4104
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Obscenity/Bad Words filter udf/cfc?

2008-10-20 Thread Dan O'Keefe
On Mon, Oct 20, 2008 at 9:46 AM, Ryan J. Heldt [EMAIL PROTECTED] wrote:
 Dan-

 I don't have any code for this, but what I would do is take a block of
 text and treat it as a list, using space, CFLF, and other characters as
 needed as delimiters. Then loop though the list and see if any of those
 are in a struct or array of dirty words you have. I *think* Camden's
 Blog CFC has something like this, but I could be wrong. Either way, it
 should take very long to implement.

 Thanks!
 Ryan

Thanks Andy  Ryan. I know it would not be too big a deal to do the
list and loop over it, but was checking to see if there was something
created already. Some of the ideas I have seen is replacing the
offending word with some other text, matching on whole words, etc. You
don't want to necessarily disallow the entry due to one bad word or
one perceived bad word, so I have to make sure I take that into
account as well.

Dan

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Obscenity/Bad Words filter udf/cfc?

2008-10-18 Thread Dan O'Keefe
Has anyone come across any others? Need one with whole word support.

Dan



On Sat, Mar 10, 2007 at 3:04 PM, Matt Quackenbush [EMAIL PROTECTED] wrote:
 There's also one at CFlib.org.

 http://www.cflib.org/udf.cfm?ID=1105


 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314092
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfmail + gmail

2008-09-30 Thread Dan O'Keefe
In my experience so far with a few different Google apps domains,
useSSL is required and I have never used useTLS. That is with CF 8
though, I don't think useSSL works in 7.02. Make sure your username is
the complete [EMAIL PROTECTED] account name.

Dan

On Tue, Sep 30, 2008 at 9:40 AM, Adrian Lynch [EMAIL PROTECTED] wrote:
 Can anyone say whether useTLS=true and/or useSSL=true are needed in
 cfmail to send via a Google hosted email account?

 The following works for me:

 cfmail
server=smtp.gmail.com
port=465
username=#VARIABLES.username#
password=#VARIABLES.password#
useSSL=true
Message/cfmail

 But blog posts I've read say useTLS is needed.

 Does specifying the port change anything?

 Adrian Lynch
 http://www.halestorm.co.uk/
 http://www.adrianlynch.co.uk/


 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313279
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfmail + gmail

2008-09-30 Thread Dan O'Keefe
Brain,

Aren't those instructions specific to configuring email clients? That
is the only place I have seen a reference to TLS. I have never used
it, but I have always has to use 'useSSL' for the CFMAIL tag. I have
noticed though that the port # differs. I am not sure what logic
Google uses to ddteremine which port you should use for your google
apps account, but the owner of the Google apps account should log in
and go to their email configuration section and find out which one
they should use.

I am curious about your connection issues - I have never had an issue
with it. One awesome thing about it is say goodby to SPAM for good. I
get like maybe one a week.

Dan

On Tue, Sep 30, 2008 at 12:21 PM, Brian Love [EMAIL PROTECTED] wrote:
 Adrian:

 Direct from Google's config instructions:

 17. Enter smtp.gmail.com as the Server Name and set the Port to 587.
 18. Select User name and password and enter your full email address 
 (including @gmail.com or @your_domain.com) in the User Name field.
 19. Select TLS from the Use secure connection radio buttons and click OK.

 You need to use TLS - only CF8 or above I think.  Can authenticate to 
 smtp.gmail.com without it?  I don't think you need SSL, as that is only if 
 you are connecting to imap.gmail.com (again, according to config 
 instructions).

 We use cfmail with Google Apps, works great except sometimes we get 
 connection issues.

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313293
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Google for Domains, mail not being sent

2008-09-20 Thread Dan O'Keefe
Chuck,

I don't think your SMTP server is correct and not sure if you should
list all of the other's as backups.

As Kym mentioned, since you know the DNS entries for a google mail
account, I am assuming you have one and have the domain configured to
work with google. Also, can you send and receive email from the google
web interface for the account you are trying to use in the code?

Try using the following to override the way you have it configured in CF Admin:

cfmail
   to=recipientEmailAccount
   from=yourEmailAccount
   subject=Your Subject
   server=smtp.gmail.com
   port=465
   username=yourEmailAccount
   password=yourPassword
   useSSL=yes

Dan

On Sat, Sep 20, 2008 at 12:01 AM, Chuck Weidler
[EMAIL PROTECTED] wrote:
 I've hardcoded the To email address in the cfmail to an address that I 
 know is good.  Still no good.

 Thanks for the reply.

 Chuck Weidler wrote:
  I have a simple mail application that keeps giving me a log entry of
 Moved undelivered mail: Mail33655.cfmail to
 C:\ColdFusion8/Mail/Undelivr directory in the mailsend.log and
 Invalid Addresses in the mail.log.
 
  When I Verify mail server connection it gives me Connection
 Verification Successful.

 It is probably the To: address of the actual email that is wrong, not

 the mail server's IP address


 --

 Yours,

 Kym

 

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

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


Re: migrating cf6 datasources to cf 8

2008-09-19 Thread Dan O'Keefe
On Windows Server? Same version on both boces? You might be able to go
into regedit on the old server and drill down to the datasources and
save that key, and then copy it to the new server and run it. I
remember trying that one time way back when, not sure if it still
works or what the ramifications are. Backup the new registry first.

Dan

On Fri, Sep 19, 2008 at 2:49 PM, jonese [EMAIL PROTECTED] wrote:
 got a standard cf6 server and need to migrate a bunch of datasources
 to a new cf8 server.

 any ideas?

 jonese
 http://www.jonese.us
 http://twitter.com/jonese

 

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

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


Re: migrating cf6 datasources to cf 8

2008-09-19 Thread Dan O'Keefe
ahh, sounds easier - can those XML sections be copied over then?

On Fri, Sep 19, 2008 at 5:18 PM, Dave Watts [EMAIL PROTECTED] wrote:
 On Windows Server? Same version on both boces? You might be
 able to go into regedit on the old server and drill down to
 the datasources and save that key, and then copy it to the
 new server and run it. I remember trying that one time way
 back when, not sure if it still works or what the
 ramifications are. Backup the new registry first.

 CF 6 and higher don't store datasources in the Windows registry. They're
 stored in neo-query.xml in CF 6 and 7, and neo-datasources.xml in CF 8.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

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

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


Re: Totally Baffling Extra being added in a plain text email. What the heck?

2008-09-17 Thread Dan O'Keefe
Les,

Kind of weird for sure. How about trying to store the contents of the
include file into a local var, and then use that in the body of the
email.

cfsavecontent variable=email_body
cfinclude template=textEMAIL_BODY.cfm /
/cfsavecontent

 cfmail
 to=somebody.somewhere.com
 subject=Just a quick test
 from=[EMAIL PROTECTED]
 failto=[EMAIL PROTECTED]
#email_body#/cfmail

Dan

On Wed, Sep 17, 2008 at 7:53 PM, Les Mizzell [EMAIL PROTECTED] wrote:
 ARRRGGHH

 This is the kind of thing that makes you tear ALL your hair out! If
 anybody can figure this one out, I'll treat you at Starbucks in some
 future life!

 Seems simple enough - I'm just ending an plain text email:

   cfmail
  to=somebody.somewhere.com
  subject=Just a quick test
  from=[EMAIL PROTECTED]
  failto=[EMAIL PROTECTED]
 cfinclude template=textEMAIL_BODY.cfm //cfmail


 textEMAIL_BODY.cfm - for testing right now is:

 cfoutputFrom #request.someNAME#,
 I'm testing plain text email!!!/cfoutput

 That's *IT*!! Nothing else to screw up.

 When I send this, in the body of the email I'm getting (minus the quotes):

 From Tom

 Now, before you say, well, you've got an extra  somewhere you just
 haven't found yet..

 If I change the first letter in From to lower case from, the 
 goes away. In fact, if I change it to ANYTHING else, lower or upper
 case, the  goes away If I change it BACK to a cap From, the 
 returns.

 Now, it's gets even MORE weird! Let's CHANGE textEMAIL_BODY.cfm to:

 cfoutput
 cfif isDEFINED(req.DATE)#req.DATE#
 /cfifFrom #request.someNAME#,
 I'm testing plain text email!!!/cfoutput

 Happens AGAIN - it seems that any combination of code that puts F
 together, results in the  displaying in the email!

 Yes, I can find a way to move the From away from a tag - but then it
 messes with the spacing requested by the client. I've written dozens of
 richtext email systems for clients, and have never run into anything
 like this!

 I'M TOTALLY STUMPED!!!

 

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

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


Re: BUMP Re: Odd null pointer error

2008-09-10 Thread Dan O'Keefe
Bryan,

What version of mySQL are you using?

Dan

On Wed, Sep 10, 2008 at 5:42 PM, Bryan Stevenson
[EMAIL PROTECTED] wrote:
 On Wed, 2008-09-10 at 15:21 -0600, denstar wrote:
 Can you get them to replace the MySQL driver with a newer version?

 That's my shot in the dark.

 Driver issue.

 :D


 Yep...after some more searchinga LOT of folks are having this issue
 and Adobe ain't doing a damn thing about it.  I understand they don't
 write the driver, but if you say your product works with MySQL 4 and 5
 it had damn well better in my books.

 It's been seen since CF 8 launched apparently and is as of yet
 unresolved.

 There are workaroundsI listed a few already, but have added some
 connection string parameters to the datasource that are supposed to
 help.

 Unfortunately there is no newer driver :(

 If it persists I will have no choice but to drop MySQL and port the DB
 to MS SQL Server.

 Ray Camden has 2 threads about it in his forumsa some Googling on
 the error message will get you there.

 HostMySite and CrystalTech both have forum threads about it...as does
 Adobe.

 *fingers crossed*

 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;203748912;27390454;j

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


Re: xml include not working

2008-09-09 Thread Dan O'Keefe
Richard,

It is not an event handler so should not go in that section - try it
right under your opening modelglue

Dan

On Tue, Sep 9, 2008 at 8:58 AM, Richard White [EMAIL PROTECTED] wrote:
 hi,

 i am trying to include one xml file into another

 can anyone tell me what i am doing wrong please:

event-handlers
  include 
 template=/re_base_mg/config/event_handlers/MainControllerEventHandlers.xml 
 /
/event-handlers

 i am getting no errors but when i run the page it cannot find the error 
 handlers inside the MainControllerEventHandlers.xml file that i am trying to 
 include - indicating that it is not including the xml file properly

 thanks

 richard

 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312249
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 8 and memory

2007-08-14 Thread Dan O'Keefe
llkkj

On 8/8/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Wednesday 08 Aug 2007, [EMAIL PROTECTED] wrote:
  I'm sure everything is working but not in what I should have stated,
 native
  64bit mode. In two years, it will be time to upgrade my system again and
  maybe it would be worth checking out a 64bit system then.

 I must admit - it was more hassle getting it all working than it is
 probably
 worth it.
 This goes double now I'm getting an Ubuntu laptop at home, which means a
 new
 kernel and all major utilities every 6 months anyway. Might as well go
 32-bit
 till Adobe sort themselves out.

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered office address
 is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
 available for inspection at the registered office. Any reference to a
 partner in relation to Halliwells LLP means a member of Halliwells LLP.
 Regulated by the Law Society.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 8008.

 For more information about Halliwells LLP visit www.halliwells.com.


 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: Using OnSessionEnd with Model-Glue

2007-07-09 Thread Dan O'Keefe
On 7/8/07, James Holmes [EMAIL PROTECTED] wrote:

 OnSessionEnd() doesn't communicate with a browser. There's no client
 to which to send a location header.

 That makes sense to me, but then the docs state:

--
Use this method for any clean-up activities when the session ends. (For
information on ending
sessions, see Ending a session on page 356.) You can, for example, save
session-related data,
such as shopping cart contents or information about whether the user has not
completed an
order, in a database, or you can log the end of the session to a file. You
cannot use this method to
display data on a user page, because it is not associated with a request.

--

Dan


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Using OnSessionEnd with Model-Glue

2007-07-08 Thread Dan O'Keefe
Cross posting to cf-talk
-
You can add a Cflog line to verify it is firing. I am looking at something
similar and that is how I confirmed it actually is firing. I am just trying
to do a cflocation to a login page but the cflocation tag does not appear to
be working from the onSessionend event.

Does anybody know why?

Dan

On 5/10/07, [EMAIL PROTECTED]  [EMAIL PROTECTED] wrote:

  Nope. I need to run some code on session end. If I put that in my
 application.cfc, how would I call some code in my controller?



 *From:* Andrew Scott [mailto:[EMAIL PROTECTED]
 *Sent:* Wednesday, May 09, 2007 16:43
 *To:* [EMAIL PROTECTED]
 *Subject:* Re: Using OnSessionEnd with Model-Glue



 OnSessionEnd will not be able to be controlled any controller.



 Are you getting confused with requestEnd?





 On 5/10/07, [EMAIL PROTECTED]  [EMAIL PROTECTED] wrote:

 Anybody have a tip on how I can use the session end event?



 I tried defining it like so in my config:

 message-listener message=OnSessionEnd function= OnSessionEnd  /



 And as follows in the controller:



 cffunction name= OnSessionEnd  access=Public returntype=
 ModelGlue.Core.Event output=false

 cfargument name=event type=ModelGlue.Core.Event
 required=true

 /cffunction



 That didn't seem to do anything so the code in the session end function
 did not seem to fire.



 What could I be doing wrong?



 *-*

 *Boyan Kostadinov*
 Web Administrator/Developer

 * Indium Corporation of America http://www.indium.com/*
 *  Email: [EMAIL PROTECTED]
 ( Office: 315-381-2208

 ( Fax: 315-853-1000


 ***This email, its content and any files transmitted with it are intended
 solely for the addressee(s) and may be legally privileged and/or
 confidential. If you are not the intended recipient please delete and
 contact the sender by return and delete the material from any computer. Any
 review, retransmission, dissemination or other use of, or taking of any
 action in reliance upon, this information by persons or entities other than
 the intended recipient is prohibited.

 Messages sent via this medium may be subject to delays, non-delivery and
 unauthorized alteration. This email has been prepared using information
 believed by the author to be reliable and accurate, but Indium Corporation
 makes no warranty as to accuracy or completeness. In particular, Indium
 Corporation does not accept responsibility for changes made to this email
 after it was sent. Any opinions or recommendations expressed herein are
 solely those of the author. They may be subject to change without notice.***





 --



 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273

 ***This email, its content and any files transmitted with it are intended
 solely for the addressee(s) and may be legally privileged and/or
 confidential. If you are not the intended recipient please delete and
 contact the sender by return and delete the material from any computer. Any
 review, retransmission, dissemination or other use of, or taking of any
 action in reliance upon, this information by persons or entities other than
 the intended recipient is prohibited.

 Messages sent via this medium may be subject to delays, non-delivery and
 unauthorized alteration. This email has been prepared using information
 believed by the author to be reliable and accurate, but Indium Corporation
 makes no warranty as to accuracy or completeness. In particular, Indium
 Corporation does not accept responsibility for changes made to this email
 after it was sent. Any opinions or recommendations expressed herein are
 solely those of the author. They may be subject to change without notice.***


 --^^---
 This email was sent to:
 [EMAIL PROTECTED]

 EASY UNSUBSCRIBE click here: http://topica.com/u/?b1drHn.bP4Bnd.ZGFuLm9r
 Or send an email to: [EMAIL PROTECTED]

 For Topica's complete suite of email marketing solutions 
 visit:http://www.topica.com/?p=TEXFOOTER
 --^^---




-- 
--
Dan O'Keefe

-- 
--
Dan O'Keefe


~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


SQL 2005 Profiler - ApplicationName

2007-06-13 Thread Dan O'Keefe
I am trying to inject an ApplicationName via the VF 7.02 administrator so I
can filter on it in SQL profiler.

I tried adding:

Application  Name=My name

into the connection string box. Cycled all of the CF related services but to
no avail.

Any one doing this or know how?

Thanks,

Dan


~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: SOT: SQL methods

2007-06-03 Thread Dan O'Keefe
Tom,

One method I have used in the past is when you query the join table and
display the results, store the EventJoinID 's in a list hidden form
variable. Then on post, wrapped in transaction, a single delete statement
using the EventJoinID 's list will delete all of the old records, and then
loop over your new joins and insert.

It eliminates the need of worrying if a join was changed or deleted. You can
also use cftry  cfcatch to handle the transaction failing.

Dan

On 6/3/07, Tom King [EMAIL PROTECTED] wrote:

 Hi All,

 Just set up a MySql DB, and I'm trying to work out the best way to
 update multiple tables via CF:

 I.e:

 TblEvent
 
 EventID [key]
 EventName

 tblEventType
 
 EventTypeID [key]
 EventTypeName

 tblEventJoin
 
 EventJoinID [key]
 EventID
 EventTypeID

 So above, I might have an EventID, which has multple EventTypeIDs
 associated with it in tblEventJoin

 At the moment, the only way I can see of updating the tblEventJoin
 (assuming I have an EventiD and several EventTypeIDs which are
 associated) is to Query tblEventJoin, work out whether the Row
 already exists, if not Insert the record, and if a row exists which
 shouldnt, delete it.

 What's the best way to actually do this? Multiple CFQueries, and do
 the logic CF side, or is there a better method?

 As you can see, still a newbie on this..


 Ta

 T





 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: File Upload CFC

2007-05-06 Thread Dan O'Keefe
Rob,

While I have not used it myself, Massimo's custom tag solution is here:
http://www.olimpo.ch/tmt/tag/fileuploader/

I seem to remember someone posting about a CFC solution as well.

Dan

On 5/4/07, Robert Rawlins - Think Blue [EMAIL PROTECTED]
wrote:

 Thanks for the pointer Josh,

 I'll be running through this today, if I have any problems then I'll be in
 touch.

 Thanks,

 Rob

 -Original Message-
 From: Josh Nathanson [mailto:[EMAIL PROTECTED]
 Sent: 03 May 2007 19:01
 To: CF-Talk
 Subject: Re: File Upload  CFC

 There shouldn't be any problem doing a file upload via a CFC.

 One thing that's helped me is to wrap the file upload action in a
 try/catch
 block.  If it fails, return a message with the error details.  If it
 succeeds, return an upload successful message.

 -- Josh


 - Original Message -
 From: Robert Rawlins - Think Blue [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Thursday, May 03, 2007 10:06 AM
 Subject: File Upload  CFC


  Hello Guys,
 
 
 
  I've not really worked with file uploads very much, I've done a couple
 of
  small ones using standard procedural methods in CFM pages, but I'm quite
  keen for my next venture to move this into a CFC along with all my other
  'proper' code.
 
 
 
  Has anyone had any experience with this, what are the pitfalls and the
  general method for uploading the file? Can I simply pass the file from
 the
  form into an argument and then process it inside a cfc method with the
  cffile tag?
 
 
 
  Thanks for any ideas or imparted wisdom.
 
 
 
  Rob
 
 
 
 



 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: Breakfast is ready honey... come'n'get it!

2007-04-19 Thread Dan O'Keefe
We could probably see our way clear to include Rosie O'Donnell.

On 4/18/07, Andy Allan [EMAIL PROTECTED] wrote:

 Yeah, lets not talk about the international prices. We always expect
 to pay a little more than the US, but the CS3 stuff is extracting the
 urine. We're looking at paying £1,000 more for the Master Collection.

 As you say Mark, I'll be expecting Angelina Jolie or Keira Knightly
 along with my box ;)

 Andy

 On 18/04/07, Mark Drew [EMAIL PROTECTED] wrote:
  Damn,
 
  No trial download of Dreamweaver CS3 yet... I was so looking forward
  to that!
 
  Mind you... if I buy it from the US ($399) it would cost me £199 but
  if I buy it from the UK store it would cost me £393!!!
 
  Damn, they must be paying those little shipping pixies a LOT of
  money... does it include Angelina Jolie?
 
  MD
 
  On 18 Apr 2007, at 11:08, Will Tomlinson wrote:
 
   https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-
   USstoreregion=usnr=0
  
  
 
 

 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: Adding to Zip files in CFMX 6.1 (Windows)

2007-04-15 Thread Dan O'Keefe
If you create a new one with the same file name, doesn't it add the files to
the existing zip?

Dan

On 4/15/07, Aaron Rouse [EMAIL PROTECTED] wrote:

 Does anyone know of a CFC, tag, or UDF that allows you to add files to an
 existing Zip file?  So far everything I have found in my searches just
 allows for the creation and can put whatever I want to in at that
 point.  I
 can not use cfexecute in this environment which leaves out possibly just
 manipulating the winzip command line tools.  I am trying to avoid having
 to
 create a 100MB or bigger zip file at one time since things are added to
 the
 system over time.  I may just go with plan B though which is creating the
 file at one time and hope it does not produce any significant server
 loads.

 --
 Aaron Rouse
 http://www.happyhacker.com/


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: COM Object Method Not Found (Cybersource)

2007-04-11 Thread Dan O'Keefe
Michale, can you post your code for the com object? What error are you
getting?

Dan

On 4/6/07, Michael Appenzellar [EMAIL PROTECTED] wrote:

 Any resolution on this? I am trying to connect ColdFusion to Cybersource.

 Hi Joe,
 
 Unfortunately it sounds like (and I don't know much about COM mind
 you, so you'll have to forgive any holes in this theory) the method
 you're trying to call on that COM object is overloaded and CF doesn't
 know how to call it properly. This is the sort of thing that could
 theoretically be resolved if it were a Java component with JavaCast()
 but unfortunately there is no ComCast() alternative (although that's
 the name of our Cable TV company :) ... plus JavaCast() last I knew
 only worked for identifying simple data types, so it wouldn't help you
 pass another instantiated COM object anyway. The only thing that leaps
 to my mind is that you would need to create another COM wrapper with
 just the one needed method that could identify and properly call the
 Cybersource object method. But then that's all theory on my part -- I
 have fixed a COM object when I had the source code, but it's not the
 sort of task I'm in a hurry to perform again. So I'm talking through
 my hat to some degree about things I really don't know from
 experience.
 
 
 
 
   The code for that part is as follows:
 
   oClient = CreateObject(COM,CyberSourceWS.Client);
   oClient.RunTransaction(merchantConfig, ,
   ,oRequest,varReply,strErrorInfo)
 
   (where merchantConfig and oRequest are both previously
   created components )
 
   Any ideas?  I've been going crazy over this searching
   google, google groups, and macromedia forums.
 
   Joe Potenza
   Lead Developer
   Bigbuzz Internet Business Solutions
   [EMAIL PROTECTED]
   http://www.bigbuzz.com
 
 
 s. isaac dealey   954.927.5117
 new epoch : isn't it time for a change?
 
 add features without fixtures with
 the onTap open source framework
 
 http://macromedia.breezecentral.com/p49777853/
 http://www.sys-con.com/story/?storyid=44477DE=1
 http://www.sys-con.com/story/?storyid=45569DE=1
 http://www.fusiontap.com

 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: Listing TODOs in CF files

2007-04-05 Thread Dan O'Keefe
It has been worth it to me, a hundred times over.

Dan

On 4/5/07, Claude Schneegans [EMAIL PROTECTED] wrote:

 I don't know what the REExtract thing does exactly

 It returns all strings between two matching REs in a list or in a query,
 with positions and lengths of all strings
 Pretty handy when it is easier to describe what delimits strings than to
 describe the strings themselves.

 For example,
 CF_REExtract
 INPUTMODE=variable
 INPUT=myString
 OUTPUTMODE=query
 RE1=!--- *TODO: *
 RE2= *---
 
 If myString contains:
 !--- TODO: First thing I have to do ---
 blah blah blah
 !--- TODO: Second thing I have to do ---
 blah blah blah
 !--- TODO: Yet another thing I have to do ---

 will return this in a query:
 *string1*   *string2*   *string3*
 *pos1*  *pos2*  *pos3*  *len1*
 *len2*  *len3*
 !--- TODO: First thing I have to do---1
 13  37  12  24  5
 !--- TODO: Second thing I have to do
 ---60  72  97  12  25  5
 !--- TODO: Yet another thing I have to do  ---120 132
 162 12  30  5


 But for 15 bucks, may be it is just not worth ! ;-)

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: WDDX v.s. CF 7 XML functionality

2007-03-30 Thread Dan O'Keefe
Thanks Jim, this is very helpful.

Dan

On 3/23/07, Jim Davis [EMAIL PROTECTED] wrote:

  -Original Message-
  From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
  Sent: Friday, March 23, 2007 7:54 AM
  To: CF-Talk
  Subject: WDDX v.s. CF 7 XML functionality
 
  While having a few legacy apps myself making use of WDDX, I was
  wondering if
  WDDX still has value that is not currently offered in the XML support
  of CF
  7.02. Seems like opedwddx.org is pretty stale.

 It's just as valuable as it ever was.  OpenWDDX.org is definitely getting
 long in the tooth however.

 I've created an updated WDDX JS parser here:


 http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_W
 DDX/

 It's a more concise and modern.  And (at least in my tests) quite a bit
 faster on most operations.

 Also, in case you're interested I've also designed my own data exchange
 layer that tries to improve on the basic ideas of WDDX (passing structured
 data) here:

 http://www.depressedpress.com/Content/Development/YODEL/Index.cfm

 I'm using it very successfully on several projects.

 It works very similar to WDDX but (unlike WDDX) can be validated using XML
 Schema, supports methods for shrinking file size and some other (I think)
 neat stuff.

 Jim Davis


 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


WDDX v.s. CF 7 XML functionality

2007-03-23 Thread Dan O'Keefe
While having a few legacy apps myself making use of WDDX, I was wondering if
WDDX still has value that is not currently offered in the XML support of CF
7.02. Seems like opedwddx.org is pretty stale.

Any thoughts?

Thanks,

Dan
--
Dan O'Keefe


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: Flash form swf storage

2006-11-01 Thread Dan O'Keefe
Thanks Dave. That is why I was looking for it because I wanted to remove it
from cache to see if it resolved the issue where an image inside of a flash
form was not being updated.

Dan

On 10/30/06, Dave Watts [EMAIL PROTECTED] wrote:

  Anyone know where the SWF's from a flash form are stored on
  the server? Are they named similar to the template that
  generated them?

 By default, they're not stored on the filesystem at all. If you view
 source
 in a CFFORM Flash page with a URL like /somedir/somefile.cfm, you'll see
 something like this:

 src='/somedir/2013114037.mxml.cfswf'

 But if you look in that directory, no such file exists. If you want the
 file
 to be cached on the filesystem, you'll have to enable that option:

 http://www.adobe.com/go/ebd0cbe3

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: OT: Vortech Hosting - Orlando, Florida

2006-11-01 Thread Dan O'Keefe
Jenny,

Have your replacement hosting needs been met yet?

Dan

On 10/31/06, Jenny Gavin-Wear [EMAIL PROTECTED] wrote:

 Is anyone else here with Vortech Hosting?  http://www.vortechhosting.com

 Last week they accused me of sending spam from my server, which of course
 I
 don't do.  They threatened me with a $255 fine and I said no way was I
 paying that when the example spam email they sent me was clearly produced
 with a forged message header.

 On Saturday they turned my server off.

 Attempts to contact them are going nowhere, all I get is an answering
 machine or auto replies to emails.

 I am currently looking into taking legal action against them.

 I would also appreciate any legal advice.

 Many thanks,

 Jenny


 Jennifer Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/


 --
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.409 / Virus Database: 268.13.18/506 - Release Date:
 30/10/2006



 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Flash form swf storage

2006-10-30 Thread Dan O'Keefe
Anyone know where the SWF's from a flash form are stored on the server? Are
they named similar to the template that generated them?

Thanks,

--
Dan O'Keefe


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CF and HL7

2006-10-25 Thread Dan O'Keefe
Is HL7 the XML like messaging interface used in the medical industry?

Dan

On 10/25/06, Brendan Canty [EMAIL PROTECTED] wrote:

 Does anyone know if a vendor that makes an app the generates HL7 messages
 that integrates with CF?

 Brendan Canty
 NorthPoint Domain
 [EMAIL PROTECTED]

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


flash form pop up window from link

2006-10-24 Thread Dan O'Keefe
The following code pops up a window from and HTML href, but when using it in
a flash form using cfformitem type=html it loads in the same window.

cfoutput
 a href=#request.self#?fuseaction=#XFA.popupdetail#id=1
 
onClick=window.open('#request.self#?fuseaction=#XFA.popupdetail#id=1','popupdetail',
'height=600,width=800,resizable=1,scrollbars=1');return false;
 Privacy Policy/a
/cfoutput

has anyone else run into this? Is this a limitation of the flash form?

Thanks,

--
Dan O'Keefe


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: tartan website

2006-10-19 Thread Dan O'Keefe
Just so happens I was doing some searching on CFOOP today and I can get to
the site with this URL

http://www.tartanframework.org/tartan/?

Dan

On 10/19/06, Nick Tong - TalkWebSolutions.co.uk [EMAIL PROTECTED] wrote:

 okay - thanks

 On 19/10/06, Steve LaBadie [EMAIL PROTECTED] wrote:
 
  I get a cfdump
 
  Steve LaBadie, Web Manager
  East Stroudsburg University
  200 Prospect St.
  East Stroudsburg, Pa 18301
  570-422-3999
  [EMAIL PROTECTED]
  http://www.esu.edu
  -Original Message-
  From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED]
  Sent: Thursday, October 19, 2006 8:45 AM
  To: CF-Talk
  Subject: tartan website
 
  Can anyone get on the tartan framework website?
 
  http://www.tartanframework.org/tartan/
 
 
  --
  Nick Tong
 
  web: http://talkwebsolutions.co.uk
  blog: http://succor.co.uk
  short urls: http://wapurl.co.uk
  green link: http://wapurl.co.uk/?4Z2YDLX
 
 
 
 
 

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Scott Keene - cfoop.com

2006-10-19 Thread Dan O'Keefe
Anyone know what happened to Scott Keene and his exception handling
framework we was working on in late 93?

I see it is being used in Tartan, but that is about all I can find.

Thanks,

--
Dan O'Keefe


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Scott Keene - cfoop.com

2006-10-19 Thread Dan O'Keefe
LOL, I meant 2003.

Dan

On 10/19/06, Mike Kear [EMAIL PROTECTED] wrote:

 Late 93? It's probably nearly finished.   Just be patient.

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month




 On 10/20/06, Dan O'Keefe [EMAIL PROTECTED] wrote:
  Anyone know what happened to Scott Keene and his exception handling
  framework we was working on in late 93?
 
  I see it is being used in Tartan, but that is about all I can find.
 
  Thanks,
 
  --
  Dan O'Keefe
 
 

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


UML For Eclipse

2006-10-19 Thread Dan O'Keefe
I think I saw a request for UML for eclipse, not sure if this one got
mentioned:

http://www.gentleware.com/downloadcenter.html

--
Dan O'Keefe


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Web Analytics

2005-12-11 Thread Dan O'Keefe
Did this product become Google Analytics?

Dan

On 2/14/05, Eric Creese [EMAIL PROTECTED] wrote:

 Statistex

 -Original Message-
 From: Burns, John D [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 14, 2005 8:17 AM
 To: CF-Talk
 Subject: RE: Web Analytics


 WebLog Expert isn't too bad.  Gives basic feedback on traffic without
 all the complex options of WebTrends.  Also, only costs about $75.


 John Burns
 Certified Advanced ColdFusion MX Developer
 Wyle Laboratories, Inc. | Web Developer


 -Original Message-
 From: Dwayne Cole [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 07, 2005 6:05 AM
 To: CF-Talk
 Subject: Web Analytics

 Any recommendations on software to help track site visit and performance
 stats.  I know about Web Trends but I was wondering if there others that
 may be better, less expensive, easier to use etc.  I have a co-located
 box and I host 10 sites.  $9,000 is a bit much and even $495 for each
 site (webtrends cost for the software for each domain)is a bit much.
 My small client base like our solution but would also like to have web
 analytics.  I'm looking for a way deliver this what is often a standard
 feature with most host.





 

~|
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:226769
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: OT: Mirra Personal Server for File Backup...

2005-08-30 Thread Dan O'Keefe
Thanks Dan, good info. I agree, the less time spent getting it set up the 
better, and if it provides the peace of mind your environment calls for, 
sounds like a good choice. I have a few more questions but will check out 
the site or email you directly.

Dan

On 8/30/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote:
 
 Dan,
 
 Not me, but I am going to check that out as I have the exact same 
 scenario.
 Will go along good with the easy2sync software I use to keep my outlook
 files syncronized between laptop and desktop.
 
 I've actually got an inquiry in with Mirra asking about the exact 
 technique
 used in the realtime backup/sync process.
 
 I read in one review that the new version uses Windows Shadow Copy as the
 underlying technique for making the realtime backups and syncs (although 
 the
 server itself is Linux based.) This means that when a file changes, only 
 the
 blocks that have changed should be sent to the server--not the entire 
 file.
 However, another review I read said it transfers the entire file (but I
 think they based that on the original version of the servers--which I 
 think
 may have transferred the entire file.)
 
 The only real CON I've seen w/the Mirra product is that it will not backup
 system files like the pagefile.sys, registry, etc. This really doesn't
 bother me all that much, as typically I only care about the data--I can
 always reconfigure my applications in event of a colossal failure.
 
 However, you could always do a backup to disk of your OS files and then
 store that on a drive that Mirra would backup.
 
 Anyway, I'm trying to decide if it make more since to just buy the Mirra
 product, or buy a File Server and configure it to do similar tasks. The
 Mirra solution looks pretty straightforward and simple and I know doing it
 using shareware tools would take some work and time.
 
 -Dan
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216917
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: SQL Enterprise Cost

2005-08-30 Thread Dan O'Keefe
And if you look at the feture set for Standard 2005 compared to standard 
2000, you will see they brought some of the enterprise functionality from 
Enterprise down to standard making it a pretty good deal. Also, MS is going 
to consider a multi core CPU to count as 1 CPU where as oracle considers 
each core to count as .75 and rounds it. Sound 1 dual core will count s 2 
CPU's and 2 dual core's will count as 3. Big bite for the 1st CPU.

Dan

On 8/30/05, Mark A Kruger [EMAIL PROTECTED] wrote:
 
 Lee,
 
 The ability to address more RAM and use more procs - and lots of stuff for
 custering/replicating...
 .. Like guy at the jaguar dealer said - if you have to ask you can't 
 afford
 it (lol).
 
 Still beats the cost for the equivelent Oracle server.
 
 -Mark
 
 
 -Original Message-
 From: Lee [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 30, 2005 1:48 PM
 To: CF-Talk
 Subject: SQL Enterprise Cost
 
 
 What is in SQL Server Enterprise version that would
 justify the 20K or so more in cost?
 
 Lee Surma
 
 
 
 

~|
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:216920
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: changing developer IP addresses

2005-08-30 Thread Dan O'Keefe
I believe it just accepts the first one to hit the server, so if you cycle 
the service it will allow the connection from another IP and lock that one 
in.

Dan

On 8/30/05, Mike Soultanian [EMAIL PROTECTED] wrote:
 
 Does anyone know how to change what IP addresses are allowed to access
 the coldfusion 7 server in developer? There is a doc on Macromedia's
 site but it pertains to 6 and older versions.
 
 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:216922
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: OT: Mirra Personal Server for File Backup...

2005-08-29 Thread Dan O'Keefe
Dan

Not me, but I am going to check that out as I have the exact same scenario. 
Will go along good with the easy2sync software I use to keep my outlook 
files syncronized between laptop and desktop.

Dan

On 8/29/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote:
 
 Has anyone had any experience w/Mirra's line of Personal Servers? This 
 looks
 like an interesting way to keep files backed up and in sync between 
 multiple
 machines.
 
 My IBM laptop just went down again w/another bad mainboard. The Mirra
 products claim to offer the following, which are very appealing features:
 
 * Realtime backup (backs up everytime a file changes)
 * Automatically sync your files across PCs in your network
 * File versioning
 * Secure Web Access to download your files from a remote location
 
 More information here:
 http://www.mirra.com/product/index.html
 
 The realtime backup and synchronization features are extremely appealing 
 to
 me, as I should be able to switch between my PC and laptop more 
 seamlessly.
 I also like the realtime backup (which it claims that a laptop removes 
 from
 the network will be backed up as soon as the personal server becomes
 available.)
 
 Before dropping the $400 bills for this thing, has anyone here used the
 product before?
 
 -Dan
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216728
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: Symantec AntiVirus for Dedicated Web Server...

2005-08-24 Thread Dan O'Keefe
Dan, I think that is correct for Symantec, they really do not sell a
single server license, at least they did not the last time I checked.
You can use Mcafee or the free one at http://www.clamwin.com/.

Dan

On 8/22/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote:
 Anyone know which is the correct license to buy for loading Symantec
 AntiVirus on a dedicated web server? They only sell licenses in packs of 5
 or 10 (depending on the product.) The license, to me, is vague. It says you
 need a license for each computer connecting to the computer via the
 network--but I'm also reading that to be each computer that's connected via
 the domain. I can't find anything about a specific web-based license.
 
 Any ideas? I need to get this AntiVirus software installed ASAP, but need to
 buy the correct license first.
 
 -Dan
 
 
 
 

~|
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:216169
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: Stat app recommendation

2005-08-24 Thread Dan O'Keefe
I would second awStats, especially as a good starting point. Not too
bad to set up and might give you everything you need. You do have to
install Perl though if you are not already running that.

Dan

On 8/18/05, Russ [EMAIL PROTECTED] wrote:
 Awstats is always worth a look... http://awstats.sourceforge.net/  Can't
 beat free...
 
 
 
 -Original Message-
 From: Dawson, Michael [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 18, 2005 4:53 PM
 To: CF-Talk
 Subject: RE: Stat app recommendation
 
 This is an excellent product for only $80.
 
 http://www.weblogexpert.com/
 
 We had WebTrends, but they changed their license scheme from
 server-based, to the number of hits they capture.
 
 This would cost us around $3,500 each year to keep WebTrends.  You have
 to buy a license pack in amounts of 5,000,000 hits or more.
 
 WT also sucked up one of our best servers just to keep it runnnig
 reasonably fast.
 
 We dropped WT like a rock.
 
 M!ke
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216174
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: @@Identity returns excessive records

2005-08-20 Thread Dan O'Keefe
On 8/18/05, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Well, they are unmanageable in the most part - unnecessary.

Respectively disagree. To me it is letting the DB engine do its job
which it is very capaple of.

What specifically do you feel is unmanageable? I agree you have to be
careful if you start chaining them together.

Dan

~|
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:215856
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: @@Identity returns excessive records

2005-08-20 Thread Dan O'Keefe
 Have you tried just doing this
 
 'SELECT @@IDENTITY (or SCOPE_IDENTITY() whichever you prefer) AS ID'
 
 Droping the table name part?
 

Yes, About a dozen or so messages back.

Dan

~|
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:215858
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: @@Identity returns excessive records

2005-08-20 Thread Dan O'Keefe
sorry, just caught up with the rest of this thread, should have let it drop

Dan

On 8/20/05, Dan O'Keefe [EMAIL PROTECTED] wrote:
 On 8/18/05, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
  Well, they are unmanageable in the most part - unnecessary.
 
 Respectively disagree. To me it is letting the DB engine do its job
 which it is very capaple of.
 
 What specifically do you feel is unmanageable? I agree you have to be
 careful if you start chaining them together.
 
 Dan
 


-- 
--
Dan O'Keefe

~|
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:215865
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


@@Identity returns excessive records

2005-08-17 Thread Dan O'Keefe
I have an insert query, select the @@identity, and then insert into
another table. Common scenario, but all of  a sudden, after a dozen or
so iterations, it just starts to die. I found it is dying getting the
identity. When I run it manually in ISQLW, I get the identity key, but
I get the same key in as many rows as there are in the table, which is
295K + rows.

The identity column is my primary key for the table and there are no
triggers on this table. SCOPE_IDENTITY() returns the same results.

Any ideas?
Dan

~|
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:215408
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: @@Identity returns excessive records

2005-08-17 Thread Dan O'Keefe
If I copy and paste my tSQL into query analyzer:

INSERT INTO tblArActivityNote (patientID,UserID,note)
VALUES(238,1,'Letter 2 printed  mailed for DOS(s)' + ' 01/19/04')
go
select @@IDENTITY as ID from tblArActivityNote
go

My PK-IdentityID column in tblAractivityNote is AractivityNoteID. If
the insert created a AractivityNoteID= 295256, the select @@identity
returns 295256 rows with the same value, 295256.

Weird, huh?

On 8/17/05, Mark A Kruger [EMAIL PROTECTED] wrote:
 Dan,
 
 Please explain When I run it manually in ISQLW, I get the identity key, but
 I get the same key in as many rows as there are in the table, which is
 295K + rows.  you mean you get back the same number regardless of the
 number of inserts?
 
 -mark
 
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 17, 2005 8:57 AM
 To: CF-Talk
 Subject: @@Identity returns excessive records
 
 
 I have an insert query, select the @@identity, and then insert into
 another table. Common scenario, but all of  a sudden, after a dozen or
 so iterations, it just starts to die. I found it is dying getting the
 identity. When I run it manually in ISQLW, I get the identity key, but
 I get the same key in as many rows as there are in the table, which is
 295K + rows.
 
 The identity column is my primary key for the table and there are no
 triggers on this table. SCOPE_IDENTITY() returns the same results.
 
 Any ideas?
 Dan
 
 
 
 

~|
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:215411
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: @@Identity returns excessive records

2005-08-17 Thread Dan O'Keefe
I am not using SET NOCOUNT ON/OFF but using it did not make a
difference. Using SCOPE_IDENTITY() ensures your ID is at least in the
same scope, but I get the same results.

Dan

On 8/17/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 I haven't used this method in a long time because now I use UUID()s as my 
 unique record identifier and since I create the UUID before I do the Insert, 
 I have access to it.
 
 I don't have the syntax handy, but are you using the SET NOCOUNT ON and SET 
 NOCOUNT OFF?  That might be it.
 
 FWIW, I have read some research that @@IDENTITY will not always provide you 
 with the proper ID, especially in multi-user environments (which the web most 
 certainly is) and leaves the possibility of returning the wrong IDENTITY id.  
 This is why I switched to using UUID's.
 
 Dave
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 17, 2005 10:12 AM
 To: CF-Talk
 Subject: Re: @@Identity returns excessive records
 
 
 If I copy and paste my tSQL into query analyzer:
 
 INSERT INTO tblArActivityNote (patientID,UserID,note)
 VALUES(238,1,'Letter 2 printed  mailed for DOS(s)' + ' 01/19/04')
 go
 select @@IDENTITY as ID from tblArActivityNote
 go
 
 My PK-IdentityID column in tblAractivityNote is AractivityNoteID. If
 the insert created a AractivityNoteID= 295256, the select @@identity
 returns 295256 rows with the same value, 295256.
 
 Weird, huh?
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215417
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: @@Identity returns excessive records

2005-08-17 Thread Dan O'Keefe
Mark,

That was it. I will have to look at some other places that I do that
becuase I usually specify the table name for readability purposes.

Thanks much,

Dan

On 8/17/05, Mark A Kruger [EMAIL PROTECTED] wrote:
 Dan,
 
 Simple You don't need the from tblArActivtyNote
 
 Change it to this:
 
 INSERT INTO tblArActivityNote (patientID,UserID,note)
 VALUES(238,1,'Letter 2 printed  mailed for DOS(s)' + ' 01/19/04')
 
 SELECT @@IDENTITY as ID
 
 go
 
 
 Your code would be analogous to saying:
 
 select 'Mark' as myName FROM users
 
 Such a query would always return the same number of rows as select * -
 with a single column (myName) populated with Mark.
 
 
 Rember if you are inserting to multiple tables in the same block use the
 scope_identity().
 
 Here's a blog entry with some tips on it.
 
 http://mkruger.cfwebtools.com/index.cfm?mode=aliasalias=identity%20after%20
 insert
 
 
 -Mark
 
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 17, 2005 9:12 AM
 To: CF-Talk
 Subject: Re: @@Identity returns excessive records
 
 
 If I copy and paste my tSQL into query analyzer:
 
 INSERT INTO tblArActivityNote (patientID,UserID,note)
 VALUES(238,1,'Letter 2 printed  mailed for DOS(s)' + ' 01/19/04')
 go
 select @@IDENTITY as ID from tblArActivityNote
 go
 
 My PK-IdentityID column in tblAractivityNote is AractivityNoteID. If
 the insert created a AractivityNoteID= 295256, the select @@identity
 returns 295256 rows with the same value, 295256.
 
 Weird, huh?
 
 On 8/17/05, Mark A Kruger [EMAIL PROTECTED] wrote:
  Dan,
 
  Please explain When I run it manually in ISQLW, I get the identity key,
 but
  I get the same key in as many rows as there are in the table, which is
  295K + rows.  you mean you get back the same number regardless of the
  number of inserts?
 
  -mark
 
 
  -Original Message-
  From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, August 17, 2005 8:57 AM
  To: CF-Talk
  Subject: @@Identity returns excessive records
 
 
  I have an insert query, select the @@identity, and then insert into
  another table. Common scenario, but all of  a sudden, after a dozen or
  so iterations, it just starts to die. I found it is dying getting the
  identity. When I run it manually in ISQLW, I get the identity key, but
  I get the same key in as many rows as there are in the table, which is
  295K + rows.
 
  The identity column is my primary key for the table and there are no
  triggers on this table. SCOPE_IDENTITY() returns the same results.
 
  Any ideas?
  Dan
 
 
 
 
 
 
 
 

~|
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:215430
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: @@Identity returns excessive records

2005-08-17 Thread Dan O'Keefe
From BOL:

@@IDENTITY and SCOPE_IDENTITY will return the last identity value
generated in any table in the current session. However, SCOPE_IDENTITY
returns the value only within the current scope; @@IDENTITY is not
limited to a specific scope.

IDENT_CURRENT is not limited by scope and session; it is limited to a
specified table. IDENT_CURRENT returns the identity value generated
for a specific table in any session and any scope. For more
information, see IDENT_CURRENT.

Dan

On 8/17/05, Calvin Ward [EMAIL PROTECTED] wrote:
 Doesn't @@Identity get you the last ID created regardless of scope or table?
 
 
 -Original Message-
 From: Mark A Kruger [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 17, 2005 10:41 AM
 To: CF-Talk
 Subject: RE: @@Identity returns excessive records
 
 Dan,
 
 Simple You don't need the from tblArActivtyNote
 
 Change it to this:
 
 INSERT INTO tblArActivityNote (patientID,UserID,note) VALUES(238,1,'Letter 2
 printed  mailed for DOS(s)' + ' 01/19/04')
 
 SELECT @@IDENTITY as ID
 
 go
 
 
 Your code would be analogous to saying:
 
 select 'Mark' as myName FROM users
 
 Such a query would always return the same number of rows as select * -
 with a single column (myName) populated with Mark.
 
 
 Rember if you are inserting to multiple tables in the same block use the
 scope_identity().
 
 Here's a blog entry with some tips on it.
 
 http://mkruger.cfwebtools.com/index.cfm?mode=aliasalias=identity%20after%20
 insert
 
 
 -Mark
 
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 17, 2005 9:12 AM
 To: CF-Talk
 Subject: Re: @@Identity returns excessive records
 
 
 If I copy and paste my tSQL into query analyzer:
 
 INSERT INTO tblArActivityNote (patientID,UserID,note) VALUES(238,1,'Letter 2
 printed  mailed for DOS(s)' + ' 01/19/04') go select @@IDENTITY as ID from
 tblArActivityNote go
 
 My PK-IdentityID column in tblAractivityNote is AractivityNoteID. If the
 insert created a AractivityNoteID= 295256, the select @@identity returns
 295256 rows with the same value, 295256.
 
 Weird, huh?
 
 On 8/17/05, Mark A Kruger [EMAIL PROTECTED] wrote:
  Dan,
 
  Please explain When I run it manually in ISQLW, I get the identity
  key,
 but
  I get the same key in as many rows as there are in the table, which is
  295K + rows.  you mean you get back the same number regardless of
  the number of inserts?
 
  -mark
 
 
  -Original Message-
  From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, August 17, 2005 8:57 AM
  To: CF-Talk
  Subject: @@Identity returns excessive records
 
 
  I have an insert query, select the @@identity, and then insert into
  another table. Common scenario, but all of  a sudden, after a dozen or
  so iterations, it just starts to die. I found it is dying getting the
  identity. When I run it manually in ISQLW, I get the identity key, but
  I get the same key in as many rows as there are in the table, which is
  295K + rows.
 
  The identity column is my primary key for the table and there are no
  triggers on this table. SCOPE_IDENTITY() returns the same results.
 
  Any ideas?
  Dan
 
 
 
 
 
 
 
 
 
 

~|
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:215434
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: Looking for very simple CMS

2005-08-10 Thread Dan O'Keefe
That is pretty cool for basic quick and dirty edits. Have you used
this in production anywhere?

Dan

On 8/10/05, Jim Curran [EMAIL PROTECTED] wrote:
 http://www.edit.com
 
 Really, really simple.
 
 - j
 
 -Original Message-
 From: David Adams [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 09, 2005 5:08 PM
 To: CF-Talk
 Subject: Looking for very simple CMS
 
 I am looking for a VERY simple Content Management System written in CF for a
 small community group that has no money but has CF hosting.
 
 Can anyone recommend one or donate some code?
 
 Thanks in advance.
 David Adams
 Ottawa Ontario
 
 
 
 

~|
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:214508
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: OF-Test

2005-08-09 Thread Dan O'Keefe
novato

On 8/5/05, Rey Bango [EMAIL PROTECTED] wrote:
 Welcome back Gabriel. Que lo difrutas!
 
 Rey...
 
 Gabriel Bulfon wrote:
  Hi all guys.  I am back with CF !
 
  regards
 
  Gabriel Bulfon
  Email:[EMAIL PROTECTED]
 
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214123
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: Physical Address Verification.

2005-08-03 Thread Dan O'Keefe
Emmet,

Both of these were 5+ years ago, so take the info with a grain of salt.

I used Group 1 COM objects several years ago to do this:

http://g1.com/Products/DataQuality/InteractiveDemo/

Not sure how they sell them or package them now.

Also, http://www.firstlogic.com/solutions/mailing/default.asp, an XML solution.

Both options = $

Dan

On 8/2/05, Emmet McGovern [EMAIL PROTECTED] wrote:
 Last time I looked into USPS policy it was for parcel shipping only and not
 mail.  This is a catalog company that's trying to limit the amount of return
 postage.  Maybe USPS has changed since then.
 
 -e
 
 -Original Message-
 From: Jim Davis [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 02, 2005 6:20 PM
 To: CF-Talk
 Subject: RE: Physical Address Verification.
 
  -Original Message-
  From: Emmet McGovern [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, August 02, 2005 6:13 PM
  To: CF-Talk
  Subject: Physical Address Verification.
 
  I need a way to verify an address is complete and accurate.  Has anyone
  made
  a physical address verification form before?  I'm currently looking at
  this
  service but didn't know if any others existed out there.
 
  http://www.qas.com/address-search.asp
 
 The US postal service has a Web Service interface for this kind of thing.
 
 We use a MainFrame tool called Trillium which is a bear to work with but
 gives very good results.
 
 Jim Davis
 
 
 
 
 
 
 

~|
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:213573
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: Create SWF from CF

2005-07-29 Thread Dan O'Keefe
Neat tool, too bad it cannot be purchased anymore. That was a year and
a half ago and looks like Jzox has not created any new tools.

Dan

On 7/27/05, James Holmes [EMAIL PROTECTED] wrote:
 Eg:
 
 http://www.jzox.com/products.jsp
 
 

~|
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:213258
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: Dynamic JS tree with AJAX

2005-06-18 Thread Dan O'Keefe
What is Neromancer?

Dan

On 6/18/05, James Holmes [EMAIL PROTECTED] wrote:
 I am going to build a javascript tree that displays data from a DB,
 but I want each tree expansion to be dynamically build from a query to
 the DB. I'm thinking of combining Treeview (http://www.treeview.net/)
 or an equivalent with CFAJAX or Neromancer.
 
 Does anyone have any other ideas or some advice?
 
 --
 Geeque - accept the geek within and get your friends off your back -
 http://www.cafepress.com/geeque/
 
 

~|
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:209908
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: Help with COM

2005-06-13 Thread Dan O'Keefe
From Cybersource when I worked on the interface, a little over a year
ago. I am not familiar with CyberSourceWS. I think I still have the
developer guide I used and I will email to you directly.

Dan

On 6/13/05, Bud [EMAIL PROTECTED] wrote:
 Dan, where did you get the software? The software and documentation I
 got from their developer site shows 3 objects being created. I'm
 trying to convert from ASP examples. There is nothing in the
 documentation showing class Cybersource.ICS.3.
 
 Thanks for your help on this. I'm waiting on a response from their
 support to see if they have some CF stuff that's not documented. I've
 found a cfx_cybersource tag but it doesn't look like it's even been
 tested with CFMX.
 
 1) Create the merchant configuration
 cfobject type=com action=create
 class=CyberSourceWS.MerchantConfig name=oMerchantConfig
 
 2) Create the hashtable with the transaction variables.
 cfobject type=com action=create class=CyberSourceWS.Hashtable
 name=oRequest
 
 3) Create the client and send the request
 cfobject type=com action=create class=CyberSourceWS.Client
 name=oClient
 
 I'm dead in the water on number 2.
 
 Don't think so - I have coded a cybersource interface before and that
 is from my code.
 
 Are you setting properties in the COM object to submit for CC
 verification? Is this your object call?
 
 cfobject  action=create type=com class=Cybersource.ICS.3
 name=oRequest
 
 Dan
 
 On 6/11/05, Bud [EMAIL PROTECTED] wrote:
   Thanks Dan. I think you may have another tag in mind.
 
   Error: Failed attempting to find SETVALUE property/method on the object
 
   Bud,
   
   I think you have to use their SetValue method:
   
   cfset oRequest.SetValue(billTo_firstName, Jane)
   
   Dan
   
   On 6/11/05, Bud [EMAIL PROTECTED] wrote:
 Hi all. I'm trying to use a COM object to connect to CyberSource
 payment gateway. I'm converting their ASP script sample. Here is my
 problem. I'm trying to set a value within the object (oRequest). The
 ASP command for this is as follows.
   
 oRequest.Value(billTo_firstName) = Jane
   
 If I try to use this within cfscript or if I use cfset as follows:
   
 cfset oRequest.Value(billTo_firstName) = Jane  I get the
   following error:
   
 Illegal left hand side of assignment near line 50, column 7. Left
 hand side cannot be a function call.
   
 I've tried everything in my power to get the property set. Nothing
 works. Any clues?
 --
   
 Bud Schneehagen - Tropical Web Creations, Inc.
   
 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Web Based Solutions / eCommerce Development  Hosting
 http://www.twcreations.com/ - http://www.cf-ezcart.com/
 Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968
   
   
   
   
 
 
 
 
 
 

~|
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:209271
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: Help with COM

2005-06-13 Thread Dan O'Keefe
ah, WS is web service and I used the SCMP API.

On 6/13/05, Bud [EMAIL PROTECTED] wrote:
 From Cybersource when I worked on the interface, a little over a year
 ago. I am not familiar with CyberSourceWS. I think I still have the
 developer guide I used and I will email to you directly.
 
 Thanks Dan.
 
 Dan
 
 On 6/13/05, Bud [EMAIL PROTECTED] wrote:
   Dan, where did you get the software? The software and documentation I
   got from their developer site shows 3 objects being created. I'm
   trying to convert from ASP examples. There is nothing in the
   documentation showing class Cybersource.ICS.3.
 
   Thanks for your help on this. I'm waiting on a response from their
   support to see if they have some CF stuff that's not documented. I've
   found a cfx_cybersource tag but it doesn't look like it's even been
   tested with CFMX.
 
   1) Create the merchant configuration
   cfobject type=com action=create
   class=CyberSourceWS.MerchantConfig name=oMerchantConfig
 
   2) Create the hashtable with the transaction variables.
   cfobject type=com action=create class=CyberSourceWS.Hashtable
   name=oRequest
 
   3) Create the client and send the request
   cfobject type=com action=create class=CyberSourceWS.Client
   name=oClient
 
   I'm dead in the water on number 2.
 
   Don't think so - I have coded a cybersource interface before and that
   is from my code.
   
   Are you setting properties in the COM object to submit for CC
   verification? Is this your object call?
   
   cfobject  action=create type=com class=Cybersource.ICS.3
   name=oRequest
   
   Dan
   
   On 6/11/05, Bud [EMAIL PROTECTED] wrote:
 Thanks Dan. I think you may have another tag in mind.
   
 Error: Failed attempting to find SETVALUE property/method on
 the object
   
 Bud,
 
 I think you have to use their SetValue method:
 
 cfset oRequest.SetValue(billTo_firstName, Jane)
 
 Dan
 
 On 6/11/05, Bud [EMAIL PROTECTED] wrote:
   Hi all. I'm trying to use a COM object to connect to CyberSource
   payment gateway. I'm converting their ASP script sample. Here is 
  my
   problem. I'm trying to set a value within the object (oRequest). 
  The
   ASP command for this is as follows.
 
   oRequest.Value(billTo_firstName) = Jane
 
   If I try to use this within cfscript or if I use cfset as follows:
 
   cfset oRequest.Value(billTo_firstName) = Jane  I get the
 following error:
 
   Illegal left hand side of assignment near line 50, column 7. Left
   hand side cannot be a function call.
 
   I've tried everything in my power to get the property set. Nothing
   works. Any clues?
   --
 
   Bud Schneehagen - Tropical Web Creations, Inc.
 
   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
   Web Based Solutions / eCommerce Development  Hosting
   http://www.twcreations.com/ - http://www.cf-ezcart.com/
   Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968
 
 
 
 
   
   
   
   
 
 
 
 
 
 

~|
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:209274
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: Help with COM

2005-06-12 Thread Dan O'Keefe
Don't think so - I have coded a cybersource interface before and that
is from my code.

Are you setting properties in the COM object to submit for CC
verification? Is this your object call?

cfobject  action=create type=com class=Cybersource.ICS.3 
name=oRequest

Dan

On 6/11/05, Bud [EMAIL PROTECTED] wrote:
 Thanks Dan. I think you may have another tag in mind.
 
 Error: Failed attempting to find SETVALUE property/method on the object
 
 Bud,
 
 I think you have to use their SetValue method:
 
 cfset oRequest.SetValue(billTo_firstName, Jane)
 
 Dan
 
 On 6/11/05, Bud [EMAIL PROTECTED] wrote:
   Hi all. I'm trying to use a COM object to connect to CyberSource
   payment gateway. I'm converting their ASP script sample. Here is my
   problem. I'm trying to set a value within the object (oRequest). The
   ASP command for this is as follows.
 
   oRequest.Value(billTo_firstName) = Jane
 
   If I try to use this within cfscript or if I use cfset as follows:
 
   cfset oRequest.Value(billTo_firstName) = Jane  I get the
 following error:
 
   Illegal left hand side of assignment near line 50, column 7. Left
   hand side cannot be a function call.
 
   I've tried everything in my power to get the property set. Nothing
   works. Any clues?
   --
 
   Bud Schneehagen - Tropical Web Creations, Inc.
 
   _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
   Web Based Solutions / eCommerce Development  Hosting
   http://www.twcreations.com/ - http://www.cf-ezcart.com/
   Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968
 
 
 
 
 
 

~|
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:209250
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: Help with COM

2005-06-11 Thread Dan O'Keefe
Bud,

I think you have to use their SetValue method:

cfset oRequest.SetValue(billTo_firstName, Jane)

Dan

On 6/11/05, Bud [EMAIL PROTECTED] wrote:
 Hi all. I'm trying to use a COM object to connect to CyberSource
 payment gateway. I'm converting their ASP script sample. Here is my
 problem. I'm trying to set a value within the object (oRequest). The
 ASP command for this is as follows.
 
 oRequest.Value(billTo_firstName) = Jane
 
 If I try to use this within cfscript or if I use cfset as follows:
 
 cfset oRequest.Value(billTo_firstName) = Jane  I get the following 
 error:
 
 Illegal left hand side of assignment near line 50, column 7. Left
 hand side cannot be a function call.
 
 I've tried everything in my power to get the property set. Nothing
 works. Any clues?
 --
 
 Bud Schneehagen - Tropical Web Creations, Inc.
 
 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Web Based Solutions / eCommerce Development  Hosting
 http://www.twcreations.com/ - http://www.cf-ezcart.com/
 Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209233
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: OT - CF varible use in an online editor

2005-06-08 Thread Dan O'Keefe
Andy,

I think we are close. Yes, I use FCKEditor for creating the document
and inserting my placemarkers, similar to how you would set up the doc
in Word for a mail merge. Now if users are going to create your
documents, you would have to supply them a list of placemarkers that
can be used, and upon saving the content of the editor, validate all
placemarkers that are contained within the ^$^.^$^

Also, if you are cutting and pasting from Word, I think you will get a
lot of MS crap in there. I always save my word doc to plain text
first, and then paste from there. Ends up being very clean and
formatting is not a problem.

Dan


On 6/8/05, Andy Mcshane [EMAIL PROTECTED] wrote:
 Dan, am I correct in thinking that you use a web based editor for doing mail 
 merges? I am trying to find an acceptable solution for allowing users to 
 create documents on line that can be used in an online mail merge i.e. create 
 a word document, cut  paste into text editor, insert coldfusion tags for 
 data, but I cannot seem to control the formatting, does your approach cover 
 anything like this or have I completely misunderstood your reply?
 
 
 
 
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Tue 07/06/2005 22:02
 To: CF-Talk
 Subject: Re: CF varible use in an online editor
 
 
 
 I do it for a mail merge application, and use placemarkers in the
 test, such as ^$^firstname^$^ and ^$^lastname^$^. The you can pull the
 content from the DB and synamically replace the placemarkers with your
 data. Is that what you are looking for?
 
 Dan
 
 On 6/2/05, Doug Bedient [EMAIL PROTECTED] wrote:
  This may be obvious but is there a way to use CF variables in a web based 
  editor?
 
  Thanks for any help.
 
 
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208933
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: CF varible use in an online editor

2005-06-07 Thread Dan O'Keefe
I do it for a mail merge application, and use placemarkers in the
test, such as ^$^firstname^$^ and ^$^lastname^$^. The you can pull the
content from the DB and synamically replace the placemarkers with your
data. Is that what you are looking for?

Dan

On 6/2/05, Doug Bedient [EMAIL PROTECTED] wrote:
 This may be obvious but is there a way to use CF variables in a web based 
 editor?
 
 Thanks for any help.
 
 

~|
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:208874
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: Storyboard Tool

2005-06-07 Thread Dan O'Keefe
Damien,

In what ways? Can you be more specific if you remember?

Thanks,

Dan

On 6/3/05, Damien McKenna [EMAIL PROTECTED] wrote:
  For very simple storyboarding nothing beats demin
 
 I used this last year on a small project or two but found it very akward
 and limiting.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 
 
 

~|
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:208878
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: Finding all matching strings in a text dump

2005-06-07 Thread Dan O'Keefe
I second the recomendation - awesome tag.

Dan

On 6/6/05, Claude Schneegans [EMAIL PROTECTED] wrote:
 This is a perfect job for CF_REextract.
 See
 http://www.contentbox.com/claude/customtags/REextract/testingREextract.cfm
 enter RE1 = ERROR[0-9]* * value=
 RE2 =  *
 SAMPLETEXT = input type=hidden name=ERROR5 value=Incorrect credit card
 number 
 and se the result.
 
 See the docs about the tag here:
 http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm?p=hf
 Get the tag here:
 http://www.cftagstore.com/?page=viewtagtagId=96
 
 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.
 
 
 

~|
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:208883
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: Upgrade or Hold on CFMX 7 Standard?

2005-04-08 Thread Dan O'Keefe
yeah. rookie

On Apr 8, 2005 1:12 PM, Rey Bango [EMAIL PROTECTED] wrote:
 Great feedback. Anymore comments?
 
 Rey...
 
 

~|
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:202030
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


OT: JS-selecting range of checkboxes

2005-03-06 Thread Dan O'Keefe
Any other mailers here, like the abilty to select a range of
checkboxes by holding down the shift key.

Any one know how to do that with javascript?
 

Dan O'Keefe

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197609
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: ArgoUML and CFC's

2005-02-28 Thread Dan O'Keefe
I had someone who was helping me out with this by using an XSL
stylesheet on the XMI file. I will see if I can find that and I will
let you know.

Dan


On Wed, 9 Feb 2005 17:10:53 -0500, Hassan Arteaga Rodriguez
[EMAIL PROTECTED] wrote:
 Thanks Sean..
 Exactly,  I tried  to export to XMI file and run  xmi.cfm file  (with
 cfcBuilder.cfc) I found with google but didn't work
 
 regards
 
 
 __
 M.Sc. Hassan Arteaga Rodríguez
 Microsoft Certified System Engineer
 IT Specialist
 DIGI Grupo de Desarrollo. COPEXTEL, S.A.
 
 Este email y sus adjuntos está dirigido solamente a los destinatarios
 consignados en el mismo y debe ser considerado confidencial. Si Ud. no es el
 destinatario consignado o la persona responsable de entregar/enviar el
 presente, no podrá copiarlo o entregarlo/enviarlo a ninguna otra persona ni
 utilizar el mismo en forma no autorizada. Dichas acciones están prohibidas y
 pueden ser consideradas ilegales. Si Ud. recibiese este email por error, por
 favor comuníquelo de inmediato al emisor del mismo.
 
 -Original Message-
 From: Sean Corfield [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, February 09, 2005 3:55 PM
 To: CF-Talk
 Subject: Re: ArgoUML and CFC's
 
 On Wed, 9 Feb 2005 13:29:51 -0500, Hassan Arteaga Rodriguez
 [EMAIL PROTECTED] wrote:
  I downloaded ArgoUML to create Class Diagram...I'd like to generate
  ArgoUML Class Diagram to CFC.
 
 There are no UML - CFC tools on the market right now. You *might* be able
 to save your UML as XMI and use an XMI - CFC converter. There was a
 prototype version of one of those floating around somewhere (but it didn't
 work with any of the XMI formats I tried so YMMV). Google is your friend so
 start there - I don't have more precise details.
 --
 Sean A Corfield -- http://www.corfield.org/ Team Fusebox --
 http://www.fusebox.org/ Breeze Me! -- http://www.corfield.org/breezeme Got
 Gmail? -- I have 50, yes 50, invites to give away!
 
 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwood
 
 

~|
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:196853
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: Looking for a good web based html editor

2005-02-27 Thread Dan O'Keefe
 As for the second issue, this occurs when you use the advanced view and
 click the HTML button?

Correct, but what are you telling me? Is this normal behaviour? What
service is it referring to.

Dan

~|
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:196722
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: Looking for a good web based html editor

2005-02-26 Thread Dan O'Keefe
For the tinyMCE users here, a couple of questions if I could. I am
trying this product after using fckEditor for a while. I have 2 issues
keeping me from implementing it right now. The first being there are
not negative font sizes, like size -1, size -2, etc. The size 1
content when sent to a word doc becomes size 12 and I need to make it
smaller. The second issue is when I try to view the HTML I get a An
error occurred while attempting to establish a connection to the
service. error in the pop-up window.

Thanks,

Dan


On Mon, 21 Feb 2005 09:03:02 -0600, Kevin Graeme
[EMAIL PROTECTED] wrote:
 I recently mentioned it in a room with a product team from a big software
 company. I said it with a straight face and there was a flurry of flickering
 glances as they looked at each other to figure out if I actually said what
 they thought I said.
 
 From intial testing, it looks like the code generated by TinyMCE works
 better for us.
 
 -Kevin
 
 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: Saturday, February 19, 2005 8:19 AM
 To: CF-Talk
 Subject: Re: Looking for a good web based html editor
 
 As stated previously, I don't like the name! I like not having to curse when
 talking about my editors!
 
 :)
 
 Will
 
 

~|
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:196670
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: MX CHR(10)

2005-02-22 Thread Dan O'Keefe
Bingo Dave, that was it. On CF5 and previous version, if memory serves
me correctly, if you used both 10  13, it created an additional line,
and now it works properly. I think the order has to be 13 first and
then 10.

cfset br = #chr(13)##chr(10)#

Thanks much. After upgrading a client, all of my text files that
scheduled scripts create were broken.

Dan


On Mon, 21 Feb 2005 19:05:50 -0500, Dave Watts [EMAIL PROTECTED] wrote:
  This one is driving me nuts and I have seen the same results
  on a  few different MX installations now. Anyone know the URL
  to report a bug to Macromedia I cant' believe no one else has
  run into this. It happens on a couple different scripts of
  mine, re-producible on a few different MX installations.
 
 If you're writing files on a Windows platform, you should use carriage
 return and line feed, not just line feed. If you were able to just use line
 feed before, but can't now, I would think that a bug had been fixed.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 
 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!
 
 

~|
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:196000
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: MX CHR(10)

2005-02-22 Thread Dan O'Keefe
Chris,

Based on the findings from Dave's post, I think you would be right. Do
you know of any binary file viewing tools? I know Norton Utilities had
one a long time ago, but not sure of current options. I could google
it but if you have experience with any, let me know.

Dan


On Tue, 22 Feb 2005 12:09:57 +1100, Chris Velevitch
[EMAIL PROTECTED] wrote:
 Look more closely at the output of CF 5 with a binary file viewing
 tool. Check to see if for every chr(10) there's also a chr(13) before
 or after the chr(10). Then do the same for the MX output. I'm guessing
 CF 5 is automatically outputting a chr(13) with every chr(10) whereas
 MX is not.
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196001
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: MX CHR(10)

2005-02-21 Thread Dan O'Keefe
This one is driving me nuts and I have seen the same results on a  few
different MX installations now. Anyone know the URL to report a bug to
Macromedia I cant' believe no one else has run into this. It happens
on a couple different scripts of mine, re-producible on a few
different MX installations.

Dan


On Tue, 1 Feb 2005 11:17:44 -0600, Tony Hicks [EMAIL PROTECTED] wrote:
 That could be an ASCII/BINARY problem with notepad.
 
 As for your chr() problem itself.. have you tried changing your carriage 
 return?
 
 There's #chr(13)# or #chr(13)##chr(10)# or the solid 
  (entering a return yourself).
 
 
 On Tue, 1 Feb 2005 09:30:44 -0500, Dan O'Keefe [EMAIL PROTECTED] wrote:
  Has anyone noticed a difference in the way this function works in MX?
  I upgraded a CF 5 server to MX and now my text files that I have
  always written out with chr(10) are not formatted properly and a
  control code is visible when viewing the file in notepad.
 
  Dan
 
 
 
 

~|
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:195828
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


parsing control characters

2005-02-18 Thread Dan O'Keefe
I have a need to take a scrape of a web page, parse it, and regenerate
it at a later time. I have run into an issue where control characters
such as a right single quote mark #146, since it is already parsed by
the browser for display, when you do view source and save it to a
file, the location where the control character is shows some garbage
in IE, and display the actual character that would be in the browser
in Firefox.

Anybody know a way to ahndle this?

Dan

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195369
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: cfset ?

2005-02-04 Thread Dan O'Keefe
No, I used this address. Will send it right now with the subject RE_Extract.

Dan


On Thu, 03 Feb 2005 23:07:29 -0500, Claude Schneegans
[EMAIL PROTECTED] wrote:
  Did your email address change? I sent a couple emails about
 RE_extract with no reply.
 
 No, it didn't.
 I changed my message reading soft however, (Thunderbird), and it has a spam 
 filter.
 I check it every time it sends something to the thrash however, and I never 
 saw something
 about RE_extract of course.
 
 I hope you did not use [EMAIL PROTECTED] it is only a spam trap ;-)
 
 Can you try again ?
 
 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.
 
 

~|
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:193105
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: recover lost code

2005-02-03 Thread Dan O'Keefe
Interesting, I'll have a look - I re-wrote it already.

This will retrieve it even If I overwrote the file with a blank file?

Dan


On Wed, 2 Feb 2005 23:08:01 -0500, Ewok [EMAIL PROTECTED] wrote:
 I replied earlier but never saw it come through but for what it's worth,
 here it is again.
 
  If it's important enough, slave the drive to another machine
  and run GetDataBack on it. I'm sure there are other apps
  out there that can do the same thing but that's the one I use
  and it hasn't let me down yet.
 
  It should pull it back for you (along with a ton of stuff you
  thought was LNG gone from many formats ago)
 
  http://www.runtime.org/gdb.htm
 
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, February 02, 2005 9:33 AM
 To: CF-Talk
 Subject: recover lost code
 
 Accidentally overwrote a CFML file, and before I could get to the
 backup file, it had backed up new file, so I am looking to see if
 there is another way to recover the code. I have searched the contents
 of the Documents and Settings directory hoping I could find a .tmp
 file or cache file;e but no luck.
 
 Any idea if the CF server might have it cached somewhere? I searched
 the content of that directory for some keywords to no avail.
 
 Dan
 
 

~|
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:192899
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: recover lost code

2005-02-03 Thread Dan O'Keefe
Wow, interesting again. Not 2003, but if it was, would it have a compy
of the unparsed uncompiled CFML file?

Dan


On Wed, 2 Feb 2005 23:32:57 -0600, Russell Patterson [EMAIL PROTECTED] wrote:
 I also replied earlier but did not see it go out on the list.
 
 If you have Windows 2003, and have access to the server, you should also
 look into Volume Shadow Copy.  It is very nice, with it you can revert back
 to different versions.
 
 http://www.windowsnetworking.com/articles_tutorials/Windows-Server-2003-Volume-Shadow-Copy-Service.html
 
 Russell
 
 - Original Message -
 From: Bryan Stevenson [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Wednesday, February 02, 2005 10:06 AM
 Subject: Re: recover lost code
 
  You may be able to find the compiled version if you're on MX...but not
  sure
  that will do you any good.
 
  Most likely it's time to strat typing AND get a decent backup system in
  place ;-)
 
  Good luck
 
  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
  - Original Message -
  From: Dan O'Keefe [EMAIL PROTECTED]
  To: CF-Talk cf-talk@houseoffusion.com
  Sent: Wednesday, February 02, 2005 6:32 AM
  Subject: recover lost code
 
 
  Accidentally overwrote a CFML file, and before I could get to the
  backup file, it had backed up new file, so I am looking to see if
  there is another way to recover the code. I have searched the contents
  of the Documents and Settings directory hoping I could find a .tmp
  file or cache file;e but no luck.
 
  Any idea if the CF server might have it cached somewhere? I searched
  the content of that directory for some keywords to no avail.
 
  Dan
 
 
 
 
 
 

~|
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:192901
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: recover lost code

2005-02-03 Thread Dan O'Keefe
OK, you answered the question I just replied back to you. Thanks for the tip.

Dan


On Thu, 3 Feb 2005 08:18:26 -0500, Ewok [EMAIL PROTECTED] wrote:
 Of course that's pretty useless help unless the original file is gone
 completely, not just opened and saved with different content (which is what
 appears to be the case). Sorry.
 
 But hey... if you DELETE the file, you're all set with getdataback :)
 
 -Original Message-
 From: Ewok [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, February 02, 2005 11:08 PM
 To: CF-Talk
 Subject: RE: recover lost code
 
 I replied earlier but never saw it come through but for what it's worth,
 here it is again.
 
  If it's important enough, slave the drive to another machine
  and run GetDataBack on it. I'm sure there are other apps
  out there that can do the same thing but that's the one I use
  and it hasn't let me down yet.
 
  It should pull it back for you (along with a ton of stuff you
  thought was LNG gone from many formats ago)
 
  http://www.runtime.org/gdb.htm
 
 -Original Message-
 From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, February 02, 2005 9:33 AM
 To: CF-Talk
 Subject: recover lost code
 
 Accidentally overwrote a CFML file, and before I could get to the
 backup file, it had backed up new file, so I am looking to see if
 there is another way to recover the code. I have searched the contents
 of the Documents and Settings directory hoping I could find a .tmp
 file or cache file;e but no luck.
 
 Any idea if the CF server might have it cached somewhere? I searched
 the content of that directory for some keywords to no avail.
 
 Dan
 
 

~|
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:192903
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


stings with both singl double quotes

2005-02-03 Thread Dan O'Keefe
Is there A way to store the following string in a variable?

a href=javascript:document.forms[1].submit(); border=0
onclick='goneaway=false;img
src=/store/images/button_complete.gif width=250 height=31 alt=
border=0/a

Since it has both single and double quotes, I have been unable to find
a way to get it in a var.

The reson is I am dynamically  replacing markup on pages and spitting them out.

Dan

~|
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:192963
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


  1   2   3   4   >