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

 

 

Regards,

Andrew Scott

http://www.andyscott.id.au/

 

 

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Rae Buerckner
Sent: Tuesday, 10 August 2010 4:49 PM
To: cfaussie@googlegroups.com
Subject: Re: [cfaussie] Need help setting up flex project folders please

 

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

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 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've got things rocking along beautifully.
>
> As it happens, the day one presentations also go into Eclipse matters
> quite a bit too,  and that explains lots of things that were not
> apparent to me when i last looked at Eclipse.
>
> Thanks for your help  Rae, Gerald and Andrew.
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
>
>
>
> On Tue, Aug 10, 2010 at 11:30 AM, Andrew Scott 
> wrote:
> > 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/
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.
>
>


-- 
---
Rae Buerckner
E: rae.buerck...@gmail.com
M: +61 409 251 548
W: http://www.raebuerckner.com

ACT Adobe Products User Group Manager
http://groups.adobe.com/groups/8980662cdb/summary

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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've got things rocking along beautifully.

As it happens, the day one presentations also go into Eclipse matters
quite a bit too,  and that explains lots of things that were not
apparent to me when i last looked at Eclipse.

Thanks for your help  Rae, Gerald and Andrew.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



On Tue, Aug 10, 2010 at 11:30 AM, Andrew Scott  wrote:
> 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/
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 have this:



Look into Paul Hastings' i18n stuff - for formatting dates etc and
maybe resource bundles (or do everything from the DB). Using standard
Java locales and you can use this code to convert a standard locale to
a localized display name (in the locale's default language):



That strips the parenthesized sub-locale so it's easier to read.

On my current project, users can choose their language and it's set
for their session (so nothing special in the URL).

Hope that helps?

Ping me off-list (sean at corfield dot org) if you need more details.
If other folks have questions on the list, I'm happy to share.

Sean

On Mon, Aug 9, 2010 at 9:37 PM, Steve Onnis  wrote:
> 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 wondering
> whats the best way to do this.
>
> Steve

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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/

 

It's getting harder, I need to use all measures possible, I posted last week
on cfjobs & seek got me nowhere.

 

Paul told me "Just do it"

 

Regards

Dale Fraser

 

  http://dale.fraser.id.au

  http://cfmldocs.com

  http://learncf.com

  http://flexcf.com

 

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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 wondering
whats the best way to do this.
 
Steve

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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.

You just have to be a student, and send in a short entry.

Details are here:
http://www.cfobjective.com.au/go/news/student-ticket-giveaway--flights-and-accomodation-too

If anyone is involved in the education sector, please feel free to pass this
on to anyone who may be interested.

It's a pretty great opportunity for a student to learn a bunch of cool
things, and do some great networking with the ANZ ColdFusion Community.

Just thought I would promote it here as well, to make sure everyone saw it.

Mark

-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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 gab fest on all things
FarCry.  This was really successful last year and if we have enough
interest, we'd be happy to run a similar thing this year.  Just drop
me a line if you are interested.

-- geoff
http://www.daemon.com.au/

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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] Writing cookie to DB

  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 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 CF error
>
> Regards Bryce :-)
>
>
> *** Confidentiality and Disclaimer Statement *
> The information in this e-mail and any attachments are confidential and may 
> be subject to legal professional privilege. It is intended solely for the 
> attention and use of the named addressee(s). If you are not the intended 
> recipient, or person responsible for delivering this information to the 
> intended recipient, please notify the sender immediately. Unless you are the 
> intended recipient or his/her representative you are not authorised to, and 
> must not read, copy, distribute, use or retain this message or any part of it.
>
> Opinions, conclusions and other information expressed in this message are not 
> given or endorsed by NCC unless otherwise indicated by an authorised officer 
> independent of this message.
>
> NCC has implemented anti-virus software, and whilst all care is taken, it is 
> the recipient's responsibility to ensure that the message and any attachments 
> are scanned for viruses prior to use.
>
> This footnote also confirms this e-mail message has been read electronically 
> by an e-mail content breakdown system.
>
> Newcastle City Council
> Web: http://www.newcastle.nsw.gov.au
> E-mail: m...@ncc.nsw.gov.au
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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
> Sent: Tuesday, 10 August 2010 12:05 PM
> To: cfaussie@googlegroups.com
> Cc: Bryce Hoffmann
> Subject: Re: [cfaussie] Writing cookie to DB
> 
>   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 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 CF error
> >
> > Regards Bryce :-)
> >
> >
> > *** Confidentiality and Disclaimer Statement
> *
> > The information in this e-mail and any attachments are confidential and
> may be subject to legal professional privilege. It is intended solely for
the
> attention and use of the named addressee(s). If you are not the intended
> recipient, or person responsible for delivering this information to the
> intended recipient, please notify the sender immediately. Unless you are
the
> intended recipient or his/her representative you are not authorised to,
and
> must not read, copy, distribute, use or retain this message or any part of
it.
> >
> > Opinions, conclusions and other information expressed in this message
are
> not given or endorsed by NCC unless otherwise indicated by an authorised
> officer independent of this message.
> >
> > NCC has implemented anti-virus software, and whilst all care is taken,
it is
> the recipient's responsibility to ensure that the message and any
> attachments are scanned for viruses prior to use.
> >
> > This footnote also confirms this e-mail message has been read
> electronically by an e-mail content breakdown system.
> >
> > Newcastle City Council
> > Web: http://www.newcastle.nsw.gov.au
> > E-mail: m...@ncc.nsw.gov.au
> >
> >
> >
> 
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 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 CF error

Regards Bryce :-)


*** Confidentiality and Disclaimer Statement *
The information in this e-mail and any attachments are confidential and may be 
subject to legal professional privilege. It is intended solely for the 
attention and use of the named addressee(s). If you are not the intended 
recipient, or person responsible for delivering this information to the 
intended recipient, please notify the sender immediately. Unless you are the 
intended recipient or his/her representative you are not authorised to, and 
must not read, copy, distribute, use or retain this message or any part of it.

Opinions, conclusions and other information expressed in this message are not 
given or endorsed by NCC unless otherwise indicated by an authorised officer 
independent of this message.

NCC has implemented anti-virus software, and whilst all care is taken, it is 
the recipient's responsibility to ensure that the message and any attachments 
are scanned for viruses prior to use.

This footnote also confirms this e-mail message has been read electronically by 
an e-mail content breakdown system.

Newcastle City Council
Web: http://www.newcastle.nsw.gov.au
E-mail: m...@ncc.nsw.gov.au





--
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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 CF error

Regards Bryce :-)


*** Confidentiality and Disclaimer Statement *
The information in this e-mail and any attachments are confidential and may be 
subject to legal professional privilege. It is intended solely for the 
attention and use of the named addressee(s). If you are not the intended 
recipient, or person responsible for delivering this information to the 
intended recipient, please notify the sender immediately. Unless you are the 
intended recipient or his/her representative you are not authorised to, and 
must not read, copy, distribute, use or retain this message or any part of it.

Opinions, conclusions and other information expressed in this message are not 
given or endorsed by NCC unless otherwise indicated by an authorised officer 
independent of this message.

NCC has implemented anti-virus software, and whilst all care is taken, it is 
the recipient's responsibility to ensure that the message and any attachments 
are scanned for viruses prior to use.

This footnote also confirms this e-mail message has been read electronically by 
an e-mail content breakdown system.

Newcastle City Council
Web: http://www.newcastle.nsw.gov.au
E-mail: m...@ncc.nsw.gov.au



-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 Of Mike Kear
> Sent: Tuesday, 10 August 2010 10:47 AM
> To: cfaussie
> Subject: Re: [cfaussie] Need help setting up flex project folders please
> 
> 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 tried several ways to configure this Flash Builder 4 and it's NOTHING
at all
> like I've seen in the many videos and docs I've found on the Adobe site.  
 I'm
> mid way through a video called "Flash Builder 4 for ColdFusion developers"
> and it starts out with the statement that knowledge of Flash Builder 4 and
> Coldfusion is a prerequisite.  HUH???
> 
> Nowhere that I've found describes how to set up Flash Builder 4 and
> multiple web projects. Has anyone found any resource that can help
> me with this?I don't want to be forced to give up on flex before i
> have even got started.
> 
> And yes, thanks Gareth, i see in the CFAdministrator that remoting is
already
> enabled in CF9 out of the box.
> 
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer AFP Webworks
> http://afpwebworks.com ColdFusion 9 Enterprise, PHP, ASP, ASP.NET
> hosting from AUD$15/month
> 
> 
> 
> On Tue, Aug 10, 2010 at 10:25 AM, Gareth Edwards 
> wrote:
> >
> > 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.
> 
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 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 tried several ways to configure this Flash Builder 4 and it's
> NOTHING at all like I've seen in the many videos and docs I've found
> on the Adobe site.I'm mid way through a video called "Flash
> Builder 4 for ColdFusion developers"  and it starts out with the
> statement that knowledge of Flash Builder 4 and Coldfusion is a
> prerequisite.  HUH???
>
> Nowhere that I've found describes how to set up Flash Builder 4 and
> multiple web projects. Has anyone found any resource that can help
> me with this?I don't want to be forced to give up on flex before i
> have even got started.
>
> And yes, thanks Gareth, i see in the CFAdministrator that remoting is
> already enabled in CF9 out of the box.
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
>
>
>
> On Tue, Aug 10, 2010 at 10:25 AM, Gareth Edwards 
> wrote:
> >
> > 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.
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.
>
>


-- 
---
Rae Buerckner
E: rae.buerck...@gmail.com
M: +61 409 251 548
W: http://www.raebuerckner.com

ACT Adobe Products User Group Manager
http://groups.adobe.com/groups/8980662cdb/summary

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 tried several ways to configure this Flash Builder 4 and it's
NOTHING at all like I've seen in the many videos and docs I've found
on the Adobe site.    I'm mid way through a video called "Flash
Builder 4 for ColdFusion developers"  and it starts out with the
statement that knowledge of Flash Builder 4 and Coldfusion is a
prerequisite.  HUH???

Nowhere that I've found describes how to set up Flash Builder 4 and
multiple web projects. Has anyone found any resource that can help
me with this?I don't want to be forced to give up on flex before i
have even got started.

And yes, thanks Gareth, i see in the CFAdministrator that remoting is
already enabled in CF9 out of the box.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



On Tue, Aug 10, 2010 at 10:25 AM, Gareth Edwards  wrote:
>
> 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.

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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:
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://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET  hosting 
from AUD$15/month





--
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 
after your flex project is setup, but it doesn't give you access to some 
of the newer Flex 4 "Fiber" tools. ( Drag and Drop, Client side paging, 
etc )


This might help you understand the CF end point configuration files a 
little better. They are typically more important than you would like to 
think.


http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7c4b.html

Cheers
Gareth.

On 10/08/10 9:00 AM, Mike Kear wrote:

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 a whole 
'nother bucket of worms I have a lot to learn about.


It all looks so easy on the Adobe web site, and everyone has been 
saying "flex is so easy its great!"  so I figured I'd be a mug to 
ignore it.I suspect the trouble is,  the designers of FlashBuilder 
4 didnt take into account the possibility that users might have more 
than one web site to manage.  But I acknowledge that I have a  LOT to 
learn about this whole discipline yet.


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET  hosting 
from AUD$15/month



On Tue, Aug 10, 2010 at 8:39 AM, Gareth Edwards > wrote:


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 point utility class, much like the configuration
available through the end point configuration xml files, but
customised for our requirements.

I hope this helps a little, and doesn't bring even more confusion,
let us know more about what your trying to do.

Cheers
Gareth.




--
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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.  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 site
> root.
>
> But it didnt like that.
>
> Does this mean the only way to use Flash Builder 4 to build flex
> applications is if you only have one web site configured on your server, and
> it has to have all its files stored under the server's root??   Surely not?
>
>
> How do all those agencies and development consultancies configure this?
>  how do companies like Rocketboots and Daemon do it?  (I guess they dont use
> Flash Builder 4 perhaps).
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
>
>
>
> On Tue, Aug 10, 2010 at 8:37 AM, Rae Buerckner wrote:
>
>> 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
>>
>>
>>  --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.
>



-- 
---
Rae Buerckner
E: rae.buerck...@gmail.com
M: +61 409 251 548
W: http://www.raebuerckner.com

ACT Adobe Products User Group Manager
http://groups.adobe.com/groups/8980662cdb/summary

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 a whole
'nother bucket of worms I have a lot to learn about.

It all looks so easy on the Adobe web site, and everyone has been saying
"flex is so easy its great!"  so I figured I'd be a mug to ignore it.I
suspect the trouble is,  the designers of FlashBuilder 4 didnt take into
account the possibility that users might have more than one web site to
manage.  But I acknowledge that I have a  LOT to learn about this whole
discipline yet.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


On Tue, Aug 10, 2010 at 8:39 AM, Gareth Edwards  wrote:

>  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 point
> utility class, much like the configuration available through the end point
> configuration xml files, but customised for our requirements.
>
> I hope this helps a little, and doesn't bring even more confusion, let us
> know more about what your trying to do.
>
> Cheers
> Gareth.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 site
root.

But it didnt like that.

Does this mean the only way to use Flash Builder 4 to build flex
applications is if you only have one web site configured on your server, and
it has to have all its files stored under the server's root??   Surely not?


How do all those agencies and development consultancies configure this?  how
do companies like Rocketboots and Daemon do it?  (I guess they dont use
Flash Builder 4 perhaps).

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



On Tue, Aug 10, 2010 at 8:37 AM, Rae Buerckner wrote:

> 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
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 
point utility class, much like the configuration available through the 
end point configuration xml files, but customised for our requirements.


I hope this helps a little, and doesn't bring even more confusion, let 
us know more about what your trying to do.


Cheers
Gareth.

On 10/08/10 7:43 AM, Mike Kear wrote:
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 terminology 
in Flash Builder 4 is a bit confusing for me about what it wants where 



I have an Apache web server.The root of the web server is at the 
default location:  C:\Program Files\Apache Software 
Foundation\Apache2.2\htdocs
I have ColdFusion 9.01 set up as a J2EE server,  at the default 
location:c:\jrun4
I have my web sites (multiple) set up on a different drive.   The 
place where I'm wanting to set up my flex project is at 
 E:\Sites\Mysites\FlexTutorialApp\wwwroot
The URL of the project is http://dev.flexapp  which points 
to E:\Sites\Mysites\FlexTutorialApp\wwwroot
The coldfusion WAR folder is the default setting 
of C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war.


I was hoping to put the source files outside the web site,   so they 
didnt confuse the issue when i came to deploy an application to the 
production server later on.  I was wanting to have the flex source 
files at E:\Sites\Mysites\FlexTutorialApp\Resources\FlexSource


So here's my question(s):

[A] Flashbuilder wants me to tell it the SERVER location when i 
establish the project properties.   Does it mean the location of 
coldfusion (c:\jrun4) or the location of my web site 
 (E:\Sites\Mysites\FlexTutorialApp\wwwroot), or maybe the root of the 
Apache web server ( C:\Program Files\Apache Software 
Foundation\Apache2.2\htdocs )  which has nothing in it except the 
apache default files?   The Flashbuilder project properties dialog box 
wants 'web root' and 'web root url'  but its surrounded by a label 
saying 'server location'.I guess they had in mind a server with 
only one web site on it at the time they designed the box.   Yes?


[B] When i click on 'validate configuration' it says 'Cannot access 
the web server. The server may not be running, or the web root folder 
or root URL may be invalid.'  I know the server is running because the 
url http://dev.flexapp shows the site root at index.cfm.


So I've missed something somewhere or not understood what Flash 
Builder's looking for  - can anyone help please?


--
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET  hosting 
from AUD$15/month

--
You received this message because you are subscribed to the Google 
Groups "cfaussie" group.

To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.


--
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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.

RSVP: http://qld.cfug.org.au/

LOCATION:

TASS - Bowen Hills, Brisbane
Unit 1/31 Thompson St, Bowen Hills, 4006

AGENDA:

6:00 - 6:45 PM - Doors Open, Welcome, News, Food and Drink
A welcome to CFUG / Discussions with Fellow Attendees.
Food and Drink Available.
Quick News about items in previous or coming months.

6:45 - 8:00 PM - Main Presentation
Presented by Gareth Edwards and Ricardo Russon.

8:00 - 8:30 PM - Prize Draw
Make sure you RSVP to enter the draw.

8:30 - 9:00 PM - Open Q&A
We will open the floor to any general questions and discussions.
If you would like to send any questions, concerns or topics
beforehand, please feel free.

SEEKING PRESENTERS:

Anyone wishing to present to the group, or looking for additional
info on presenting, please contact ghedwards (at) gmail.com
If there is anything at all that you would like to see presented at
future meetings, please let us know.

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



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 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 terminology in
> Flash Builder 4 is a bit confusing for me about what it wants where 
>
> I have an Apache web server.The root of the web server is at the
> default location:  C:\Program Files\Apache Software
> Foundation\Apache2.2\htdocs
> I have ColdFusion 9.01 set up as a J2EE server,  at the default location:
>  c:\jrun4
> I have my web sites (multiple) set up on a different drive.   The place
> where I'm wanting to set up my flex project is at
>  E:\Sites\Mysites\FlexTutorialApp\wwwroot
> The URL of the project is http://dev.flexapp  which points
> to E:\Sites\Mysites\FlexTutorialApp\wwwroot
> The coldfusion WAR folder is the default setting
> of C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war.
>
> I was hoping to put the source files outside the web site,   so they didnt
> confuse the issue when i came to deploy an application to the production
> server later on.  I was wanting to have the flex source files
> at E:\Sites\Mysites\FlexTutorialApp\Resources\FlexSource
>
> So here's my question(s):
>
> [A] Flashbuilder wants me to tell it the SERVER location when i establish
> the project properties.   Does it mean the location of coldfusion (c:\jrun4)
> or the location of my web site  (E:\Sites\Mysites\FlexTutorialApp\wwwroot),
> or maybe the root of the Apache web server ( C:\Program Files\Apache
> Software Foundation\Apache2.2\htdocs )  which has nothing in it except the
> apache default files?   The Flashbuilder project properties dialog box wants
> 'web root' and 'web root url'  but its surrounded by a label saying 'server
> location'.I guess they had in mind a server with only one web site on it
> at the time they designed the box.   Yes?
>
> [B] When i click on 'validate configuration' it says 'Cannot access the web
> server. The server may not be running, or the web root folder or root URL
> may be invalid.'  I know the server is running because the url
> http://dev.flexapp shows the site root at index.cfm.
>
> So I've missed something somewhere or not understood what Flash Builder's
> looking for  - can anyone help please?
>
> --
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To post to this group, send email to cfaus...@googlegroups.com.
> To unsubscribe from this group, send email to
> cfaussie+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/cfaussie?hl=en.
>



-- 
---
Rae Buerckner
E: rae.buerck...@gmail.com
M: +61 409 251 548
W: http://www.raebuerckner.com

ACT Adobe Products User Group Manager
http://groups.adobe.com/groups/8980662cdb/summary

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[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 terminology in
Flash Builder 4 is a bit confusing for me about what it wants where 

I have an Apache web server.The root of the web server is at the default
location:  C:\Program Files\Apache Software Foundation\Apache2.2\htdocs
I have ColdFusion 9.01 set up as a J2EE server,  at the default location:
 c:\jrun4
I have my web sites (multiple) set up on a different drive.   The place
where I'm wanting to set up my flex project is at
 E:\Sites\Mysites\FlexTutorialApp\wwwroot
The URL of the project is http://dev.flexapp  which points
to E:\Sites\Mysites\FlexTutorialApp\wwwroot
The coldfusion WAR folder is the default setting
of C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war.

I was hoping to put the source files outside the web site,   so they didnt
confuse the issue when i came to deploy an application to the production
server later on.  I was wanting to have the flex source files
at E:\Sites\Mysites\FlexTutorialApp\Resources\FlexSource

So here's my question(s):

[A] Flashbuilder wants me to tell it the SERVER location when i establish
the project properties.   Does it mean the location of coldfusion (c:\jrun4)
or the location of my web site  (E:\Sites\Mysites\FlexTutorialApp\wwwroot),
or maybe the root of the Apache web server ( C:\Program Files\Apache
Software Foundation\Apache2.2\htdocs )  which has nothing in it except the
apache default files?   The Flashbuilder project properties dialog box wants
'web root' and 'web root url'  but its surrounded by a label saying 'server
location'.I guess they had in mind a server with only one web site on it
at the time they designed the box.   Yes?

[B] When i click on 'validate configuration' it says 'Cannot access the web
server. The server may not be running, or the web root folder or root URL
may be invalid.'  I know the server is running because the url
http://dev.flexapp shows the site root at index.cfm.

So I've missed something somewhere or not understood what Flash Builder's
looking for  - can anyone help please?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.