Open BlueDragon released

2008-05-05 Thread Larry Lyons
Just thought the list would like to know that Open BlueDragon, the open source version of New Atlanta's BlueDragon for J2EE has been released. http://www.openbluedragon.org/download.cfm Versions include Open BlueDragon J2EE WAR Distribution and the Preconfiged Jetty Instance (Ready2Run). The

Re: Open BlueDragon released

2008-05-05 Thread Gerald Guido
Awesome. I heard the 3rd. I was looking for it this weekened. Wooo wooo, new toy to play with. There goes this mornings productivity. G On Mon, May 5, 2008 at 9:01 AM, Larry Lyons [EMAIL PROTECTED] wrote: Just thought the list would like to know that Open BlueDragon, the open source version

Re: asynchronous call?

2008-05-05 Thread Richard White
thanks Dave i was starting to look into event gateways but i do have coldfusion 8 so will definitely now look into the cfthread tag thanks also for your feedback at least i now know i am on the right path richard i have a process that does take some time to do. i.e it gets You can do this

OT: IIS Question...

2008-05-05 Thread Che Vilnonis
Is there a way with IIS to automatically redirect traffic from mydomain.com to www.mydomain.com? Or do I need to purchase a rewrite tool for IIS? Thanks, Che ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

RE: IIS Question...

2008-05-05 Thread Che Vilnonis
Mike, I never thought of that. Should the code be placed in the onRequestStart function? Also, this would be a case where I'd need a 301 redirect, right? Thanks, Che -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 10:38 AM To: CF-Talk

RE: IIS Question...

2008-05-05 Thread Dawson, Michael
In your Application.cfc/.cfm, you can check the CGI variables and then redirect the browser. m!ke -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 9:00 AM To: CF-Talk Subject: OT: IIS Question... Is there a way with IIS to automatically

CF8 on Windows 2008 Web Edition

2008-05-05 Thread Ken Ferguson
Anybody running this combination of CF and OS? We're looking at grabbing a couple new servers and might go with Win08. If anybody's had any experience with the two together (CF8 is supported on Win08), please let me know. --Ferg

cflocation problem

2008-05-05 Thread alex poyaoan
Hi everybody need help on this I have this code on an action template CFQUERY NAME=AddHL datasource=db INSERT into table1(listID, secondID, emailID) VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' ) /cfquery CFLOCATION URL='Form2.cfm' I need to go back to the previous form with the

Re: cflocation problem

2008-05-05 Thread Phillip Vector
A quick and easy solution would be to store form.id into a session. cfset session.formid=form.id then cflocation to it and call it from #session.formid#. Might not be the BEST answer, but I'm still waking up. :) On Mon, May 5, 2008 at 8:16 AM, alex poyaoan [EMAIL PROTECTED] wrote: Hi

RE: IIS Question...

2008-05-05 Thread Kevin Aebig
If you're doing your own dns, why not just add another host header for www.domain.com as well? !k -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 8:00 AM To: CF-Talk Subject: OT: IIS Question... Is there a way with IIS to automatically

RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
So, why can't you? cflocation url='form2.cfm?id=#form.id#' From: alex poyaoan [mailto:[EMAIL PROTECTED] Sent: Mon 5/5/2008 11:16 AM To: CF-Talk Subject: cflocation problem Hi everybody need help on this I have this code on an action template CFQUERY

Re: cflocation problem

2008-05-05 Thread Phillip Vector
I don't believe you can send url variables with cflocation. I'm also assuming from what you wrote that you already tried that. Anyway, you don't want to do that anyway because it opens up a way for people to manipulate the URL and get into areas they shouldn't be. Good practice? On Mon, May 5,

RE: IIS Question...

2008-05-05 Thread Eric Roberts
I think that is more of a dns issue than an IIS one. You should have a DNS entry that says (I forget the exact verbage) to the effect of www and have that point to @ (which should be assigned to mydomain.com or something to that effect. This is how I have mine set up... (CNAME)www @

Shopping cart with focus on inventory management? Or just inventory management?

2008-05-05 Thread Ryan Stille
Hi. I'm looking for a ColdFusion shopping cart that also has a good feature set for managing inventory. Really looking for an inventory management system that also has a shopping cart. Or actually it might not even *have* to have a shopping cart, if you know of a good CF inventory

RE: IIS Question...

2008-05-05 Thread Dawson, Michael
onRequestStart appears to be the best place for this code. 301 would be appropriate if that is what you want. Will this be a permanent or temporary redirect? Also, the additional DNS entry suggestions may be a better solution, if that is an option for you. m!ke -Original Message-

Re: Shopping cart with focus on inventory management? Or just inventory management?

2008-05-05 Thread Jake Churchill
I was happy with SiteDirector the one time I used it. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 Ryan Stille wrote: Hi. I'm looking for a ColdFusion shopping cart that also has a good feature set for managing inventory.

RE: IIS Question...

2008-05-05 Thread Jacob
Put this at the top of your application.cfm (test this first since I just typed it). cfif cgi.server_name does not contain www.domain.com cfheader statuscode=301 statustext=Moved Permanently cfheader name=location value=http://www.domain.com#trim(script_name)# cfabort

RE: cflocation problem

2008-05-05 Thread Dave Watts
I don't believe you can send url variables with cflocation. You can do this. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training: Adobe/Google/Paperthin Certified Partners http://training.figleaf.com/ WebManiacs 2008: the ultimate conference for CF/Flex/AIR

RE: IIS Question...

2008-05-05 Thread Che Vilnonis
Jacob... that is exactly what I am looking for. And yes, I am doing this for search engines ranking purposes. Otherwise, it would not matter to me. ;) Eric, I'm no DNS wiz, but I already have a www and a blank host A-record entry entry for the domain that points to the same IP. I simply wanted all

Re: cflocation problem

2008-05-05 Thread Phillip Vector
Is there a way to insert that value in the cflocation url? I tried it but it gives me an error wHAT i WANT TO DI IS cflocation url='form2.cfm?id='form.id Ok... So Alex... What's the problem again? On Mon, May 5, 2008 at 9:08 AM, Dave Watts [EMAIL PROTECTED] wrote: I don't believe you can send

RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
You beat me to it. It's my understanding that the cflocation tag simply inserts a 302(?) http status and corresponding Location header. Per the specs (http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), I believe the Location can be any valid URI; which includes using a query string.

RE: cflocation problem

2008-05-05 Thread Dave Francis
Shouldn't that be cflocation url='form2.cfm?id=#form.id#' -Original Message- From: Phillip Vector [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 12:12 PM To: CF-Talk Subject: Re: cflocation problem Is there a way to insert that value in the cflocation url? I tried

RE: IIS Question...

2008-05-05 Thread Jacob
Also... For Google, set up the Google Webmaster tools for your website. Add your site and set the preferred domain to www. https://www.google.com/webmasters/tools/siteoverview?hl=en Jacob -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 9:09

RE: IIS Question...

2008-05-05 Thread Che Vilnonis
Thanks for the tip. I almost forgot to do that! :) -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 12:40 PM To: CF-Talk Subject: RE: IIS Question... Also... For Google, set up the Google Webmaster tools for your website. Add your site and set the

Re: JBoss'n it (was: Re: CFMX8 - Standard vs. Enterprise)

2008-05-05 Thread Adam Haskell
I don't want to go through all the quotes but more or less Open BlueDragon is aiming to support Transfer and other frameworks fully. The code drop was just this weekend and was MONTHS ahead of the originally planned date, which was cfUnited time frame. New Atlanta, graciously, decided to drop it

OT: Need advice - googlebot is creating errors.

2008-05-05 Thread Che Vilnonis
Lately when crawling my site, googlebot has been throwing errors. Instead of the url parameters being seperated by an , when I get an error, the cgi.query_string value has an amp; as a seperator instead. (see below.) Has anyone come across this before? Any ideas on how to stop it from happening

Re: Verity and PDF

2008-05-05 Thread Richard Steele
Actually I'm liking your idea and will explore it. I don't think it's possible to do that. You could cheat though. What I'm about to describe is NOT something I've done. It's just an idea. Use CF8 and cfpdf (with DDX) to split the PDF into N pages. Use names like original_N, where original is

Connector to IIS 5 hanging after JNDI

2008-05-05 Thread David
I have a client having trouble configuring CF8 with IIS 5 (Windows 2000 server). Both on same box. (CF8 is Standard ed.) CF works fine with built-in webserver, but wsconfig hangs. In GUI, hangs when trying to add. Using command-line, hangs after successfully finding JNDI port 127.0.0.1:2930

Re: OT: IIS Question...

2008-05-05 Thread David
Try Ionics IIRF; free and open source rewrite. http://cheeso.members.winisp.net/IIRF.aspx http://www.codeplex.com/IIRF On Mon, May 5, 2008 at 9:59 AM, Che Vilnonis [EMAIL PROTECTED] wrote: Is there a way with IIS to automatically redirect traffic from mydomain.com to www.mydomain.com? Or do

Re: cflocation problem

2008-05-05 Thread Axel Schultze
In /wwwroot/cfdocs... you find this example cfif TripQuery.RecordCount is 1 cflocation url=tripdetail.cfm?ID=#TripQuery.tripID# cfelse cflocation url=tripdetail.cfm?ID=#Form.RecordID# /cfif so 1) URL parameter absolutely works 2) I use

Re: cflocation problem

2008-05-05 Thread Axel Schultze
1) URL parameter absolutely works in cflocation In /wwwroot/cfdocs... you find this example cfif TripQuery.RecordCount is 1 cflocation url=tripdetail.cfm?ID=#TripQuery.tripID# cfelse cflocation url=tripdetail.cfm?ID=#Form.RecordID# /cfif 2)

Re: Error E0-0602 (Vdb Access): Error in read_entry: 00000001.ddd, RESUME, 0

2008-05-05 Thread Kevin Feeley
Hi Gurus, I work on peoplesoft and we use verity to index our applicant details. we use mkvdk to index the data from *.bif and *.dat files. while searching for applicants online, I get the following errorE0-0602 (Vdb Access): Error in read_entry: 0001.ddd, RESUME, 0 . Does

Re: Error E0-0602 (Vdb Access): Error in read_entry: 00000001.ddd, RESUME, 0

2008-05-05 Thread Kevin Feeley
Hi Gurus, I work on peoplesoft and we use verity to index our applicant details. we use mkvdk to index the data from *.bif and *.dat files. while searching for applicants online, I get the following errorE0-0602 (Vdb Access): Error in read_entry: 0001.ddd, RESUME, 0 . Does

Re: Error E0-0602 (Vdb Access): Error in read_entry: 00000001.ddd, RESUME, 0

2008-05-05 Thread Kevin Feeley
Vinod, I am experiencing the exact same issue. Have you found a resolution? If I find one I will post it here. Kevin Feeley ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: Error E0-0602 (Vdb Access): Error in read_entry: 00000001.ddd, RESUME, 0

2008-05-05 Thread Kevin Feeley
Hi Gurus, I work on peoplesoft and we use verity to index our applicant details. we use mkvdk to index the data from *.bif and *.dat files. while searching for applicants online, I get the following errorE0-0602 (Vdb Access): Error in read_entry: 0001.ddd, RESUME, 0 . Does

Re: Connector to IIS 5 hanging after JNDI

2008-05-05 Thread David
Never mind; wound up reinstalling CF on that server, and the install process made the connector without problem. (however, then had the issue of the ODBC services not set up, but can deal with that later.) thanks, - David On Mon, May 5, 2008 at 3:44 PM, David [EMAIL PROTECTED] wrote: I have a

Re: Split data over multiple mysql tables or leave in 1 table

2008-05-05 Thread Scott Stevens
Thanks for the help. Is there a version of MySQL that can handle partitioning? I looked on the MySQL website, it says it has partitioning in 5.1, but had the following disclaimer: The partitioning implementation in MySQL 5.1 is still undergoing development. Have you (or anyone else) had any

Re: Connector to IIS 5 hanging after JNDI

2008-05-05 Thread Azadi Saryev
re ODBC services not being installed: make sure you select to install cf documentation, otherwise cf8 installer does not install ODBC services... iirc one of later cf8 installers fixed this problem... Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ David wrote: Never mind; wound up

create variables from a string

2008-05-05 Thread Steve Good
Is there a way to create named variables from a dynamic list (the list doesn't always have the same number of elements)? One instance might be: red,green,blue,yellow becomes #red#,#green#,#blue#,#yellow# Or would this just be easier to do with listGetAt()? Thanks!

Re: create variables from a string

2008-05-05 Thread Azadi Saryev
why not just cfloop over the list and create all vars you need? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Steve Good wrote: Is there a way to create named variables from a dynamic list (the list doesn't always have the same number of elements)?

RE: create variables from a string

2008-05-05 Thread Steve Good
I'm not sure that would do what I need, or I'm not understanding. Here's a snippet of the code I'm using. I'm pulling the column names from a table and passing the list to my query and then using the list as the first row in a csv file. !--- fetch the columns in a table --- cfdbinfo

Re: create variables from a string

2008-05-05 Thread James Holmes
If you genuinely don't know the column names to start with, you may as well just SELECT * from the table and use thequery.columnlist as the list of column names. It will at least speed things up my eliminating one query from the code. As for using the column names in the CSV, use the full query

Re: create variables from a string

2008-05-05 Thread James Holmes
Damn, missed a closing bracket: ListAppend(myOutput,pull_data[currentColumn][pull_data.currentRow]) On Tue, May 6, 2008 at 11:43 AM, James Holmes [EMAIL PROTECTED] wrote: If you genuinely don't know the column names to start with, you may as well just SELECT * from the table and use

Re: create variables from a string

2008-05-05 Thread Josh Nathanson
Do you mean something like this... cfloop list=#colors# index=color cfset #color# = whatever / /cfloop -- Josh - Original Message - From: Steve Good [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, May 05, 2008 7:27 PM Subject: create variables from a string