Re: Stopping Vacation Messages on BCC'd emails

2008-07-07 Thread Kamru Miah
Hi Dan, I don't deal with the email server side of things, but my friendly system admin told me that we use the open source vacation mail responder, which parses the message header and blocks any email that has 'Precedence: bulk' in it, before passing the message to the email server. I believe

could not create java virtual machine

2008-07-07 Thread Russ Michaels
I have installed flex 3 builder numerous times, but it will not run giving the above error, any idea why ? I also do not have any option during installation to install it as an eclipse plugin rather than standalone, how do I get this option ?

Re: Stopping Vacation Messages on BCC'd emails

2008-07-07 Thread Mike Kear
Those out of office messages are a real menace.I once worked for a company where the customer service dept worked mon-fri 8.30-5pm and near the end of Friday afternoon a customer service person sent a message to a customer, set his out of office message, then flipped his computer off and

RE: Installing Open BD and CF8 on the same machine?

2008-07-07 Thread Andy Matthews
Oooh... I suppose I could use Railo...I'd have to test my code out to make sure it all ran fine (same with OBD too I suppose). Thanks for the input guys. andy -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Sunday, July 06, 2008 9:06 PM To: CF-Talk Subject: Re:

RE: Just a little cfcase tip...

2008-07-07 Thread Rick Faircloth
I'm glad I could help. :o) Rick -Original Message- From: Jessica Kennedy [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 12:38 AM To: CF-Talk Subject: Re: Just a little cfcase tip... well.. I feel marginally less stupid now =)

Re: CF 7 and mySql connection proble

2008-07-07 Thread Joe Rinehart
That sounds like you've got a connection / driver in place properly, but the database/schema you're referencing (MyDataSource) doesn't exist, or the user you're connecting as doesn't have rights to it. Given that you're connecting as root, I'd doubt it's the latter. If you start up MySQL

Re: CF8 on SLES 10.2 - where is an updated glibc ?

2008-07-07 Thread Tom Chiverton
On Friday 04 Jul 2008, James Holmes wrote: Well, hypothetically, if I were in the beta I'd have seen that it was already reported and that Adobe were aware of it since then and I'd be under an NDA to prevent me from discussing it. Hypothetically, if I'd discovered the problem on the beta and

Re: Where Do You Put Your Error Checking Code?

2008-07-07 Thread Tom Chiverton
On Friday 27 Jun 2008, Ian Rutherford wrote: So for the most part you would keep your business logic out of the database and take care of that in CFCS / cfm / ajax logic before hand? Yup, with the note that business rules should never be solely in the client, because the client can't be

The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Phillip Vector
I have the following code.. cfinvoke component=FHCcfc.Queries method=CheckPassword returnvariable=Check/cfinvoke in the cfc, I have.. cffunction name=CheckPassword returntype=query cfstoredproc procedure=CheckPassword dataSource=FoodHandlerCard

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Charlie Griefer
On Mon, Jul 7, 2008 at 9:57 AM, Phillip Vector [EMAIL PROTECTED] wrote: I have the following code.. cfinvoke component=FHCcfc.Queries method=CheckPassword returnvariable=Check/cfinvoke in the cfc, I have.. cffunction name=CheckPassword returntype=query cfstoredproc

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Phillip Vector
Doesn't the cfprocresult name=Check in the cfstoredproc handle the returning of the information? Can I safely get rid of that then? On Mon, Jul 7, 2008 at 10:02 AM, Charlie Griefer [EMAIL PROTECTED] wrote: On Mon, Jul 7, 2008 at 9:57 AM, Phillip Vector [EMAIL PROTECTED] wrote: I have the

RE: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Brad Wood
No, that line of code simply creates a variable which contains the result set returned from the proc. In order to actually return that variable, you need to use cfreturn You can create infinite variables of any given type in a method, but the one you wish to return to the caller needs to be

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Phillip Vector
Ok.. Thanks. :) On Mon, Jul 7, 2008 at 10:13 AM, Brad Wood [EMAIL PROTECTED] wrote: No, that line of code simply creates a variable which contains the result set returned from the proc. In order to actually return that variable, you need to use cfreturn You can create infinite variables of

Paypal Sandbox server bogus?

2008-07-07 Thread Claude Schneegans
Hi, Anyone here has an application using Paypal? I'm new to this so I don't know if the problem is with me or with Paypal: I'm testing payments through the sandbox IPN server. Last Friday, it worked fine, bit since this morning, I do not receive any notify_url call back on my server. Apparently

The Woes of CFThread

2008-07-07 Thread Ian Skinner
Is anybody using cfthread... functionality? Is it working well for you? I have been fighting for most of a month with cfthread... functionality and it is driving me batty. Run the application one time and it does all the processing, but does not output the results. Run it a second time and

Is there a way to do this?

2008-07-07 Thread Rick Faircloth
Hi, all... I'm using a dynamically populated select (multiple) allowing users to select one or more cities for which they'd like to view properties. When the form which contains the form is submitted, it submits back to the same page it's on. What I'd like to have happen in the select is for

Re: Is there a way to do this?

2008-07-07 Thread Charlie Griefer
something like: select name=city option value=#cityID#cfif form.city is cityID selected=selected/cfif#city#/option /select you'll probably have to throw a cfparam name=form.city default= / out there for the initial form display. getting the 2nd select to display the appropriate cities will

Re: Is there a way to do this?

2008-07-07 Thread Brian Kotek
This can be done using JavaScript. You can Google for form manipulation code or check out something like jQuery which would make resorting or modifying the select box quite simple and wouldn't require a request to the server. On Mon, Jul 7, 2008 at 2:24 PM, Rick Faircloth [EMAIL PROTECTED] wrote:

Sybase 10

2008-07-07 Thread Duane Boudreau
Hi All, Can anyone give me some pointers on how to connect CF7 to a Sybase database? I can't seem to find anything online that gives a step by step. TIA, DUANE BOUDREAU | SANDY BAY NETWORKS PRESIDENT AND CHIEF TECHNOLOGY OFFICER P: 902.232.2345 x222 | P: 603.879.0249 x222 | F:

RE: Is there a way to do this?

2008-07-07 Thread Rick Faircloth
Thanks for the replies, Charlie and Brian... Actually, I should have been more clear. I've got this code working, which re-selects all of the selected citis: cfoutput query=get_cities cfif (isDefined(form.fieldnames) and isDefined(session.city) and session.city contains #city#) or

Re: Is there a way to do this?

2008-07-07 Thread Ian Skinner
Rick Faircloth wrote: Thanks for the replies, Charlie and Brian... Actually, I should have been more clear. I've got this code working, which re-selects all of the selected citis: cfoutput query=get_cities cfif (isDefined(form.fieldnames) and isDefined(session.city) and

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Phillip Vector
Well.. Wait... cfinvoke component=FHCcfc.Queries method=CreateUser returnvariable=CreateUser/cfinvoke cffunction name=CreateUser returntype=query cfstoredproc procedure=CreateUser dataSource=FoodHandlerCard cfprocparam type=IN

RE: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Brad Wood
Your problem is your CFFUNCTION specifies the returntype attribute. When you do that you are telling ColdFusion to expect the function to return something-- and more specifically, to expect a particular type of variable to be returned. If you have a method which does not return any information to

Re: Is there a way to do this?

2008-07-07 Thread Greg Morphis
You could do something like (not tested) select distinct city, orderby from ( select city, 2 as orderby from table where city foo_city union select city, 1 as orderby from table where city = foo_city ) order by orderby, city that would tack the prior cities onto the end On Mon, Jul 7, 2008 at

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Charlie Griefer
if i'm understanding what you're asking... a cffunction doesn't have to return a value. just set the returntype=void and omit a cfreturn / value. however, sometimes on things like inserts/updates, it's advisable to return a boolean based on whether or not the insert/update succeeded (using

Re: The value returned from the CheckPassword function is not of type query.

2008-07-07 Thread Phillip Vector
*slaps his hand to his head* Thanks. On Mon, Jul 7, 2008 at 12:34 PM, Charlie Griefer [EMAIL PROTECTED] wrote: if i'm understanding what you're asking... a cffunction doesn't have to return a value. just set the returntype=void and omit a cfreturn / value. however, sometimes on things like

Re: The Woes of CFThread

2008-07-07 Thread Raymond Camden
On Mon, Jul 7, 2008 at 1:06 PM, Ian Skinner [EMAIL PROTECTED] wrote: Is anybody using cfthread... functionality? Is it working well for you? Yep. I have been fighting for most of a month with cfthread... functionality and it is driving me batty. cfthread is a VERY powerful tool. It also

RE: Is there a way to do this?

2008-07-07 Thread Rick Faircloth
Well... the cities that populate the multiple select are returned by a query that provides each distinct city name. So the cities are not in the db, and all I have to work with is the name of the city, itself. I could pull the selected cities out of the order and place them on top of the list,

ONE Ring to Rule them all

2008-07-07 Thread Colman, Richard
I maintain 6 - 9 similar CF websites spread across three different Windows and Linux servers. Maintaining the Application.cfm files is turning into a big pain. Is there any practical way to use ONE Application.CFM file in ONE place for all of these sites? Rick Colman

RE: Sybase 10

2008-07-07 Thread Billy Cox
Look for an ODBC driver for Sybase 10. It might require installing some sort of Sybase client software on the web server too. This seems to be the lot in life for databases operating off of the beaten path. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED] Sent:

RE: ONE Ring to Rule them all

2008-07-07 Thread Andy Matthews
Not if you're on different servers. -Original Message- From: Colman, Richard [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 2:51 PM To: CF-Talk Subject: ONE Ring to Rule them all I maintain 6 - 9 similar CF websites spread across three different Windows and Linux servers.

Re: ONE Ring to Rule them all

2008-07-07 Thread Barney Boisvert
Use version control and an automated deployment framework. You still have 6-9 copies (can't share across servers), but you can manage them as one. cheers, barneyb On Mon, Jul 7, 2008 at 12:50 PM, Colman, Richard [EMAIL PROTECTED] wrote: I maintain 6 - 9 similar CF websites spread across three

Re: ONE Ring to Rule them all

2008-07-07 Thread Claude Schneegans
Is there any practical way to use ONE Application.CFM file in ONE place for all of these sites? For all my sites, I have a virtual directory on the same common directory. Then for all sites, /common/... refers to the same directory on the server. In particular, all my Application.cfm start with:

Re: ONE Ring to Rule them all

2008-07-07 Thread Qing Xia
One way to do that is to put store your application variables in your SQL database (or whatever database you use). That way, in your appication.cfm / application.cfc files, you can do a query to pull out the values for various application variables such as file_upload_path, application_home,

Hosting Announcement

2008-07-07 Thread William Seiter
http://www.dailyrazor.com Daily Razor is having a HUGE sale today (July 7). Whatever plan you choose, you will get 4X the value!! Want a plan that can host 32 websites, choose the starter plan and the 8 domains becomes 32 domains. I am not affiliated with them (just a customer), so I wouldn't

RE: Sybase 10

2008-07-07 Thread sstwebworks
ColdFusion MX has a Sybase driver, however if it's a new verison of Sybase (haven't done anything with it in a few years), there should be a new JDBC driver for it, you can point to the new driver in the advanced-- connection string properties when you set up the datasource. --

flex2gateway Error

2008-07-07 Thread Sherif Abdou
I have been trying to fix this error for almost 12 hours, now the problem is everything works fine on my own computer but when I move it to a live server i get Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: 'http://mysitename.com/flex2gateway/cfamfpolling'. Now when

Re: The Woes of CFThread

2008-07-07 Thread Ian Skinner
Raymond Camden wrote: That is expected. The output is stored in the thread scope for the thread itself. If you use the JOIN action (Which basically means, wait for these threads to end), you can get the output and look at it. This should be documented. (And let me add - be sure you have read

RE: Is there a way to do this?

2008-07-07 Thread Rick Faircloth
Whoa, that's a dandy little query! I see you've got from table... the cities are pulled from a properties table via select distinct city from properties I guess I could use a QoQ in place of the table as the datasource. However, you mentioned that your query would tack the prior cities onto the

Re: Is there a way to do this?

2008-07-07 Thread Ian Skinner
Rick Faircloth wrote: I want the cities to stay in the same order as the query delivers them, but with the first selected city on the top. It would be nice if there were some attribute of the select option, like option value=#city# selected top#city#/option so I could have that option with

Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread C. Hatton Humphrey
(Cross-posting from CF-Community, sorry if you get this twice) I'm starting to do some disk based programming work and have hit an interesting roadblock. We've (my bosses, actually) want to use .NET for the disk based apps, but now that I have VS 2008 I'm presented with WinForms or WPF. From

Re: Is there a way to do this?

2008-07-07 Thread Greg Morphis
You could cfparam name=form.city default=0 / select distinct city from properties where lower(city) != '#lcase(form.city)#' -- USE CFQUERYPARAM :) then select name=city multiple=true size=5 option value=0 cfif form.city eq 0selected/cfif -- select a city --/option cfoutput query=cities

Re: The Woes of CFThread

2008-07-07 Thread Raymond Camden
So then look in your code thats running in the thread. Is there something there that can hang? Do you have a deadlock of some sort? On Mon, Jul 7, 2008 at 3:21 PM, Ian Skinner [EMAIL PROTECTED] wrote: Raymond Camden wrote: That is expected. The output is stored in the thread scope for the

RE: Is there a way to do this?

2008-07-07 Thread Rick Faircloth
Thanks for that code, Greg. While you were working on that, I came up with this: select name=city multiple size=9 class=textinput01 cfif isDefined(form.fieldnames) and isDefined(session.city) cfloop index=city

Re: Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread Nathan Strutz
I've played with it just a bit. It can drop out some fairly nice interfaces and the XML is pretty well structured in the way that everything seems to make sense and skill translation from HTML+CSS is not that difficult. I decided not to use it, however, as the thing I was playing with is a wide

Re: could not create java virtual machine

2008-07-07 Thread Mark Mandel
Russ, do you have Java installed? Mark On Mon, Jul 7, 2008 at 9:11 PM, Russ Michaels [EMAIL PROTECTED] wrote: I have installed flex 3 builder numerous times, but it will not run giving the above error, any idea why ? I also do not have any option during installation to install it as an

RE: Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread Kevin Aebig
Without more information on the type of application you're planning, my suggestion would be to if at all possible keep everything in the family in either case. I'm sure some of the hardcore guys here will jump all over me, but if you're going to have a .Net frontend, than it would be a lot

RE: flex2gateway Error

2008-07-07 Thread Kevin Aebig
Coldfusion gateway error. You shouldn't be getting a 404. !k -Original Message- From: Sherif Abdou [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 2:20 PM To: CF-Talk Subject: flex2gateway Error I have been trying to fix this error for almost 12 hours, now the problem is

Re: Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread Mike Chabot
WFP is the future and is where MS is focusing their development efforts. WFP is highly regarded by those that are using it, except it has a high learning curve and WPF projects often require a professional graphic designer on the project. The WPF Unleashed book gets rave reviews as a good way to

Looking for Accomodations Software

2008-07-07 Thread Dave Long
I'm looking for a software package that will function with MySQL4.0 DB on a ColdFusion5.0 server. It would have to allow multiple accounts with user maintenance of pics of resorts' and/or hotel/motels' units, rates, and have some sort of calendar to show lodging availability of individual account

Re: Coldfusion restarting itself

2008-07-07 Thread Rick Root
Bad news! The server, running in interpreted mode, was much more reliable but the CPU usage remained quite high. The machine has two 3.0ghz dual core CPUs. Now that the load is picking up ... the server can't keep up and the requests pile up and then CF crashes hard. I removed the jvm -Xint

RE: Coldfusion restarting itself

2008-07-07 Thread Brad Wood
What does a stack trace look like when things start getting busy? How many requests a minute are you serving at peak usage? ~Brad -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 5:50 PM To: CF-Talk Subject: Re: Coldfusion restarting itself Bad

Re: Coldfusion restarting itself

2008-07-07 Thread Mark Mandel
Rick - Random idea, you don't have anything that is causing some code to go into an infinite loop under high load? Just figuring if you're hitting high load, and then getting multiple loops, it would cause the server to crash. Just an idea. Mark On Tue, Jul 8, 2008 at 8:49 AM, Rick Root

RE: Coldfusion restarting itself

2008-07-07 Thread Brad Wood
Also, did you get a chance to give the 1.5 JDK a whirl like James suggested? ~Brad -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, July 05, 2008 1:45 AM To: CF-Talk Subject: Re: Coldfusion restarting itself The only other suggestion I have is to try the

Re: The Woes of CFThread

2008-07-07 Thread s. isaac dealey
So then look in your code thats running in the thread. Is there something there that can hang? Do you have a deadlock of some sort? I was thinking about that and knowing that he said the threads were writing files I was wondering about the number of threads he's spawning, the number of files

Re: Coldfusion restarting itself

2008-07-07 Thread Rick Root
What does a stack trace look like when things start getting busy? Nothing particularly unusual, just a lot of request activity. WE monitor with Fusion Reactor, and I don't see anything unusual in terms of the activity OTHER Than when I disabled hot spot compilation, the CPU usage increased

Re: Coldfusion restarting itself

2008-07-07 Thread James Holmes
While Java 6 is the default, it breaks CF in a few respects: 1) The Java 6 classloader bug mans that it loads classes much slower than Java 1.5; a real problems for frameworks like Model-Glue etc. 2) JRun's internal webserver SSL doesn't work with Java 6. 3) It appears the hotspot compiler

Re: Coldfusion restarting itself

2008-07-07 Thread Rick Root
was switching to the 1.5 JDK difficult? Rick On Mon, Jul 7, 2008 at 9:44 PM, James Holmes [EMAIL PROTECTED] wrote: While Java 6 is the default, it breaks CF in a few respects: 1) The Java 6 classloader bug mans that it loads classes much slower than Java 1.5; a real problems for frameworks

Re: undefined value error... weird...

2008-07-07 Thread Will Tomlinson
ok... hopefully no one else will encounter this error, but I found a forum that is discussing this issue... the problem isn't in the code but in the way coldfusion 8 is connecting to mysql 5 db... here is the link for those interested:

Re: Anyone played with WPF (Windows Presentation Framework)?

2008-07-07 Thread C. Hatton Humphrey
When you say disk based - you mean like System.IO file directory interaction? If that's the case, I highly recommend .NET. It tends to be remarkably fast in this category. I guess I could have been a little less vague on the projects - We have two systems that we use for our in-house

Re: Coldfusion restarting itself

2008-07-07 Thread Rick Root
Alright, I just downgraded to JVM 1.5_15 I re-enabled hotspot compilation (removed the -Xint arg) Had to delete all the existing class files in the cfclasses directory (prsumably because they were compiled under java 6)... *EXACT* same behavior. Actually worse. With hotspot compiling enabled

Re: Coldfusion restarting itself

2008-07-07 Thread James Holmes
Ah, sorry to hear that. Hopefully, a clean install of Enterprise helps. On Tue, Jul 8, 2008 at 11:07 AM, Rick Root [EMAIL PROTECTED] wrote: Alright, I just downgraded to JVM 1.5_15 I re-enabled hotspot compilation (removed the -Xint arg) Had to delete all the existing class files in the

Re: Hosting Announcement

2008-07-07 Thread Mike Little
their base rates look great. would love to hear from others using these hosting plans to reliability etc. have been pretty loyal to nz based companies so far, but lately feel they are not that interested in reseller plans etc. mike http://www.dailyrazor.com Daily Razor is having a HUGE