RE: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Andrew Scott
Speaking of debugging, I had a lot of trouble getting ColdFusion debugger and Flash debugger working together. It turned out that it wasn't as hard as I thought, if anyone is interested. http://www.andyscott.id.au/2010/4/5/Debugging-with-ColdFusion-Builder-and-Fl ash-Builder-in-same-IDE

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Rae Buerckner
Glad you got it sorted :) It can get tricky, there's an awesome tool I use for debugging which you might find useful it can be found here http://www.charlesproxy.com/ can save many hours of head scratching :) Cheers, Rae On 10 August 2010 16:16, Mike Kear wrote: > PROGRESS! > > I searched arou

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
PROGRESS! I searched around and ended up finding a much more comprehensive tutorial. I was looking at the test drive earlier, which takes a pretty quick view of a complex thing. The tutorial I found is called Flex In A Week, which covers the issues i was having in much more depth and now I'v

Re: [cfaussie] Multi Language Sites

2010-08-09 Thread Sean Corfield
These need to be executed on every request (put in your Application.onRequestStart() for example): setEncoding( "url", "utf-8" ); setEncoding( "form", "utf-8" ); Make sure your DB connection is set to handle UTF-8. If you have any accented characters or such in your templates, make sure they hav

[cfaussie] Melbourne Jobs

2010-08-09 Thread Dale Fraser
I know this will annoy people, but I am honestly running out of options, I just want to find some people, so if you or anyone is looking for a ColdFusion development position. Please apply http://seek.com.au/job/multiple-coldfusion-developer-positions/melbourne-cbd -inner-suburbs/17827277/81/1

[cfaussie] Multi Language Sites

2010-08-09 Thread Steve Onnis
How do people handle the URLs for this? Do you have a different URL for the different language? If so how do you deal with special language characters in the URL string? For example i am doing some french stuff atm and they use a lot of accented characters and as i am using SES URLs i am wonderin

[cfaussie] Any students who want to go to cf.Objective(ANZ)?

2010-08-09 Thread Mark Mandel
Sorry if this is a little promote-y, but I figured it was for a good cause. I just wanted to check to see if there are any AU Students that are interested in coming to cf.Objective(ANZ) on this list. We're running a competition for tickets, flights and accomodation all paid for for the conference

[cfaussie] Re: CFObjective ANZ

2010-08-09 Thread Geoff Bowers
On Aug 4, 5:16 pm, Gavin Baumanis wrote: > Anyone here planning on going to any of the pre-conference workshops? Without meaning to take numbers from the awesome workshops planned, I was thinking of organising another FarCry Devday at Melbourne Uni the day before -- a free, all day, structured ga

RE: [cfaussie] Writing cookie to DB

2010-08-09 Thread Bryce Hoffmann
Worked like a charm - Thanks Gareth and Andrew (I would say the dashes were indeed the issue) Bryce :-) -Original Message- From: Gareth Edwards [mailto:ghedwa...@gmail.com] Sent: Tuesday, 10 August 2010 12:05 PM To: cfaussie@googlegroups.com Cc: Bryce Hoffmann Subject: Re: [cfaussie] Wri

RE: [cfaussie] Writing cookie to DB

2010-08-09 Thread Andrew Scott
That should work, my guess is that the compiler is seeing the minus signs and trying to evaluate the expression. Regards, Andrew Scott http://www.andyscott.id.au/ > -Original Message- > From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On > Behalf Of Gareth Edwards > Se

Re: [cfaussie] Writing cookie to DB

2010-08-09 Thread Gareth Edwards
This is just a guess, but have you tried cookie["inettuts-widget-preferences"] ? Cheers Gareth. On 10/08/10 12:02 PM, Bryce Hoffmann wrote: Hi all, some insight please would be great. I have some JavaScript that produces a cookie called 'inettuts-widget-preferences'. I can CFdump all the coo

[cfaussie] Writing cookie to DB

2010-08-09 Thread Bryce Hoffmann
Hi all, some insight please would be great. I have some JavaScript that produces a cookie called 'inettuts-widget-preferences'. I can CFdump all the cookie variables and it appears in the dump. But when I try to refer to it directly in the CFML (ie 'cookie.inettuts-widget-preferences') I get a C

RE: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Andrew Scott
Mike, Flash Builder 4 does allow for multiple projects to the web server, it is not very intuitive or developer friendly if you ask me. Regards, Andrew Scott http://www.andyscott.id.au/ > -Original Message- > From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On > Behalf

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Rae Buerckner
Hi Mike, This may shed some light for you, you can have relationships between projects http://stackoverflow.com/questions/744937/how-do-teams-use-flex-builder-pro-to-develop-large-applications Cheers, Rae On 10 August 2010 10:46, Mike Kear wrote: > I cant believe that FlashBuilder doesnt all

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
I cant believe that FlashBuilder doesnt allow for the possibility of people having multiple web site projects on their dev machines. Surely developers at big sites have multiple projects they work on! It's not just us freelancers that have to have dozens of web sites configured.     Is it? I've tri

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Gareth Edwards
Sorry Mike, some of the details in that link maybe a little irrelevant, ie, you don't need LCDS ( Dataservices ) to use remoting on CF 9, so CF9 ships with BlazeDS out of the box, and so in theory, remoting should be enabled by default. Cheers Gareth. On 10/08/10 10:20 AM, Mike Kear wrote: A

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
AH!! does Coldfusion9.01 support remoting out of the box or do i have to add remoting to it? I thought it was only the old CF6 that didnt support remoting out of the box. Am I wrong on that? Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Gareth Edwards
Hi Mike, If you select none for your server configuration, it doesn't mean you can't connect to the ColdFusion server, it's also important to note that in most CF setups the default configuration is not to allow CF mappings over the remote connections. Your end point configuration can be done

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Rae Buerckner
Hi Mike, You might have to fiddle with virtual hosts for apache to map to where your CFCs are, mine are located outside the web root. I'm still on FB3 so can't help with FB4. Cheers, Rae On 10 August 2010 08:55, Mike Kear wrote: > Thanks Rae, I tried that and it liked that. At that point.

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
Thanks Gareth, At the moment I'm just wanting to build SOMETHING in Flex, using my ColdFusion server, so i can start to add Flex apps to my other coldfusion work.At the moment, I'm not even getting off the starting blocks with it. As to "dynamic channelset / end point utility class", that's

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
Thanks Rae, I tried that and it liked that. At that point. Then when I tried to connect to the data service, it said the cfc had to be under the web root.So that kind of implies that on the earlier page, the project properties setup, when i put in server root, it really wanted the web si

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Gareth Edwards
Hi Mike, Are you wanting to take advantage of the Flex 4 -> CF tool set ? A connection to your CF server and webroot is only necessary if this is the case. We found the drag and drop connectors to be more trouble then they were worth, and ended up implementing a dynamic channelset / end poin

[cfaussie] [ANN-BRIS] Reminder: QLD CFUG - Tonight.

2010-08-09 Thread Ricardo Russon
Join us for a night of CF, Pizza and Beer, where we will be discussing different version control and build systems. We will show you some tips and open a discussion around Version Control systems SVN and Git, Build systems like ANT, Maven and Hudson, and how they might fit in to your workflow. RS

Re: [cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Rae Buerckner
Hi Mike, My settings are Root Folder: C:\Program Files\Apache Software Foundation\Apache2.2\htdocs Root URL: http://localhost/ ColdFusion WAR: C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war Context Root: Leave blank Cheers, Rae On 10 August 2010 07:43, Mike Kear wrote: > I've started lea

[cfaussie] Need help setting up flex project folders please

2010-08-09 Thread Mike Kear
I've started learning about flex, and using Adobe FlashBuilder 4. But I'm not too sure how to set up the locations in the project properties.Sorry this is such a beginner question, but when it comes to flex, that's what I am! Here's my setup, and i'm not sure what to put where - the terminol