Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Rey Bango
Dave, What are your best practices for setting up CF? What perms do you assign? What groups do you assign the user which CF runs under to? Rey... Dave Watts wrote: Are you talking about permissions here? Disk permissions or some type of IIS permissions? In any case, if you are running

Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Rey Bango
To further your post Mark, I've included some links regarding PCI compliance: http://usa.visa.com/download/business/accepting_visa/support_center/cisp_overview.pdf?it=c|/business/accepting_visa/ops_risk_management/cisp%2Ehtml|CISP%20Overview

Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Jochem van Dieten
Rey Bango wrote: Virus protection on web servers, though, is a grey area because the subject is mentioned in broad terms and doesn't specifically say web servers. The PCI standard can be read here: https://sdp.mastercardintl.com/pdf/pcd_manual.pdf The relevant quote from page 8:

RE: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Russ Michaels
Run it as a user, give that user access only to CF and any other paths you need, such as system temp folder. Each web site runs under it's own user account, that has access only to it's own folder plus required system folders. Russ -Original Message- From: Rey Bango [mailto:[EMAIL

creating war ear files programatically

2005-08-23 Thread Simon Smith
Hi all, Is it possilbe to createa a war / ear file using coldfusion ? I'd like an application to create a back up of itself before updates ? ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: HTTPWatch: Was webservices and XML

2005-08-23 Thread Stephen Moretti
I couldn't find a tool that does exactly the same thing but this one comes close in FireFox: http://livehttpheaders.mozdev.org/ I don't it'll help in this case since it doesn't actually show the content of the page! This one seems closer and is a machine level tool rather than a browser tool

RE: creating war ear files programatically

2005-08-23 Thread RADEMAKERS Tanguy
Hello, WAR/EAR files are just zip archives with special layout (like the have a META-INF directory with some xml files, etc). I'd suggest dissecting an existing one and then trial... and error... and trial... ;) best of luck! /t -Original Message- Subject: creating war ear files

Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Gunjan Varshney
Hello, I am quite new to coldfusion. I am facing problem in retrieving resultsets returend by the cursor. Since I do not know number of resultsets returned, I am not able to define cfprocresult tags in cfstoredproc. cfquery returns only the first resultset. Please I need help. I have defined my

RE: Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Robertson-Ravo, Neil (RX)
Gunjan, You are not using a cursor in the way it was intended. You can achieve what you want here by grouping I believe. A cursor is a record based processing type it is not designed to retrieve records over and over again to display. -Original Message- From: Gunjan Varshney

RE: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Dave Watts
What are your best practices for setting up CF? What perms do you assign? What groups do you assign the user which CF runs under to? The answer to the first question would be a bit lengthy. However, as to the specific user account I run CF in, it's typically a local user within no existing

Re: Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Gunjan Varshney
In the while group,actually, I have to use many more select statementsthe main number(@mno) is changing and the other queries are related to this numbersince I did not want to call multiple queries from coldfusion I used cursor. On 8/23/05, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]

RE: Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Robertson-Ravo, Neil (RX)
Again, this is not the use of a cursor - why don't you bring back two result sets and use CF Query of Queries to get the data you want. -Original Message- From: Gunjan Varshney [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 12:39 To: CF-Talk Subject: Re: Calling cursor in MS SQL sever

SPAM by forcing data into a form

2005-08-23 Thread chad gray
I have not kept up on the latest forms of spam delivery, but i got a bunch of messages in my inbox this morning where somone was systematically pasting the below code into each field of a form that uses CFMail to send an email. I am wondering if this is a way that spammers send mail? Is

RE: SPAM by forcing data into a form

2005-08-23 Thread Paul Vernon
We had about 20 of these this morning on one clients site. Possibly there is an undisclosed as yet vulnerability in CF mail... I'm going to check to see if any of the addresses in the form subs actually make it to an SMTP server. I thought it may have been just a prank but now someone else has

RE: SPAM by forcing data into a form

2005-08-23 Thread Paul Vernon
We had about 20 of these this morning on one clients site. Possibly there is an undisclosed as yet vulnerability in CF mail... I'm going to check to see if any of the addresses in the form subs actually make it to an SMTP server. I thought it may have been just a prank but now someone else has

RE: cfmail optional attributes

2005-08-23 Thread Dave.Phillips
If that doesn't work, maybe someone knows a way to get the default mail server value from the server using Java? If so, then you could do this: CFSET variables.defaultserver = some java code to get it cfmail to=someone from=someoneelse

RE: What does Wait() do?

2005-08-23 Thread Dave.Phillips
Thanks for the thoughts...I was just curious. :) Dave -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 4:18 PM To: CF-Talk Subject: RE: What does Wait() do? Hi, I had already tried executing it to find out, I get this error when I

RE: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Dan G. Switzer, II
Just as an FYI, I finally was able to talk to a Symantec rep about licensing. Per Symantec, even using their Symantec Web Security v3.0 AntiVirus solution, you need a license for *each* workstation that will connect to the server. I tried to get clarification on what a workstation was (and told

Re: Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Gunjan Varshney
Thanks Neil. I would try it. Can you tell me if efficiency is affected in both manners? I had thought since processing is done on SQL server(in case of cursor), efficiency would increase. Again, this is not the use of a cursor - why don't you bring back two result sets and use CF Query of

RE: Calling cursor in MS SQL sever from coldfusion

2005-08-23 Thread Robertson-Ravo, Neil (RX)
On the contrary - Cursors are well known as being performance degraders - it is best, wherever possible to use SET based processing rather than ROW. -Original Message- From: Gunjan Varshney [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 14:09 To: CF-Talk Subject: Re: Calling cursor in

RE: What does Wait() do?

2005-08-23 Thread Gaulin, Mark
wait() is a java method of the Object class, and is used with the notify() method. It's part of java's synchronization system, and is definitely not like sleeping. Here are the javadocs for Object: http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html Mark -Original

folder query to XML?

2005-08-23 Thread Paul Hastings
i am so XML challanged, can one of your XML guri send me in the right direction? i have a query of folders (folder name, number of items, parent folder) that i push into cftree (after re-sorting it via the QofQ below). works fine. but i need to update the cftree via remoting which wants XML.

Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Rey Bango
Hi Jochem. I definitely see and understand your rationale. I actually had to rethink some stuff because of your orginal post. Thats why I made the comment that its a grey area. They made the statement about AV very broad, perhaps even intentionally. We use RackSpace and I know that its part

cfapplication

2005-08-23 Thread Daniel Kessler
I'm pretty new at cfapplication and I'm just figuring some things out. I have a domain with an Application.cfm file that contains: cfapplication sessionmanagement=yes setclientcookies=yes name=hhp sessiontimeout=#CreateTimeSpan(0,0,30,0)# I also have several applications within that domain.

RE: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Mark A Kruger
Jochem, Yes - I agree it's a grey area. But if your auditor is agressive he may insist on it. As I said in my original post, I agree with those who find virus software on a web serve an intrusive and unnecessary complication. I was only pointing out a fly in the ointment. In our case we install

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Fabio Terracini
Personally, I don't think storing CC numbers are a good idea. You can encrypt/decrypt data in between envoirments if they use the same algorithm. Checkout CF documentations to see avaiable algorithms. Also, if it's possible by your functional needs (not on the CC case, probably), one-way

RE: cfapplication

2005-08-23 Thread Mark A Kruger
Daniel, the name of the application will tie it to the session. If you name them all different then new sessions are created when the user enters the new application - unless of course you include the old application template and overwrite the name. I have a blog on the name attribute of the

DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Andy Mcshane
Can anybody help me, I am at breaking point here. I know now that Live Docs state that CFDOCUMENT does not support embedding SWF files as it cannot render them but I am desperately hoping that someone may have found a clever way to get way around this or anybody know how to output a SWF as an

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Ken Ferguson
Yeah, storing the CC numbers is a scary thing to do. You open yourselves up to a tremendous amount of liability. If you do decide to do it though, you might find or write an executable that will (en)(de)crypt your strings, then you could call it from .NET apps and CF apps as needed. This

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Dave.Phillips
Andy, I did some googling and I found this for you: http://flirt.sourceforge.net/example.html First paragraph on this page says Here I'll step through the test.c example code that's in the root of the Flirt source. It's a simple command-line app that takes an SWF file name for an argument,

fusebox security plugin

2005-08-23 Thread wolf2k5
Hi, I am looking for a sample security plugin for Fusebox 4.1. Do you know any? Also, is it possible to use CF security framework (cflogin, IsUserInRole, etc.) with Fusebox? If so, how? Thanks. ~| Find out how CFTicket can

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Seth Bienek
CFMX 7 comes with a TON of new features in the encryption/decryption department, via the encrypt() and decrypt() functions: http://livedocs.macromedia.com/coldfusion/7/htmldocs/0457.htm encrypt() and decrypt() now support AES, DES, DESEDE and Blowfish algorithms, in addition to

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Andy McShane
Thanks for the reply Dave. The flash file that I have is a standard SWF file i.e. not generated by Coldfusion. The SWF's are populated dynamically at runtime and it is this image that I need to print. I will look at the link that you have suggested but that may well be out of my league. Thanks

Calling one CFC method from another?

2005-08-23 Thread Pete Ruckelshaus
I hope this is a basic question. Let's say I have a CFC that does all of my email-related functions. One of those methods (for example, insertEmail) needs to call another method (for example, checkEmail) that is part of the same CFC. For instance: CFCOMPONENT CFFUNCTION NAME = CHECKEMAIL

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Mark A Kruger
Andy, Wether you use CF or ASP.NET, I doubt you will solve this issue without some solution like the one that Dave suggested. -mark -Original Message- From: Andy McShane [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 9:11 AM To: CF-Talk Subject: RE: DESPERATE!!! Any way to

Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-23 Thread Rey Bango
Thanks for the feedback Dave Russ. Its always good to get a different view of how people are handling their security. Rey... -- http://www.ReyBango.com ~| Logware (www.logware.us): a new and convenient web-based time

Re: Calling one CFC method from another?

2005-08-23 Thread Michael Dinowitz
My PERSONAL preferences is that if the method being calling has 0 or 1 argument, then use a function call such as othermethod(). If it has 1 or more arguments, then use a cfinvoke method=othermethod. DO NOT USE a component argument in an internal CFINVOKE as it will invoke a new instance of the

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Merrill, Jason
Check out Ming (PHP). This can create .swfs on the fly. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: Andy Mcshane [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 9:50 AM To: CF-Talk Subject: DESPERATE!!! Any way to embed SWF

SOLVED was (Re: cfchart issues... (sub domain))

2005-08-23 Thread Tony
posted the fix on my blog: http://www.revolutionwebdesign.com/blog/index.cfm?mode=entryentry=E390C892-932C-9C00-4318AE7B30BE50F1 for the wrap impaired: http://www.antiwrap.com/?686 :) thanks all for the help you posted. tony On 8/22/05, Tony [EMAIL PROTECTED] wrote: update on this.

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Mark A Kruger
Jason, He's already creating them on the fly. His problem is embedding them in a PDF file. -mark -Original Message- From: Merrill, Jason [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 9:37 AM To: CF-Talk Subject: RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT

RE: Need to share encryption between CF and ASP environments

2005-08-23 Thread Kerry
one-way encrypts (hashs) are more secure Not disagreeing, but just so you know, I downloaded a small exe yesterday that cracked an MD5 hash in 3.5 minutes, using my old 2Ghz workstation. -Original Message- From: Fabio Terracini [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 14:45 To:

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Andy McShane
Yes, creating them is fine, embedding them is the problem. Thank you for your reply though Jason. -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 15:39 To: CF-Talk Subject: RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY

Help!!! I must be missing something.

2005-08-23 Thread David Brown
I am running CF 7 mx hotfix 3. We are using a flash form with a cfgrid on it. After submit goes to the action page where I call a cfc that is stored in the server scope. The cfc runs fine without any errors. But it does not update the database or insert new data. The datasource is right

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUS LY CFDOCUMENT ERROR)

2005-08-23 Thread Robertson-Ravo, Neil (RX)
Wasn't this covered yesterday and the answer was - you cant. -Original Message- From: Andy McShane [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 15:44 To: CF-Talk Subject: RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR) Yes, creating them is

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Kevin Aebig
Depending how you'd like to do this, you could: - have an automated process print out the Flash file to PostScript, than merge the 2 together. - use flirt and than embed the images - hack away at CFDocument yourself until you get it in there - Or use a swf to pdf converter and than merge after

Re: Help!!! I must be missing something.

2005-08-23 Thread Rey Bango
Dawn, Make sure the table has insert perms set. Rey.. -- http://www.ReyBango.com ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: .NET suggestions

2005-08-23 Thread Marlon Moyer
Maybe you need to forward this Dilbert cartoon to the CTO http://www.dilbert.com/comics/dilbert/archive/dilbert-20050823.html Marlon On 8/20/05, Rey Bango [EMAIL PROTECTED] wrote: Tom, If your CTO is dead set on not using CFML and you need to get knee deep in ASP.Net, then I suggest

Re: .NET suggestions

2005-08-23 Thread Tom McNeer
On 8/23/05, Marlon Moyer [EMAIL PROTECTED] wrote: Maybe you need to forward this Dilbert cartoon to the CTO On the other hand, maybe I'd like to keep the account. ;-) -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 530 Means St NW, Suite 110 Atlanta, GA 30318 404.589.0560

RE: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-23 Thread Andy McShane
Thanks Kevin, I like the idea of the swf to pdf converter, do you know of such a tool? I think I may also have to have a closer at flirt also. I am afraid that your first suggestion does not really mean anything to me, how would you print out the flash to file to postscript? -Original

Re: .NET suggestions

2005-08-23 Thread Robyn
I completely second the recommendation for the C# books by Jesse Liberty. And if you ever get a chance to see him speak, do it. He is very articulate and bright and conveys information well. Robyn Here are two books I have and recommend (both by Jesse Liberty): Learning C#

Re: folder query to XML?

2005-08-23 Thread Larry Lyons
i am so XML challanged, can one of your XML guri send me in the right direction? i have a query of folders (folder name, number of items, parent folder) that i push into cftree (after re-sorting it via the QofQ below). works fine. but i need to update the cftree via remoting which wants XML.

Re: SOLVED: Re: webservices and XML

2005-08-23 Thread Bryan Stevenson
From: Russ Michaels [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, August 22, 2005 4:46 PM Subject: RE: SOLVED: Re: webservices and XML Kinda crap tho that it doesn't do it if you call it via CF, what if you want it as XML? Yep...sometimes CF is too smart for it's own

Re: cfapplication

2005-08-23 Thread S . Isaac Dealey
Couple of quick answers: 1) The cfapplication tag doesn't have anything to do with the template Application.cfm in spite of the fact that it's usually found in this template. The reason it's usually there is more a matter of convenience than anything else -- it's easier to declare the application

Re: Stat app recommendation

2005-08-23 Thread Dimo Michailov
Why not Webalizer - it's free, quite easy to set-up, fast, and does most of what Webtrends et al do - http://www.webalizer.com/ D. On 8/18/05, Steve Kahn [EMAIL PROTECTED] wrote: Need to buy a stat app any recommendations? Thanks

Re: Stat app recommendation

2005-08-23 Thread Robert Munn
I'll second Webalizer. For log stats, it's great. Why not Webalizer - it's free, quite easy to set-up, fast, and does most of what Webtrends et al do - http://www.webalizer.com/ D. On 8/18/05, Steve Kahn [EMAIL PROTECTED] wrote: Need to buy a stat app any recommendations? Thanks

Re: fusebox security plugin

2005-08-23 Thread Brian Kotek
There is a simple security plugin within the Let's Make a Deal sample application in the download section at Fusebox.org http://Fusebox.org. I believe it uses list-based security, but yes it is possible to modify the plugin or write your own that will use the cflogin security framework.

Re: Stat app recommendation

2005-08-23 Thread Rey Bango
Last I checked, it seemed like it only worked on *nix OSes. Does it work on Windows as well? Rey... Robert Munn wrote: I'll second Webalizer. For log stats, it's great. Why not Webalizer - it's free, quite easy to set-up, fast, and does most of what Webtrends et al do -

Re: Help!!! I must be missing something.

2005-08-23 Thread David Brown
I fixed the problem. I had the cfinvoke between cftransaction There was a sql error that was not showing up. - Original Message - From: David Brown [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, August 23, 2005 10:42 AM Subject: Help!!! I must be missing

Re: GoogleBot and URLSessionFormat...

2005-08-23 Thread Matt Robertson
I can tell you how to figure out if a robot is visiting your site, but as to how to keep your app from crashing if a bot shows up... thats up to you depending on the details of your app. If I recall correctly from your other thread, each and every visitor to your site winds up getting a fairly

Re: Stat app recommendation

2005-08-23 Thread Ken Ferguson
Sure it does. Rey Bango wrote: Last I checked, it seemed like it only worked on *nix OSes. Does it work on Windows as well? Rey... Robert Munn wrote: I'll second Webalizer. For log stats, it's great. Why not Webalizer - it's free, quite easy to set-up, fast, and does most of

Re: boolean cfsqltype

2005-08-23 Thread Barney Boisvert
Did you try cf_sql_bit or cf_sql_integer? Not boolean, I know, but those seem like they'd have a better chance of working right than a CHAR value (which presumably CF uses as a default for unknown types, rather than erroring). cheers, barneyb On 8/23/05, Deanna Schneider [EMAIL PROTECTED]

RE: boolean cfsqltype

2005-08-23 Thread Mark A Kruger
Deanna, Try a CF_SQL_BIT and pass 0 or 1. -Mark -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 12:42 PM To: CF-Talk Subject: boolean cfsqltype So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored

Re: boolean cfsqltype

2005-08-23 Thread S . Isaac Dealey
See if cf_sql_bit works. So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored procedures. If you use it, though, it doesn't fail to compile, and it converts it to a cf_sql_char. But, with my stored proc in Oracle 10g - it's not going in as a boolean. (I

Re: boolean cfsqltype

2005-08-23 Thread Deanna Schneider
Both bit and integer fail as well. I hard-coded a 1 in there, just so I was sure I was sending a 1 or 0. No go. On 8/23/05, Barney Boisvert [EMAIL PROTECTED] wrote: Did you try cf_sql_bit or cf_sql_integer? Not boolean, I know, but those seem like they'd have a better chance of working right

Re: Calling one CFC method from another?

2005-08-23 Thread Tyler Fitch
Pete, As an alternative, we never use CFINVOKE. (But if we did use CFINVOKE, we'd only use CFINVOKE). In order to keep code consistent we always call the functions in the same manner wether it has 0 or 10 arguments. If we have more than 2 or 3 arguments start using whitespace to your

Re: boolean cfsqltype

2005-08-23 Thread Jochem van Dieten
Deanna Schneider wrote: Both bit and integer fail as well. I hard-coded a 1 in there, just so I was sure I was sending a 1 or 0. No go. Try no type and value TRUE. Jochem ~| Logware (www.logware.us): a new and convenient

Re: Calling one CFC method from another?

2005-08-23 Thread Michael Dinowitz
Pete's example of a multi-argument function call syntax is a clean one but one that few people use. Most of the time they do something like this: var isValidEmail = checkEmail([EMAIL PROTECTED],secondArg,more than 2 args); which is perfectly legal, but far from informative. If you are going to

Dynamic cfc function call

2005-08-23 Thread Chris Terrebonne
I am attempting to dynamically call a cfc's functions without resorting to evaluate, but something isn't working correctly. I have read in the archive that you can assign a function to a var, then call the var as a method but this doesn't appear to be working with setters in a cfc. Take the

Re: boolean cfsqltype

2005-08-23 Thread Deanna Schneider
Nope. Again it defaults it to char if you use no type. Dang - this is an annoying lack of functionality. On 8/23/05, Jochem van Dieten [EMAIL PROTECTED] wrote: Deanna Schneider wrote: Both bit and integer fail as well. I hard-coded a 1 in there, just so I was sure I was sending a 1 or 0. No

Re: Dynamic cfc function call

2005-08-23 Thread Barney Boisvert
Yes, you're exactly right. When you pull a method out of a CFC, it's no longer part of the CFC. In your setter, you're setting variables.XXX, which outside a CFC, is part of the page's variables scope. When you call the extracted getter, it uses the page's variable scope as well, so it works as

Re: Calling one CFC method from another?

2005-08-23 Thread Bryan Stevenson
So you can name your args ina function styled call? I never knew that and don't use the function style call because the function arg order could change and then you'd be passes args in the wrong orderbut if they are named that would be great!! I thought you could only use this:

Re: Calling one CFC method from another?

2005-08-23 Thread Barney Boisvert
Yep, you can certainly do that. You can also do myFunction(argumentCollection = myArgStruct), with similar effect. cheers, barneyb On 8/23/05, Bryan Stevenson [EMAIL PROTECTED] wrote: So you can name your args ina function styled call? I never knew that and don't use the function style call

Re: Calling one CFC method from another?

2005-08-23 Thread Barney Boisvert
You can do with CFSCRIPT-declared functions too. On 8/23/05, Deanna Schneider [EMAIL PROTECTED] wrote: You can certainly do it if you're using cffunction... to create your function. I don't think it's the case when you're using cfscript. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145

Re: Dynamic cfc function call

2005-08-23 Thread Chris Terrebonne
That sounds like it would work. Thanks! Chris [EMAIL PROTECTED] 08/23/05 01:18PM Yes, you're exactly right. When you pull a method out of a CFC, it's no longer part of the CFC. In your setter, you're setting variables.XXX, which outside a CFC, is part of the page's variables scope. When

Re: Calling one CFC method from another?

2005-08-23 Thread Bryan Stevenson
Thanks BarneyI've learned my new thing for the day...I can go home now ;-) 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:

boolean cfsqltype

2005-08-23 Thread Deanna Schneider
So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored procedures. If you use it, though, it doesn't fail to compile, and it converts it to a cf_sql_char. But, with my stored proc in Oracle 10g - it's not going in as a boolean. (I get the error about wrong number

Re: Calling one CFC method from another?

2005-08-23 Thread Deanna Schneider
You can certainly do it if you're using cffunction... to create your function. I don't think it's the case when you're using cfscript. On 8/23/05, Bryan Stevenson [EMAIL PROTECTED] wrote: So you can name your args ina function styled call? I never knew that and don't use the function style

Setting up a cluster

2005-08-23 Thread Dustin Snell [Network Automation]
Hi all, We are wanting to set up a cluster for failover purposes. Would like to do this with 2 servers. Does anyone have suggestions for how to do this or know of a good introductory article? I only have experience setting up ColdFusion in a single server environment. -Dustin Snell

Re: fusebox security plugin

2005-08-23 Thread Sean Corfield
On 8/23/05, wolf2k5 [EMAIL PROTECTED] wrote: I am looking for a sample security plugin for Fusebox 4.1. Do you know any? Sandy Clark will be releasing one at the frameworks conference. Also, is it possible to use CF security framework (cflogin, IsUserInRole, etc.) with Fusebox? If so, how?

Re: folder query to XML?

2005-08-23 Thread Paul Hastings
Larry Lyons wrote: Paul, You could try converting the query to XML using Nathan Dintenfass's QueryToXML udf, http://www.cflib.org/udf.cfm/querytoxml. thanks but that's the first place i checked actually. it's not the conversion to XML that's my problem it's the structure that cftree will

DAO, Gateway, and Manager model for Fusebox and Mach-II

2005-08-23 Thread wolf2k5
Hi, I am looking at the sample Fusebox 4.1 OOP application and I am bit confused about the DAO, Gateway, and Manager model. Can anyone quicky explain what is it and/or point me in the right direction? Is the same model applicable to Mach-II? Thanks a lot.

RE: Setting up a cluster

2005-08-23 Thread Russ
There's an article on Macromedia about doing it using NLB http://www.macromedia.com/devnet/coldfusion/articles/nlb_failover.html The preferred way of course is to use a hardware load balancer, and I would recommend not doing failover, but load balancing with failover, so that you are not

Re: DAO, Gateway, and Manager model for Fusebox and Mach-II

2005-08-23 Thread wolf2k5
On 8/23/05, wolf2k5 wrote: I am looking at the sample Fusebox 4.1 OOP application and I am bit confused about the DAO, Gateway, and Manager model. Also, is it the same as the DAO, Bean and Gateway model? I found a CFC generator for such model, starting from the db tables:

Re: folder query to XML?

2005-08-23 Thread Anthony Prato
can you sort your query by the depth? thats the easiest way because you can just loop over the query adding a node at a time. (group by parentFolder order by depth) When you order by depth you don't need to worry if the parrent exists in the XML DOM yet because the parent will always apear before

cfgrid update using cfquery

2005-08-23 Thread David Brown
We are using Flash forms with a cfgrid on it. The grid is in edit mode. I have my cfc working now and I am able to update/delete/insert based on the cfgridname.rowstatus.action[counter] value. But I have found an error or bug not sure. I bring up the grid with data from a query 2 rows.

Re: Calling one CFC method from another?

2005-08-23 Thread [EMAIL PROTECTED]
Also be careful if your to-be-called function has access=private, because then doThat() will work as expected, but this.doThat() will not. just another feature of the this scope :) Original Message: - From: Bryan Stevenson [EMAIL PROTECTED] Date: Tue, 23 Aug 2005 11:38:50

Re: fusebox security plugin

2005-08-23 Thread [EMAIL PROTECTED]
as well as TheOffice which shows a more advanced example Original Message: - From: Brian Kotek [EMAIL PROTECTED] Date: Tue, 23 Aug 2005 12:27:44 -0400 To: cf-talk@houseoffusion.com Subject: Re: fusebox security plugin There is a simple security plugin within the Let's Make a

Re: boolean cfsqltype

2005-08-23 Thread Eddie Awad
On 8/23/05, Deanna Schneider [EMAIL PROTECTED] wrote: So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored procedures. If you use it, though, it doesn't fail to compile, and it converts it to a cf_sql_char. But, with my stored proc in Oracle 10g - it's not

Re: folder query to XML?

2005-08-23 Thread Paul Hastings
Anthony Prato wrote: can you sort your query by the depth? thats the easiest way because you can just loop over the query adding a node at a time. (group by parentFolder order by depth) When you order by depth you don't need to worry if the parrent exists in the XML DOM yet because the parent

Sending email

2005-08-23 Thread Hassan Arteaga
Hi all: I have this simple code to send email.. MailMessage Message = new MailMessage(); Message.To = toEmail; Message.From = fromEmail; Message.Subject = subjectEmail; Message.BodyFormat=MailFormat.Html; Message.Body = bodyemail; SmtpMail.SmtpServer=SMTPServer; SmtpMail.Send(Message);

Sorry for my previous email

2005-08-23 Thread Hassan Arteaga
Sorry !! I made a mistake sending email to the wrong list... __ 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

Re: boolean cfsqltype

2005-08-23 Thread Deanna Schneider
Yah, I changed it to number and used 1/0. But, I'm still annoyed. :P On 8/23/05, Eddie Awad [EMAIL PROTECTED] wrote: On 8/23/05, Deanna Schneider [EMAIL PROTECTED] wrote: So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored procedures. If you use it,

Re: folder query to XML?

2005-08-23 Thread Eddie Awad
On 8/23/05, Paul Hastings [EMAIL PROTECTED] wrote: well i think i can figure depth from the folder's full name (INBOX.test.testDir, counting the number of folder separators in the name) so this looks close. thanks i'll give it a whirl. If you use Oracle DB then you can use the LEVEL, CONNECT

Re: folder query to XML?

2005-08-23 Thread Paul Hastings
Eddie Awad wrote: If you use Oracle DB then you can use the LEVEL, CONNECT BY and START actually this stuff is flying out of an IMAP server via javamail, no slick db tricks here ;-) ~| Find out how CFTicket can increase your

RE: Stat app recommendation

2005-08-23 Thread Russ
How does it compare with urchin? Besides being free of course? -Original Message- From: Robert Munn [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 23, 2005 12:25 PM To: CF-Talk Subject: Re: Stat app recommendation I'll second Webalizer. For log stats, it's great. Why not Webalizer

Need help to open a door!

2005-08-23 Thread Catherine Madsen
Hi, I'm creating a CF application that needs to interact with a component board to open a door. The board we have came with SoftWire, a VB plug in. Is it possible to use VB.Net framework components with CF or create COM objects from those components? And if yes, how is it done? I'm pretty

Re: boolean cfsqltype

2005-08-23 Thread S . Isaac Dealey
On 8/23/05, Deanna Schneider [EMAIL PROTECTED] wrote: So, I just noticed that there isn't a documented cf_sql_boolean type for use with stored procedures. If you use it, though, it doesn't fail to compile, and it converts it to a cf_sql_char. But, with my stored proc in Oracle 10g - it's

Re: boolean cfsqltype

2005-08-23 Thread Jochem van Dieten
Eddie Awad wrote: Oracle's PL/SQL Boolean data type does not have an equivalent in ColdFusion, I think this may be because Boolean is not a native SQL data type. Boolean is a native SQL datatype. Strangely enough it is not a JDBC datatype though. Jochem

CF and blogging API

2005-08-23 Thread Andrea Veggiani
Hi all, i'm currently trying to implement blogger and metaweblog API support in my blog application; i'm actually using the invaluable xmlrpc.cfc component from Agincourt Media and it works fine. only that it seems that any client application has different ways of doing the same things :(

Re: boolean cfsqltype

2005-08-23 Thread Eddie Awad
On 8/23/05, Jochem van Dieten [EMAIL PROTECTED] wrote: Boolean is a native SQL datatype. In Oracle, Boolean is not a native SQL datatype. It is a PL/SQL datatype. In other words, you cannot create a database table having a column with a boolean datatype: H:\SQLplussqlplus scott/tiger SQL*Plus:

  1   2   >