Re: Using .jar file with cfobject

2007-05-09 Thread Robertson-Ravo, Neil (RX)
It is? or is alledgedly faster? What metrics have you ran to test and prove it's faster with your code? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It

Re: Using .jar file with cfobject

2007-05-09 Thread Janet MacKay
cfset svgPath = e:\temp\newxml.svg / cfset svgFile = expandPath(svgPath) / Rodney, Don't use expandPath() if you're going to supply an absolute path. That might have been what was messing you up. This worked for me !--- svg file is in same directory as script cfobject

Re: Using .jar file with cfobject

2007-05-09 Thread Janet MacKay
cfset svgPath = e:\temp\newxml.svg / cfset svgFile = expandPath(svgPath) / Rodney, Don't use expandPath() if you're going to supply an absolute path. That might have been what was messing you up. This worked for me !--- svg file is in same directory as script cfobject

Re: Using .jar file with cfobject

2007-05-09 Thread Janet MacKay
cfset svgPath = e:\temp\newxml.svg / cfset svgFile = expandPath(svgPath) / Rodney, Don't use expandPath() if you're going to supply an absolute path. That might have been what was messing you up. This worked for me !--- svg file is in same directory as script cfobject

Re: Lack of CF understanding: Info Week

2007-05-09 Thread Sean Corfield
On 5/5/07, Eric J. Hoffman [EMAIL PROTECTED] wrote: Not to add to the hornet's nestwell, okay maybe, but back to the issues we deal with in perceptions with CF. This time not price, just a pure lack of focus on what the CF platform can do from a review of a site that moved from a mixed

Re: Lack of CF understanding: Info Week

2007-05-09 Thread Robertson-Ravo, Neil (RX)
Here here. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the exclusive

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Tom Chiverton
On Tuesday 08 May 2007, Jim H wrote: Which configs are you talking about? FusionReactor makes changes to, iirc, the JVM config file. -- Tom Chiverton Helping to revolutionarily accelerate dot-com interfaces on: http://thefalken.livejournal.com

Re: defeating offline form posts

2007-05-09 Thread Tom Chiverton
On Wednesday 09 May 2007, Eric J. Hoffman wrote: authenticate filewhat is the best way to detect this and defeat it? Noone has ever gained access this way as of yet, but we are studying possibilities, and this seems to me to be an attack vector. What could they do by submitting the local

Re: Using CFLock around a query

2007-05-09 Thread Jochem van Dieten
Ali Awan wrote: Every once in a while on my intranet application I get Database errors. MS SQL Server will throw an error that the transaction was deadlocked. It happens around a piece of code in which I have 2 queries, an Update and a Delete which are nested inside a CFTransaction. On

Re: defeating offline form posts

2007-05-09 Thread Jochem van Dieten
Eric J. Hoffman wrote: Curious question here. If I think about this, if someone takes a form of ours for login, for example, and makes a local copy on their machineand they set the post action to be the live server authenticate filewhat is the best way to detect this and defeat it?

focus indicator after a click on a href.... how to?

2007-05-09 Thread the_oslo Kid
Hi all, CF 6.1 engine. I've got a table with say 10 rows and 6 columns - one or two of these columns have a a href attached. When the user clicks on one of them, I do a PopWindow with an image. However, when the user looks back to the original form, there is no indication as

RE: focus indicator after a click on a href.... how to?

2007-05-09 Thread Peterson, Chris
You just need to set you're a:visited color to be something different, this has nothing to do with Coldfusion and everything to do with CSS / styles =) In an app I have, I even have a spacer image named something like viewed_#query.currentRow#. Then I do a javascript to replace the spacer for

Multi-Language Site

2007-05-09 Thread Bruce Sorge
I have a new site I am working on that is going to be multi-lingual (Spanish and English). Has anyone done this before and if so, what are some best approaches? It is of course database driven, and it is a model (not nude) site. What are some of the challenges I may face? Thanks, Bruce

RE: Multi-Language Site

2007-05-09 Thread Paul Vernon
You may want to look at the following things... Resource bundles (Paul H has some great resources) icu4j libraries If you build the site in utf-8 and use resource bundles then you should be fine for most languages, it only gets really complicated when you are looking at things like Thai (the

RE: Multi-Language Site

2007-05-09 Thread Adkins, Randy
One of the obstacles I had was JS. I had to create separate JS files Based on the locale (language) so that my alert messages would be in The right language. Other than that, it was just loading the right language files are start. If pulling from a database just have it select where lang =

Re: defeating offline form posts

2007-05-09 Thread Chris Norloff
What if the HTTP POST didn't get as far as ColdFusion? We have an ongoing case where the web server throws a 500 error, and we don't know why the page doesn't get to CF. thx Chris -- Original Message -- From: Ken Wexel [EMAIL PROTECTED] Reply-To:

declare sql variables

2007-05-09 Thread Daniel Kessler
Why do you want to declare a variable? You are not even using it in your statement. What is the problem for which you think a variable declaration is the solution? Fair question. I'm not even using it in my statement because I can't even declare a variable. If I can't get past step 1,

Re: defeating offline form posts

2007-05-09 Thread Chris Norloff
What if the HTTP POST didn't get as far as ColdFusion? We have an ongoing case where the web server throws a 500 error, and we don't know why the page doesn't get to CF. thx Chris -- Original Message -- From: Ken Wexel [EMAIL PROTECTED] Reply-To:

Re: Multi-Language Site

2007-05-09 Thread Doug Hyde
First, I tried to minimize the use of terms with images. Second, I created an application level variable for all terms that needed to be translated, including for javascript alerts. The data is stored in a table, so can be updated (either automatically, when the application variable times out, or

RE: defeating offline form posts

2007-05-09 Thread Bobby Hartsfield
My thoughts exactly Jochem. What's the difference if they use their form or your form if the action template is what matters? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 6:05 AM To: CF-Talk Subject: Re: defeating offline form posts

RE: focus indicator after a click on a href.... how to?

2007-05-09 Thread Bobby Hartsfield
like http://ncsymphony.org/education/index.cfm?subsec=musicalenlightenment ;-) -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 8:06 AM To: CF-Talk Subject: RE: focus indicator after a click on a href how to? You just need to set

RE: AJAX - The easiest way possible. Spry?

2007-05-09 Thread Dan G. Switzer, II
Will, I wouldn't say you need to learn JS. You can typically do most simple stuff with 2 script lines you can cut and paste from the demos. ;) I'd definitely encourage folks to check out Spry. You can even watch a presentation I've done on Spry: Thanks ray! Just watched the

RE: Multi-Language Site

2007-05-09 Thread Bruce Sorge
Cool. Thanks everyone for the suggestions. Bruce -Original Message- From: Doug Hyde [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 6:10 AM To: CF-Talk Subject: Re: Multi-Language Site First, I tried to minimize the use of terms with images. Second, I created an application

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Jim H
Would a uninstall remove the changes? I am not sure where to find the changes. -JH On Tuesday 08 May 2007, Jim H wrote: Which configs are you talking about? FusionReactor makes changes to, iirc, the JVM config file. -- Tom Chiverton Helping to revolutionarily accelerate dot-com

CF Based Auction Software

2007-05-09 Thread Jim Ruzicka
Anyone know of a good ColdFusion based auction software, similar to http://www.phpauction.net/ ? Thanks. ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business. Upgrade now

RE: cfchart issues

2007-05-09 Thread Jeremy
I had the same problems with a line graph as well. I noticed that no matter how big I made the graph, it still had the same problem, just larger on screen. -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 4:23 AM To: CF-Talk

Separate DB for client vars?

2007-05-09 Thread Stewart Turnbull
I'm looking at things to speed up a CFMX7 application and was wondering if creating a separate MS SQL 2000 DB only to hold the application's client vars was worth considering? Although the 2 tables CDATA and CGLOBAL are purged every 2 days both tables contain of 60,000 records. I suppose if

RE: Separate DB for client vars?

2007-05-09 Thread Adam Churvis
Stewart, Just engineer client variables out of your application altogether. Why exactly are you using them? Respectfully, Adam Phillip Churvis Get advanced intensive Master-level training in C# ASP.NET 2.0 for ColdFusion Developers at ProductivityEnhancement.com -Original Message-

Re: Separate DB for client vars?

2007-05-09 Thread Stewart Turnbull
The application was originally build prior to the release of CF5 and therefore we couldn't rely on setting these vars using cfcookie due to the issues with the cflocation tag. You're quite right though. I should look at using session variables to store this data.

Re: declare sql variables

2007-05-09 Thread Jochem van Dieten
Daniel Kessler wrote: CASE WHEN o.mname is not null THEN o.fname ELSE a.a_mname END as middlename. Then in the outter query (main query?), I substring it and concatenate it with a dot ( || '.'). This works great on first and last name which are required and are sure to have something

Re: defeating offline form posts

2007-05-09 Thread Ken Wexel
and have an active session with a matching key in the session scope.seems like it would be a lot of work to create the session, load the form, save the form locally, change the post path, spoof the session, etc. just to post it from somewhere else once. Not bulletproof, but worked well enough

declare sql variables

2007-05-09 Thread Daniel Kessler
How is a single variable going to help? If you were to use some variables based approach, you would need one variable for each row of the resultset, not one variable for the whole resultset. I see. I figured it would work the same as the middlename variable which has a middlename for each

Creating a SOAP Web Service

2007-05-09 Thread Aaron Roberson
Hey Guys, I am needing to create a SOAP web service that will be consumed by PHP. I haven't created a web service before but from what I have picked up all I have to do is change my CFC functions to remote and include cfproperty tags, right? Does anyone have any good reasources on creating web

Re: Separate DB for client vars?

2007-05-09 Thread Teddy R. Payne
I would recommend using client variables if you want to persist data that needs to be saved even if your session dies. If there is no consideration for persistent variables then session is a great place. On 5/9/07, Stewart Turnbull [EMAIL PROTECTED] wrote: The application was originally build

Re: Add Together Values of Dyanamic Fields

2007-05-09 Thread Joel Watson
Okay, here's another for you. I am (with your helpful suggestions) able to add together two dynamically named form fields. Now, I need to get all of the values that have been added together, and add them together for one master total. Ex. I have N number of fields where mileageBegin and

Re: Using CFLock around a query

2007-05-09 Thread Ali Awan
Yes and no. In one case, I found concurrent queries and I also found 2 sessions hitting the same table. Did you find any concurrent queries? For a deadlock you need at least two SQL sessions hitting the same object. It is not unlikely this can deadlock, but to be certain we need to see the

RE: Creating a SOAP Web Service

2007-05-09 Thread Ben Nadel
Aaron, Not sure if this would be too helpful, but I, not so long ago, created my first web service in ColdFusion: http://www.bennadel.com/blog/430-My-First-ColdFusion-Web-Service.htm OR: http://www.bennadel.com/index.cfm?dax=blog:430.view I ran into some interested hurdles and have some good

Microsoft Runtime Components required for CF5

2007-05-09 Thread Kevin Roche
My CF5 development machine has died and I need to re-install it, so that I can make an update for a client. The CF installation routine want somthing called Microsoft Runtime which is not present on the machine. Anyone know where I can get the required installation?

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Aaron Roberson
1) I make changes and submit the working code to SVN, later I rewrite anothe component then relise that the previous code I wrote worked better. So I can revision the changes to that file and revert back rather than recode from memory. 2) I have an open source application, I have released

Digest Authentication woes

2007-05-09 Thread Paul Cormier
Does anyone have any success stories performing CF Server to remote HTTP Server Digest Authentication? I know it's not natively supported by the cfhttp tag. I also know the server I'm trying to connect to works and that I have proper credentials, as I can connect using a web browser. I even

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread John Paul Ashenfelter
On 5/9/07, Aaron Roberson [EMAIL PROTECTED] wrote: 1) I make changes and submit the working code to SVN, later I rewrite anothe component then relise that the previous code I wrote worked better. So I can revision the changes to that file and revert back rather than recode from memory.

Re: Error,jrpp-3 - Any ideas?

2007-05-09 Thread Tom Chiverton
On Wednesday 09 May 2007, Jim H wrote: Would a uninstall remove the changes? I am not sure where to find the changes. -JH Yeah, guess so. -- Tom Chiverton Helping to efficiently target one-to-one schemas on: http://thefalken.livejournal.com

Re: defeating offline form posts

2007-05-09 Thread Tom Chiverton
On Wednesday 09 May 2007, Ken Wexel wrote: seems like it would be a lot of work to create the session, load the form, save the form locally, change the post path, spoof the session, etc. just to post it from somewhere else once. Depends on your threat profile. It only takes a geek an hour or

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Aaron Roberson
Thanks John, but I highly doubt my employer will send me to CFUnited (and I surely can't afford it). I would like to be walked through the process though. While it may be simple and straight forward for those who do it, I don't even know where to start at this point. -Aaron On 5/9/07, John Paul

Importing XML data in SQL Server 2000 need ColdFusion?

2007-05-09 Thread coldfusion . developer
I'm reading that there are many different ways to import data into a SQL Server database. I want to set up something that will allow a partner outside our company to be able to upload contest entries along with image files and have it all imported into a SQL Server table. Any one have adive

RE: Microsoft Runtime Components required for CF5

2007-05-09 Thread Robertson-Ravo, Neil (RX)
You will not doubt be after the Microsoft Visual C++ Run Time Library (debugging components). Which OS are you on? It is usually on the OS CD - such as NT4. -Original Message- From: Kevin Roche [mailto:[EMAIL PROTECTED] Sent: 09 May 2007 16:18 To: CF-Talk Subject: Microsoft

Re: Importing XML data in SQL Server 2000 need ColdFusion?

2007-05-09 Thread Will Tomlinson
Just found this. Maybe would do the trick? http://www.perfectxml.com/articles/xml/importxmlsql.asp Will ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business. Upgrade now

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Aaron Roberson
I have been using (CF)Eclipse for a while now and I am really beginning to doubt the benefits of it over DW. Here are the things I do like about (CF)Eclipse: 1) It has never stalled or frozen on startup or at any other point of time 2) I love the Outline and Methods views (and it doesn't stall

Re: Multi-Language Site

2007-05-09 Thread Jon Clausen
Bruce, I have a client site that provides online learning internationally with clients from different countries and Languages such as Japanese, Arabic, French, Spanish and more. The same core model layer serves the international portal, US portal, and allows for translation of the

Re: AJAX - The easiest way possible. Spry?

2007-05-09 Thread Aaron Roberson
I find prototype to be really straight forward, and scriptaculous even easier if you want to apply some effects to your prototype events. -Aaron ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex

Re: Importing XML data in SQL Server 2000 need ColdFusion?

2007-05-09 Thread coldfusion . developer
Just found this. Maybe would do the trick? http://www.perfectxml.com/articles/xml/importxmlsql.asp Will I don't have Microsoft Visual Basic or Visual Studio .NET. Don't know Visual Basic or VBScript. Can I do it with ColdFusion or some wizard in SQL Server?

RE: Lack of CF understanding: Info Week

2007-05-09 Thread Eric J. Hoffman
I was only peeved regarding the talk of the platform CF runs on, as in it only runs with x,y,z. It does more than on IIS and SQL!! : ) What you said beyond that, absolutely!! Eric J. Hoffman Managing Partner 2081 Industrial Blvd

Re: Creating a SOAP Web Service

2007-05-09 Thread Aaron Roberson
Thanks Ben! It is nice to know that I'm not the only one who is not very versed in web services and SOAP. I will check out those posts. -Aaron On 5/9/07, Ben Nadel [EMAIL PROTECTED] wrote: Aaron, Not sure if this would be too helpful, but I, not so long ago, created my first web service in

RE: defeating offline form posts

2007-05-09 Thread Eric J. Hoffman
Well, an automated process where they create spam accounts into the system? We could use CAPTCHA maybe, but a lot of users hate that. I was wondering if there was a good practice to additionally nail them in advance of captcha use, but maybe not...?

Re: Microsoft Runtime Components required for CF5

2007-05-09 Thread Kevin Roche
You will not doubt be after the Microsoft Visual C++ Run Time Library (debugging components). Which OS are you on? It is usually on the OS CD - such as NT4. Windows 2000 server - Can't see it on the CD. ~| ColdFusion MX7 and

RE: Creating a SOAP Web Service

2007-05-09 Thread Ben Nadel
No problem. You also might want to look at this: http://www.bennadel.com/blog/494-Stripping-XML-Name-Spaces-And-Node-Pref ixes-From-ColdFusion-XML-Data-To-Simplify-XPath-.htm Or: http://bennadel.com/index.cfm?dax=blog:494.view If you are going to be getting back SOAP data, then it might have

Frameworks view in CFEclipse

2007-05-09 Thread Robertson-Ravo, Neil (RX)
How on earth do you activate it? I have 1.3.1.3 installed but I can't see it anywhere? Any pointers here? I have been happily using CFEclipse for years now and never had a problem with updates etc.. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9

RE: defeating offline form posts

2007-05-09 Thread Dave Watts
Curious question here. If I think about this, if someone takes a form of ours for login, for example, and makes a local copy on their machineand they set the post action to be the live server authenticate filewhat is the best way to detect this and defeat it? Noone has ever

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Matt Williams
On 5/9/07, John Paul Ashenfelter [EMAIL PROTECTED] wrote: On 5/9/07, Aaron Roberson [EMAIL PROTECTED] wrote: Where can I learn how to do the above. That is very cool stuff that I have neglected heretofore. At the risk of self-promotion, you could check out my class at CFUnited, which is

RE: Microsoft Runtime Components required for CF5

2007-05-09 Thread Dave Watts
My CF5 development machine has died and I need to re-install it, so that I can make an update for a client. The CF installation routine want somthing called Microsoft Runtime which is not present on the machine. Anyone know where I can get the required installation?

RE: Creating a SOAP Web Service

2007-05-09 Thread Robert Rawlins - Think Blue
Hey Ben, Just having a quick read through your article, great work. I'm interested by the opening section though that discusses the problems of app.cfc and it blocking web services. I publish several web services from my application which is running a standard app.cfc and they are consumed

Scorpio

2007-05-09 Thread Brad Wood
Forta was at the Kansas City user group last night and I would just like to say I am so happy to hear that CFCs (and XML documents) will serialize properly in CF 8 and replicate between shared sessions! Woohoo! ~Brad ~|

RE: Creating a SOAP Web Service

2007-05-09 Thread Ben Nadel
Are your web services being called on the CFC's directly? It is a SOAP or REST service? Are you using OnRequest() event method. I think this exception only needs to be handles when OnRequest() is being used in conjunction with WSDL soap stuff. Other scenarios will not be affects. But again, that

Re: Frameworks view in CFEclipse

2007-05-09 Thread Charlie Griefer
Window - Show View - Other - CFML Frameworks - CFML Frameworks Explorer. ? On 5/9/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: How on earth do you activate it? I have 1.3.1.3 installed but I can't see it anywhere? Any pointers here? I have been happily using CFEclipse for years now

Re: defeating offline form posts

2007-05-09 Thread Ken Wexel
True...it's all relatively relative I supposed :) On 5/9/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 09 May 2007, Ken Wexel wrote: seems like it would be a lot of work to create the session, load the form, save the form locally, change the post path, spoof the session, etc.

Re: Frameworks view in CFEclipse

2007-05-09 Thread Mark Drew
Also there is an update to CFEclipse for the view to work, so you need to update CFEclipse too. MD On 5/9/07, Charlie Griefer [EMAIL PROTECTED] wrote: Window - Show View - Other - CFML Frameworks - CFML Frameworks Explorer. ? On 5/9/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote:

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Andy Matthews
I'll throw this out there. Aaron West (my boss and the Nashville CFUG group leader) has a 5 part walk through on how to set up SVN, Subversion and all that jazz. Starts here: http://www.trajiklyhip.com/blog/index.cfm/2007/3/12/Configuring-a-Developmen

RE: Scorpio

2007-05-09 Thread Andy Matthews
Ben's going to be in Nashville TONIGHT!!! Just a few hours away! -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 11:31 AM To: CF-Talk Subject: Scorpio Forta was at the Kansas City user group last night and I would just like to say I am so

Re: AJAX - The easiest way possible. Spry?

2007-05-09 Thread Will Tomlinson
Will, One big gotcha with Spry, is it does not create unobtrusive JavaScript and will require you to write HTML that doesn't validate. It's just something to be aware of these are issues for you. -Dan thanks dan! ~| Upgrade

Re: Multi-Language Site

2007-05-09 Thread Paul Hastings
Jon Clausen wrote: 1) Sets the language locale variable which is cross referenced to the #server.coldfusion.supportedlocales#. This allows you to use Coldfusion internationalization for dates/currency formatting. you have to be careful with this. cf relies on core java for it's locale

Getting first day of week (as date) from week() function?

2007-05-09 Thread Pete Ruckelshaus
I'm building an app where I am keeping track of sales on a weekly basis, so I am storing the number of the week (as a tinyint) and the year (as a smallint). Now there is a requirement to generate a report where the date of the first day of the week (i.e. 5/13/2007 being the date fo the first day

Re: Frameworks view in CFEclipse

2007-05-09 Thread Andrew Scott
Doesn't work for me here, I get all sort of errors when I try to use it. I even went to the trouble of removing cfeclipse and d/loading it again but no matter how hard I try the org.cfeclispe.feature always errors and the cfmappings in the preferences throws errors as well. On 5/10/07, Mark

Re: Scorpio

2007-05-09 Thread Christopher Jordan
That's sweet Andy! If you've never heard him talk, you're in for a treat! When he came her to Dallas was the first time I'd heard him, and I could have listened (and asked questions) all night! As it is we were there for three hours, and I don't think anyone wanted him to stop! :o) Have a good

Re: Multi-Language Site

2007-05-09 Thread Paul Hastings
Paul Vernon wrote: looking at things like Thai (the most complex AFAIK)... i would actually say arabic, hebrew or farsi are harder to deal with than thai. RTL layout, images, flash problems, non-gregorian calendars (3 different calendars involved, boatload of subtle things to worry about),

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Andrew Scott
Aaron, The SVN manual is a good place to start, but it isn't that hard to understand as long as you follow the SVN recommended structure of /projectname /projectname/trunk /projectname/branches/ /projectname/tags then using eclipse to make it easier for you, get a plugin like subversive and use

Re: Scorpio

2007-05-09 Thread Robertson-Ravo, Neil (RX)
Tell me you don't have a picture of him in your wallet.? :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Damien McKenna
Two things to keep in mind with SVN: * Branches and tags are just normal directories within the repository, it's just a convention to treat them differently. Some software works within this convention, others don't care. * You can set up multiple, separate repositories in one directory, e.g.

RE: Scorpio

2007-05-09 Thread Brad Wood
I have one thing to say: ColdFusion Scorpio Flavored MM's ~Brad Andy Matthews wrote: Ben's going to be in Nashville TONIGHT!!! Just a few hours away! ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion

Re: Multi-Language Site

2007-05-09 Thread Paul Hastings
Bruce Sorge wrote: I have a new site I am working on that is going to be multi-lingual (Spanish and English). Has anyone done this before and if so, what are some best approaches? It is of course database driven, and it is a model (not nude) site. What are some of the challenges I may face?

RE: Scorpio

2007-05-09 Thread Andy Matthews
Shhh.. They're close doncha know. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 12:00 PM To: CF-Talk Subject: Re: Scorpio Tell me you don't have a picture of him in your wallet.? :-) -Original Message- From:

Re: Scorpio

2007-05-09 Thread Christopher Jordan
Ahem...of course not... what kind of screw ball do you take me for? :-) Robertson-Ravo, Neil (RX) wrote: Tell me you don't have a picture of him in your wallet.? :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Andrew Scott
Yeah thats where reading the manual will help... BTW, I blogged this entry the other day and for those who want to see versions of code without using SVN try this. http://www.andyscott.id.au/index.cfm/2007/5/9/Eclipse-hidden-gem On 5/10/07, Damien McKenna [EMAIL PROTECTED] wrote: Two things

Re: Getting first day of week (as date) from week() function?

2007-05-09 Thread Teddy R. Payne
Something like this may help you: cfset tDate = createDate(2007,5,13) !--- Beginning Date --- cfset dow = dayOfWeek(tDate) !--- Day of Week : 1 = Sunday, 7 = Saturday --- cfset dowStr = cfswitch expression=#dow# cfcase value=1cfset dowStr = First/cfcase cfcase value=2cfset dowStr =

Re: Scorpio

2007-05-09 Thread M
Tell me you don't have a picture of him in your wallet.? Are you trying to imply that this is not normal behavior? :-P ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity.

Re: Getting first day of week (as date) from week() function?

2007-05-09 Thread Andrew Scott
Would this work for you? cfoutput #DateFormat(DateAdd(d, -#DayOfWeek(Now()) - 1#, Now()), , d, )# /cfoutput On 5/10/07, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I'm building an app where I am keeping track of sales on a weekly basis, so I am storing the number of the week (as

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Aaron Roberson
Wow, what a series of resourceful posts! Thanks Matt, Andrew and Damien. I have used Tortoise to pull items down from an SVN or CVN repository but I have never created one myself. I guess I don't understand how I would use SVN for a live web application. Would I create a mapping on my

Re: Digest Authentication woes

2007-05-09 Thread Jochem van Dieten
Paul Cormier wrote: Does anyone have any success stories performing CF Server to remote HTTP Server Digest Authentication? I know it's not natively supported by the cfhttp tag. I also know the server I'm trying to connect to works and that I have proper credentials, as I can connect using a

Re: Using CFLock around a query

2007-05-09 Thread Jochem van Dieten
Ali Awan wrote: In one case, I found concurrent queries and I also found 2 sessions hitting the same table. If the concurrent queries do not lock the records in the same order as the transaction does, that can cause deadlocks. It is not unlikely this can deadlock, but to be certain we

Re: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Andrew Scott
Aaron, One thing to keep in mind, not sure if you meant it like this or not. Never SVN production code, only development code. Now depending on where your production server is the best utility on the market is Beyond Compare, i would love an Eclipse plugin for this but I use it to only upload

Re: Lack of CF understanding: Info Week

2007-05-09 Thread Aaron Roberson
Moral: write better programs in CF and CF will get less criticism... Very well said Sean! On 5/9/07, Eric J. Hoffman [EMAIL PROTECTED] wrote: I was only peeved regarding the talk of the platform CF runs on, as in it only runs with x,y,z. It does more than on IIS and SQL!! : ) What you

Re: Frameworks view in CFEclipse

2007-05-09 Thread Mark Drew
Some other people had those errors.. but that was because they had an old version of CFEclipse. I would say disable the features, uninstall them (through the update manager) and then install them again. MD On 5/9/07, Andrew Scott [EMAIL PROTECTED] wrote: Doesn't work for me here, I get all

Re: Connection reset by peer: socket write error, 3.4 JDBC drivers

2007-05-09 Thread Jim H
Did you ever figure this one out? I am seeing the same problem. -JH Setup: CFMX 6.11, Windows 2003 Server, IIS, SQL Server 8 / SP3, Latest JDBC drivers from MM website (3.4) Error Message: Error Executing Database Query. [Macromedia][SQLServer JDBC Driver]Connection reset by peer: socket write

Re: Frameworks view in CFEclipse

2007-05-09 Thread Andrew Scott
Mark, *g* I Think I said I did that:-) On 5/10/07, Mark Drew [EMAIL PROTECTED] wrote: Some other people had those errors.. but that was because they had an old version of CFEclipse. I would say disable the features, uninstall them (through the update manager) and then install them again.

Re: ANN: cfFrameworks.com workshop: Peter Bell on Lightwire

2007-05-09 Thread Nick Tong
FYI: This is starting in 20 mins:http://adobe.acrobat.com/_a200985228/pbonlightwire/ On 08/05/07, Nick Tong [EMAIL PROTECTED] wrote: HI All, For those of you not on the cfFrameworks mailing list Peter Bell will be doing a workshop on his Lightwire framework tomorrow night 7pm GMT. If you

Re: Frameworks view in CFEclipse

2007-05-09 Thread Andrew Scott
Mark, If this helps... 1) When going to the templates I get this error. Unable to create the selected preference page. Reason. Plug-in org.cfeclipse.cfml was unable to load class org.cfeclipse.cfml.preferences.CFMLTemplatesPreferencePage 2) When configuring from the view Could not accept

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Russ
-Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] One thing to keep in mind, not sure if you meant it like this or not. Never SVN production code, only development code. Andrew, Exactly what's wrong with using SVN with production code? Russ

IIS Virtual DIrectories and Shared Scope Vars

2007-05-09 Thread Ben Shichman
Hello I posted this about a year ago, but got it working on a server of ours - now on a new server, same problem, and cant figure out why. Very simple: We have multiple sites: Site 1 Site 2 Site 3 Etc... Each is in its own directory structure, has its own application.cfm, etc. Each one has

RE: Adobe CS3 Web Edition leaves me wanting, moving to Eclipse! W AS (RE: Frameworks)

2007-05-09 Thread Russ
-Original Message- From: Aaron Roberson [mailto:[EMAIL PROTECTED] Wow, what a series of resourceful posts! Thanks Matt, Andrew and Damien. I have used Tortoise to pull items down from an SVN or CVN repository but I have never created one myself. I guess I don't understand how I

Re: ANN: cfFrameworks.com workshop: Peter Bell on Lightwire

2007-05-09 Thread Aaron Roberson
Thanks, I almost forgot and would have killed myself. -Aaron On 5/9/07, Nick Tong [EMAIL PROTECTED] wrote: FYI: This is starting in 20 mins:http://adobe.acrobat.com/_a200985228/pbonlightwire/ On 08/05/07, Nick Tong [EMAIL PROTECTED] wrote: HI All, For those of you not on the

Re: Multi-Language Site

2007-05-09 Thread Jon Clausen
On May 9, 2007, at 12:51 PM, Paul Hastings wrote: Jon Clausen wrote: 1) Sets the language locale variable which is cross referenced to the #server.coldfusion.supportedlocales#. This allows you to use Coldfusion internationalization for dates/currency formatting. you have to be careful with

  1   2   >