[cfaussie] cfpdf action=merge - CF 8 Update 1

2008-04-10 Thread Phil Haeusler
Just to let you all know that of a regression bug in CF8.01.  The pages 
attribute now seems to be mandatory for cfpdf action=merge under CF 
8.01.  Existing code that merges PDFs together will break if you don't now 
use the pages attribute.  You have to add a pages=* to get it to run.

I'd just like to publicly thank RocketUnit http://rocketunit.riaforge.org/ 
for finding this for me the moment we upgraded our dev server here.  I 
encourage everyone who isn't actively unit testing to have a look at 
RocketUnit or any other unit testing framework as they will saves you a lot 
of heartache.  It takes about 5 minutes to get your first test running, and 
after that you'll be streets ahead.

Phil
 

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



[cfaussie] Re: Just in case anyone's feeling bored...

2008-04-14 Thread Phil Haeusler
An oldie, but a goodie. You're left scatching your head until you work out 
the following

cfoutput
#isDate(000A)# 
#isDate(012A)# 
#isDate(000P)# 
#isDate(012P)#
/cfoutput

CF's wonderful automatic date conversions 
phil
cfoutput
#round(000 EQ 000A)#
#round(000 EQ 000A)#
#round(000A EQ 012A)#
#round(000P EQ 012P)#
/cfoutput

...Very interesting results.
Joel Cass Developer
Gruden - Design | Development | Implementation
t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com 


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



[cfaussie] Re: String concatenation - what's happening here?

2009-05-31 Thread Phil Haeusler
Mike,
It looks like you're got CF trying to do an integer division with two 
strings.  Try 
 
cfset temporaryfile = gettemporarydirabs()  \  theImage.getName()# /

instead.  That should work for you.

Phil


-Original Message-
From: Mike Kear afpwebwo...@gmail.com
To: cfaussie cfaussie@googlegroups.com
Date: Mon, 1 Jun 2009 14:38:33 +1000
Subject: [cfaussie] String concatenation - what's happening here?



i'm trying to concatenate two values - an absolute directory and a
filename into an absolute file reference for CFFILE to manipulate.
But i'm getting an error.  I've tried every combination and
permutation I can think of but still havent hit the correct one .  can
anyone see what i'm obviously too close to now to see?

The two values (which DO return strings  - i've checked) are :
#gettemporarydirabs()#   and  #theImage.getName()#

The error is:  The value
E:\Sites\Customers\Customername\wwwroot\cms\images\userfiles\Temporary
cannot be converted to a number. That value is what is returned
from the first function gettemporarydirabs() .

The line that causes the error is:
cfset temporaryfile = tostring(#gettemporarydirabs()#\#theImage.getName()#) 
/

I've also tried the following:

cfset temporaryfile = #gettemporarydirabs()#\#theImage.getName()# /
cfset temporaryfile = evaluate(#gettemporarydirabs()#\#theImage.getName()#) 
/
cfset temporaryfile = tostring(#gettemporarydirabs()#  \ 
#theImage.getName()#) /

and a few other combinations, but all give the same result.

What am I missing here?   (I just KNOW its going to end up being one
of those 'slap the forehead' moments!)



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, 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 cfaussie@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: String concatenation - what's happening here?

2009-05-31 Thread Phil Haeusler
...of course without the # at the end

cfset temporaryfile = gettemporarydirabs()  \  theImage.getName() /




-Original Message-
From: Phil Haeusler p...@gtnet.com.au
To: cfaussie@googlegroups.com
Date: Mon, 01 Jun 2009 14:47:58 +1000
Subject: [cfaussie] Re: String concatenation - what's happening here?


Mike,
It looks like you're got CF trying to do an integer division with two 
strings.  Try 
 
cfset temporaryfile = gettemporarydirabs()  \  theImage.getName()# /

instead.  That should work for you.
 
Phil


-Original Message-
From: Mike Kear afpwebwo...@gmail.com
To: cfaussie cfaussie@googlegroups.com
Date: Mon, 1 Jun 2009 14:38:33 +1000
Subject: [cfaussie] String concatenation - what's happening here?



i'm trying to concatenate two values - an absolute directory and a
filename into an absolute file reference for CFFILE to manipulate.
But i'm getting an error.  I've tried every combination and
permutation I can think of but still havent hit the correct one .  can
anyone see what i'm obviously too close to now to see?

The two values (which DO return strings  - i've checked) are :
#gettemporarydirabs()#   and  #theImage.getName()#

The error is:  The value
E:\Sites\Customers\Customername\wwwroot\cms\images\userfiles\Temporary
cannot be converted to a number. That value is what is returned
from the first function gettemporarydirabs() .

The line that causes the error is:
cfset temporaryfile = tostring(#gettemporarydirabs()#\#theImage.getName()#) 
/

I've also tried the following:

cfset temporaryfile = #gettemporarydirabs()#\#theImage.getName()# /
cfset temporaryfile = evaluate(#gettemporarydirabs()#\#theImage.getName()#) 
/
cfset temporaryfile = tostring(#gettemporarydirabs()#  \ 
#theImage.getName()#) /

and a few other combinations, but all give the same result.

What am I missing here?   (I just KNOW its going to end up being one
of those 'slap the forehead' moments!)



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, 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 cfaussie@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] CFUG Melbourne: Reminder, tonight. (18 March 2010 ) Robin Hilliard on RSOAD (Rapid Service-Oriented Architecture Development)

2010-03-17 Thread Phil Haeusler
I'll be there tonight
Phil




-Original Message-

From: Peter Robertson pe...@p-robertson.com

To: cfaussie cfaussie@googlegroups.com

Date: Wed, 17 Mar 2010 17:56:46 -0700 (PDT)

Subject: [cfaussie] CFUG Melbourne: Reminder, tonight.  (18 March 2010 ) 
Robin  Hilliard on RSOAD (Rapid Service-Oriented Architecture Development)




Thanks to all those who've RSVPed.

Please make sure to let us know if you're coming tonight so Steve

knows how much pizza to order.



This month our guest presenter is Robin Hilliard, CTO and founder of

Rocket Boots.



RSOAD (Rapid Service-Oriented Architecture Development) with

ColdFusion by Robin Hilliard.

Replacing one big ColdFusion application with several simpler,

collaborating and potentially distributed ColdFusion applications

(aka

services) is one way to tackle complexity in large projects, as long

as the inter-service plumbing doesn't get in the way.

Join Robin Hilliard in his continuing quest to add elegance and strip

complexity from ColdFusion development as he demonstrates how to

design SOAs and build services by extending RocketBoots' new

Service.cfc component, which is rather like Application.cfc, but

different in interesting and useful ways.



Date: 18 March 2010

Time: 6:30 PM

Location:

CogState Limited

Level 7 / 21 Victoria St

Melbourne, Victoria 3000

[NOTE: Victoria Street, not Parade!]



See you there!







Peter Robertson



-- 

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 
[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] Melbourne CFUG Programme 2010, request for presenters

2010-03-24 Thread Phil Haeusler
So i guess you'll all be after something a little more challenging this 
year? :)
Note to self: better not leave it to the day before again.
Phil
-Original Message-

From: Robin Hilliard ro...@rocketboots.com.au

To: cfaussie@googlegroups.com

Date: Thu, 25 Mar 2010 13:27:57 +1100

Subject: Re: [cfaussie] Melbourne CFUG Programme 2010, request for 
presenters



BTW, yes, CodeWar is on this year on day 0 of webdu, we're just getting the 
details together.  Happy to help with a CodeWar event or CodeWar-like event 
at CFObjective - the questions all come from Melbourne anyway courtesy of 
quiz-master Hausler...

Robin




On 25/03/2010, at 12:03 PM, Mark Mandel wrote:

I'm sure we can rustle up something, somewhere ;o)

Maybe we come up with an idea for a special event, or possible do a CodeWar 
like Robin does at WebDU.

-- 
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] CFUG Melbourne, Thursday 15 April 2010. ColdFusion Builder

2010-04-14 Thread Phil Haeusler
Hi Peter
I'll be there tonight.
Phil




-Original Message-

From: Peter Robertson pe...@p-robertson.com

To: cfaussie cfaussie@googlegroups.com

Date: Mon, 12 Apr 2010 20:49:45 -0700 (PDT)

Subject: [cfaussie] CFUG Melbourne, Thursday 15 April 2010.  ColdFusion  
Builder




This month Paul Kukiel is going to take us through the ColdFusion

Builder De-bugger.

We'll also be having a general discussion about the members'

experience with CF Builder and a look at Adobe's launch pack.



Date: 15 April 2010

Time: 6:30 PM

Location:

CogState Limited

Level 7 / 21 Victoria St

Melbourne, Victoria 3000

[NOTE: Victoria Street, not Parade!]

(Many thanks again to Dale Fraser and CogState for their

hospitality)



Parking is fairly easy, with a commercial park next door and free

spots fairly easy to find nearby, (try Rathdowne Street).

When you arrive, a notice on the door will list a number to ring, and

someone will come down and let you in.



RSVP:  Please reply to this post if you are planning to attend so we

know how many pizzas to order.



We look forward to seeing you all there.



Peter Robertson



-- 

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 
[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] Re: WSDL assistance.

2010-04-14 Thread Phil Haeusler
Gavin

If i recall correctly, i'm pretty sure i had to make some changes to Robin's 
code to make the remote services part work under CF9 when i was playing with 
it.  There was a difference between CF8  CF9 around how parameters passed 
through CFINVOKE are handled.  I'll dig up my code in a bit and get back to 
you.

Phil




-Original Message-

From: Gavin Baumanis beauecli...@gmail.com

To: cfaussie cfaussie@googlegroups.com

Date: Wed, 14 Apr 2010 16:18:37 -0700 (PDT)

Subject: [cfaussie] Re: WSDL assistance.




Well I decided that I should have a play with Robin's Demo application

and make sure that I could get that working...



And it would seem there might be some other issue other than code

going on here, because I get the exact same error when trying to run

the sample application.



I turned on debug output and when the error is thrown I get the

following message;

Cannot perform web service invocation send.

The fault returned when invoking the web service operation is:

'' java.lang.IllegalArgumentException: argument type mismatch



In the separate debug output window I get a different message though.

/Library/WebServer/Documents/rocketboots/galaxy/trunk/com/rocketboots/

galaxy/Service.cfc(416) @ 09:10:05.780

type   Application

message   Cannot perform web service invocation send.



I don't know if the messags mean the same and they're ust represented

differently or what the story is...



Can I bother someone to download the download Galaxy and try out the

sample app?

I'm on CF9 - so I'd be interested to see if it is a CF version

specific issue or not.



You can obtain the required code (via SVN) from;

http://svn.rocketboots.com/os/galaxy/ 
[http://svn.rocketboots.com/os/galaxy/]



Thanks.



-- 

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 
[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] GalaxySOA on CF9 (was WSDL assistance.)

2010-04-14 Thread Phil Haeusler

HI Gavin

I made the following adjustment to Service.cfc to get it working on CF9 
for remote calls for methods with no parameters.


You'll need to adjust the cfreturn in the onMissingMethod function of 
Service.cfc - Line 416 in latest trunk from


cfreturn webService.send(missingMethodName, missingMethodArguments)

to

cfif not StructCount(missingMethodArguments)
cfreturn webService.send(missingMethodName, JavaCast(null, 0))
cfelse
cfreturn webService.send(missingMethodName, missingMethodArguments)
/cfif

I haven't tested to see if this change breaks earlier versions of CF, 
but it was done in a made rush to get my laptop up and running for the 
last Melb CFUG.  If you can try this and it gets it working for you, and 
we can ensure that it doesn't break earlier CFs we'll put it to Robin to 
get it committed into SVN


Phil


On 15/04/10 9:57 AM, Gavin Baumanis wrote:

HI Phil,
That is great news... thanks..
Great news in the sense that its not me - and that maybe my code is
going to work afterall!

I had a quick look in the Galaxy code - but I have never ever done any
remote service work so it was all a little foreign to me.
Thanks again.

Gavin.

On Apr 15, 9:28 am, Phil Haeuslerp...@gtnet.com.au  wrote:
   

Gavin

If i recall correctly, i'm pretty sure i had to make some changes to Robin's
code to make the remote services part work under CF9 when i was playing with
it.  There was a difference between CF8  CF9 around how parameters passed
through CFINVOKE are handled.  I'll dig up my code in a bit and get back to
you.

Phil

-Original Message-

From: Gavin Baumanisbeauecli...@gmail.com

To: cfaussiecfaussie@googlegroups.com

Date: Wed, 14 Apr 2010 16:18:37 -0700 (PDT)

Subject: [cfaussie] Re: WSDL assistance.

Well I decided that I should have a play with Robin's Demo application

and make sure that I could get that working...

And it would seem there might be some other issue other than code

going on here, because I get the exact same error when trying to run

the sample application.

I turned on debug output and when the error is thrown I get the

following message;

Cannot perform web service invocation send.

The fault returned when invoking the web service operation is:

'' java.lang.IllegalArgumentException: argument type mismatch

In the separate debug output window I get a different message though.

/Library/WebServer/Documents/rocketboots/galaxy/trunk/com/rocketboots/

galaxy/Service.cfc(416) @ 09:10:05.780

type   Application

message   Cannot perform web service invocation send.

I don't know if the messags mean the same and they're ust represented

differently or what the story is...

Can I bother someone to download the download Galaxy and try out the

sample app?

I'm on CF9 - so I'd be interested to see if it is a CF version

specific issue or not.

You can obtain the required code (via SVN) from;

http://svn.rocketboots.com/os/galaxy/
[http://svn.rocketboots.com/os/galaxy/]

Thanks.

--

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 
athttp://groups.google.com/group/cfaussie?hl=en
[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] Re: GalaxySOA on CF9 (was WSDL assistance.)

2010-04-14 Thread Phil Haeusler
This is always a good idea when dealing with Web Services and it has caught 
me out more than once.  Wouldn't hurt to refresh it - however with Galaxy, 
all remote calls are proxied through the send() remote method rather than 
to the method directly so there WSDL signature of your service shouldn't 
change with you are using a standard GalaxySOA implementation.
Phil




-Original Message-

From: Mark Mandel mark.man...@gmail.com

To: cfaussie@googlegroups.com

Date: Thu, 15 Apr 2010 11:42:38 +1000

Subject: Re: [cfaussie] Re: GalaxySOA on CF9 (was WSDL assistance.)




Very quick question - when you update the remote code are you

refreshing the wsdl in the administrator?



On 4/15/10, Gavin Baumanis beauecli...@gmail.com wrote:

 In the interest of quite possibly making an idiot of myself...



 Hi Phil,



 I have made the changes you provided and I get the same error in the

 same place.

 Only of course this time it is in the cfelse part of the code you

 sent me.



 It of course works correctly with the Sample app provided by Robin...

 so now I am back a step I suppose

 with the issue of obviously doing something wrong with my code -

 bummer.



 Interestingly, I created a method in that CFC that takes no arguments

 and returns a simple string.

 That works as I would have expected.



 Here is the line used to invoke the method on the remote service;

 #remoteLoginService.fn_check_user_in_ldap(user = 'test_user', password

 = 'test_password')#



 Here is the cffunction declaration;

 cffunction

   name=fn_authenticate_user

   hint=Function to Authenticate User Against specified LDAP Server :

 I return a user object if successful

   access=public

   returntype=Any



 So it would seem that I have an issue with sending arguments to my

 method if I use it is a remote service.



 Hopefully it is somehting glaringly obvious.. and everyone cvan take

 turns slapping my forehead at the CFUG!



 Gavin.





 On Apr 15, 10:55 am, Phil Haeusler p...@gtnet.com.au wrote:

 HI Gavin



 I made the following adjustment to Service.cfc to get it working on CF9

 for remote calls for methods with no parameters.



 You'll need to adjust the cfreturn in the onMissingMethod function of

 Service.cfc - Line 416 in latest trunk from



 cfreturn webService.send(missingMethodName, missingMethodArguments)



 to



 cfif not StructCount(missingMethodArguments)

 cfreturn webService.send(missingMethodName, JavaCast(null, 0))

 cfelse

 cfreturn webService.send(missingMethodName, missingMethodArguments)

 /cfif



 I haven't tested to see if this change breaks earlier versions of CF,

 but it was done in a made rush to get my laptop up and running for the

 last Melb CFUG.  If you can try this and it gets it working for you, and

 we can ensure that it doesn't break earlier CFs we'll put it to Robin to

 get it committed into SVN



 Phil



 On 15/04/10 9:57 AM, Gavin Baumanis wrote:



  HI Phil,

  That is great news... thanks..

  Great news in the sense that its not me - and that maybe my code is

  going to work afterall!



  I had a quick look in the Galaxy code - but I have never ever done any

  remote service work so it was all a little foreign to me.

  Thanks again.



  Gavin.



  On Apr 15, 9:28 am, Phil Haeuslerp...@gtnet.com.au  wrote:



  Gavin



  If i recall correctly, i'm pretty sure i had to make some changes to

  Robin's

  code to make the remote services part work under CF9 when i was 
playing

  with

  it.  There was a difference between CF8  CF9 around how parameters

  passed

  through CFINVOKE are handled.  I'll dig up my code in a bit and get

  back to

  you.



  Phil



  -Original Message-



  From: Gavin Baumanisbeauecli...@gmail.com



  To: cfaussiecfaussie@googlegroups.com



  Date: Wed, 14 Apr 2010 16:18:37 -0700 (PDT)



  Subject: [cfaussie] Re: WSDL assistance.



  Well I decided that I should have a play with Robin's Demo application



  and make sure that I could get that working...



  And it would seem there might be some other issue other than code



  going on here, because I get the exact same error when trying to run



  the sample application.



  I turned on debug output and when the error is thrown I get the



  following message;



  Cannot perform web service invocation send.



  The fault returned when invoking the web service operation is:



  '' java.lang.IllegalArgumentException: argument type mismatch



  In the separate debug output window I get a different message though.



  /Library/WebServer/Documents/rocketboots/galaxy/trunk/com/rocketboots/



  galaxy/Service.cfc(416) @ 09:10:05.780



  type   Application



  message   Cannot perform web service invocation send.



  I don't know if the messags mean the same and they're ust represented



  differently or what the story is...



  Can I bother someone to download the download Galaxy and try out the



  sample app?



  I'm on CF9 - so

Re: [cfaussie] Re: GalaxySOA on CF9 (was WSDL assistance.)

2010-04-14 Thread Phil Haeusler
Hi Gavin

It could well be that this is a completely different issue to the one i came 
across.

My memory is stretched a little bit now, but perhaps try playing around with 
the returntype of your function.  Maybe start off with a string or struct 
and get that working and then keep extending it until it breaks.  Happy to 
investigate more at the CFUG tonight

Phil




-Original Message-

From: Gavin Baumanis beauecli...@gmail.com

To: cfaussie cfaussie@googlegroups.com

Date: Wed, 14 Apr 2010 18:37:31 -0700 (PDT)

Subject: [cfaussie] Re: GalaxySOA on CF9 (was WSDL assistance.)




In the interest of quite possibly making an idiot of myself...



Hi Phil,



I have made the changes you provided and I get the same error in the

same place.

Only of course this time it is in the cfelse part of the code you

sent me.



It of course works correctly with the Sample app provided by Robin...

so now I am back a step I suppose

with the issue of obviously doing something wrong with my code -

bummer.



Interestingly, I created a method in that CFC that takes no arguments

and returns a simple string.

That works as I would have expected.



Here is the line used to invoke the method on the remote service;

#remoteLoginService.fn_check_user_in_ldap(user = 'test_user', password

= 'test_password')#



Here is the cffunction declaration;

cffunction

  name=fn_authenticate_user

  hint=Function to Authenticate User Against specified LDAP Server :

I return a user object if successful

  access=public

  returntype=Any



So it would seem that I have an issue with sending arguments to my

method if I use it is a remote service.



Hopefully it is somehting glaringly obvious.. and everyone cvan take

turns slapping my forehead at the CFUG!



Gavin.





On Apr 15, 10:55 am, Phil Haeusler p...@gtnet.com.au wrote:

 HI Gavin



 I made the following adjustment to Service.cfc to get it working on CF9

 for remote calls for methods with no parameters.



 You'll need to adjust the cfreturn in the onMissingMethod function of

 Service.cfc - Line 416 in latest trunk from



 cfreturn webService.send(missingMethodName, missingMethodArguments)



 to



 cfif not StructCount(missingMethodArguments)

 cfreturn webService.send(missingMethodName, JavaCast(null, 0))

 cfelse

 cfreturn webService.send(missingMethodName, missingMethodArguments)

 /cfif



 I haven't tested to see if this change breaks earlier versions of CF,

 but it was done in a made rush to get my laptop up and running for the

 last Melb CFUG.  If you can try this and it gets it working for you, and

 we can ensure that it doesn't break earlier CFs we'll put it to Robin to

 get it committed into SVN



 Phil



 On 15/04/10 9:57 AM, Gavin Baumanis wrote:



  HI Phil,

  That is great news... thanks..

  Great news in the sense that its not me - and that maybe my code is

  going to work afterall!



  I had a quick look in the Galaxy code - but I have never ever done any

  remote service work so it was all a little foreign to me.

  Thanks again.



  Gavin.



  On Apr 15, 9:28 am, Phil Haeuslerp...@gtnet.com.au  wrote:



  Gavin



  If i recall correctly, i'm pretty sure i had to make some changes to 
Robin's

  code to make the remote services part work under CF9 when i was playing 
with

  it.  There was a difference between CF8  CF9 around how parameters 
passed

  through CFINVOKE are handled.  I'll dig up my code in a bit and get 
back to

  you.



  Phil



  -Original Message-



  From: Gavin Baumanisbeauecli...@gmail.com



  To: cfaussiecfaussie@googlegroups.com



  Date: Wed, 14 Apr 2010 16:18:37 -0700 (PDT)



  Subject: [cfaussie] Re: WSDL assistance.



  Well I decided that I should have a play with Robin's Demo application



  and make sure that I could get that working...



  And it would seem there might be some other issue other than code



  going on here, because I get the exact same error when trying to run



  the sample application.



  I turned on debug output and when the error is thrown I get the



  following message;



  Cannot perform web service invocation send.



  The fault returned when invoking the web service operation is:



  '' java.lang.IllegalArgumentException: argument type mismatch



  In the separate debug output window I get a different message though.



  /Library/WebServer/Documents/rocketboots/galaxy/trunk/com/rocketboots/



  galaxy/Service.cfc(416) @ 09:10:05.780



  type   Application



  message   Cannot perform web service invocation send.



  I don't know if the messags mean the same and they're ust represented



  differently or what the story is...



  Can I bother someone to download the download Galaxy and try out the



  sample app?



  I'm on CF9 - so I'd be interested to see if it is a CF version



  specific issue or not.



  You can obtain the required code (via SVN) from;



 http://svn.rocketboots.com/os/galaxy/ 
[http

Re: [cfaussie] Re: GalaxySOA on CF9 (was WSDL assistance.)

2010-04-15 Thread Phil Haeusler

Hi Gavin,

I think we're in luck,

Can you just try changing that Line 416 in Service.cfc from the original

cfreturn webService.send(missingMethodName, missingMethodArguments)

to

cfreturn webService.send(missingMethodName, 
Duplicate(missingMethodArguments))


It seems that there might be something different under the hood of only 
the missingMethodArguments argument in the onMissingMethod function in 
CF9.  Running a Duplicate() on it seems to fix it up into proper struct 
which can then successfully be passed to the underlying webservice.


Can you double check and confirm that this fix works for you also.

Thanks
Phil


On 15/04/10 11:32 PM, Gavin Baumanis wrote:

Well,

To keep everyone in the loop;
The brains-trust at tonight's Melbourne CFUG all gave me some
assistance with trying to nut-out what I had done wrong.
(After the presentation on using the built-in debugger of CFBuilder)

Happy to report that I hadn't done anything wrong - it turns out to be
a CF9 related issue. Well that was the consensus anyway!
Just to prove them right , I have just downloaded / installed CF8 and
my code works fine and dandy.

It seems there is an issue with attribute type casting within the
Galaxy code  - where it uses Java classes directly.
Phil has kindly offered to take the baton on this one and work with
Robin to see if it can be resolved for CF9.

It's not all doom and gloom though if the CFC is called locally
then Galaxy will correctly create as many instances of the object that
I have asked it to - and all arguments are accepted / actioned as one
would expect too.

So we can continue to re-develop our application using Galaxy SOA as
long all the CFCs are local - which is most likely going to be the
case (at least initially), even when the Remote type casting has ben
nutted out.

Gavin.


--
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] Re: GalaxySOA on CF9 (was WSDL assistance.)

2010-04-15 Thread Phil Haeusler

Gavin

And here i thought i'd struck gold.  Feel free to send you code off site 
and i'll see if i can reproduce.


The URL you're seeing here is just a string ColdFusion uses under the 
hood when it generates the WSDL for your CFC.  It's really just a label 
and doesn't need to relate to the actual URL being called.


Phil


On 16/04/10 11:45 AM, Gavin Baumanis wrote:

Hi Phil,

Sorry to the bearer of bad news...
but that doesn't work for me.

I get the following error:

Cannot perform web service invocation send.
The fault returned when invoking the web service operation is:

AxisFault
  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}
Server.userException
  faultSubcode:
  faultString: org.xml.sax.SAXException: Deserializing parameter
'sendReturn':  could not find deserializer for type {http://
www.vhosts.loginServiceSampleApp.loginservice}loginService

Interestingly - the web addreess is wrong in that string... I'm
guessing it should be http://localhost. and not http://www.vhosts?

I tried it by just replacing the copy from trunk with your code from
this morning AND
by using the CFIF block you posted earlier in the thread too - both
throw the same error.

I changed my local method to be access=remote and called it directly
via URI;
http://localhost/loginservice/loginServiceSampleApp/vhosts/www/loginService.cfc?wsdlmethod=fn_authenticate_user

and I get a whole page of text returned.

If I try to pass any attributes to the function in the URI version eg;
http://localhost/loginservice/loginServiceSampleApp/vhosts/www/loginService.cfc?wsdlmethod=fn_authenticate_user(user='test_user',password='test_password')

I get the following error... which seems a bit strange - since without
the attributes it seems to return something!
coldfusion.runtime.TemplateProxy$InvalidMethodNameException: The
method fn_authenticate_user(user='test_user',password='test_password')
was not found in component /Library/WebServer/Documents/loginService/
loginServiceSampleApp/vhosts/www/loginService.cfc.

Would it help if I sent you my code?

Gavin
On Apr 16, 10:39 am, Phil Haeuslerp...@gtnet.com.au  wrote:
   

Hi Gavin,

I think we're in luck,

Can you just try changing that Line 416 in Service.cfc from the original

cfreturn webService.send(missingMethodName, missingMethodArguments)

to

cfreturn webService.send(missingMethodName,
Duplicate(missingMethodArguments))

It seems that there might be something different under the hood of only
the missingMethodArguments argument in the onMissingMethod function in
CF9.  Running a Duplicate() on it seems to fix it up into proper struct
which can then successfully be passed to the underlying webservice.

Can you double check and confirm that this fix works for you also.

Thanks
Phil

On 15/04/10 11:32 PM, Gavin Baumanis wrote:



 

Well,
   
 

To keep everyone in the loop;
The brains-trust at tonight's Melbourne CFUG all gave me some
assistance with trying to nut-out what I had done wrong.
(After the presentation on using the built-in debugger of CFBuilder)
   
 

Happy to report that I hadn't done anything wrong - it turns out to be
a CF9 related issue. Well that was the consensus anyway!
Just to prove them right , I have just downloaded / installed CF8 and
my code works fine and dandy.
   
 

It seems there is an issue with attribute type casting within the
Galaxy code  - where it uses Java classes directly.
Phil has kindly offered to take the baton on this one and work with
Robin to see if it can be resolved for CF9.
   
 

It's not all doom and gloom though if the CFC is called locally
then Galaxy will correctly create as many instances of the object that
I have asked it to - and all arguments are accepted / actioned as one
would expect too.
   
 

So we can continue to re-develop our application using Galaxy SOA as
long all the CFCs are local - which is most likely going to be the
case (at least initially), even when the Remote type casting has ben
nutted out.
   
 

Gavin.
   

--
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 
athttp://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] Re: CFUG Melbourne May 2010: Framework One. NOTE CHANGE OF NIGHT AND LOCATION.

2010-05-13 Thread Phil Haeusler

Couldn't have said it better myself Dale.

I've got archives of half-aborted projects created with various 
frameworks over the years where I ended up spending more time tending to 
the framework than on the application itself.   That may well be a 
failing of me not understanding how to make the framework work.  But why 
should i have to bother about that?  I'm generally lazy.


Getting into FW/1 earlier in the year was really enlightening and i came 
quickly to the understand the usefulness of a framework that does all it 
can to not get in your way.


I've known for years there were theoretical benefits to using frameworks 
and it was only once i got started with FW/1 that these really started 
to click for me.


So if you're in Melbourne, it would be great to see you at the next CFUG.

Phil


On 14/05/10 10:45 AM, Dale Fraser wrote:


If you're out there thinking that you don't need a framework and that 
frameworks make things too hard then consider this.


I am an ANTI framework person, generally when presented with 
frameworks I'm looking for how they make things easier and not 
complicate things.


I really enjoyed the WebDU talk by Andrew and this one from Phil 
should be very good.


FW/1 is a bit different and defiantly worth a look even if you're not 
a framework person id encourage you to come along.


It's also at our new offices which has a lot larger board room, so we 
can fit in lots of people.


Regards

Dale Fraser

http://dale.fraser.id.au

http://cfmldocs.com http://cfmldocs.com/

http://learncf.com

http://flexcf.com

*From:* cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] 
*On Behalf Of *Peter Robertson

*Sent:* Friday, 14 May 2010 10:19 AM
*To:* cfaussie@googlegroups.com
*Subject:* Re: [cfaussie] Re: CFUG Melbourne May 2010: Framework One. 
NOTE CHANGE OF NIGHT AND LOCATION.


Sean, thank you very much for popping in, your availability will be 
most welcome, I'm sure.


Cheers

Peter Robertson

On 14 May 2010 06:38, seancorfield seancorfi...@gmail.com 
mailto:seancorfi...@gmail.com wrote:


On May 13, 5:36 am, Peter Robertson pe...@p-robertson.com 
mailto:pe...@p-robertson.com wrote:

 This month Phil Haeusler will present on FW/1 - Framework One, 'The
 Invisible Framework'.

I'm very pleased to see this! I know AJ presented FW/1 at webDU, for
which I'm very grateful, and I rejoined cfaussie today when he let
know about Phil's preso so I can be around on the list if anyone has
questions about the framework. Thanx in advance Phil! Let me know if I
can help with anything for your preso...

Sean


--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@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.


--
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] Flex Group - flexaussie

2010-05-22 Thread Phil Haeusler

Hi everyone

I went looking on Google Groups and found flexaussie in a sad state of 
disrepair.


So i put my hand up to clean it up in an effort to try and attract some 
interest in maintaining an Australian resource for flex developers.


If you are a Flex developer and would like to work on supporting 
flexaussie or you'd just like to see what all the fuss is about please 
drop by and let the world know there are Australian Flex developers down 
here.


The group homepage is http://groups.google.com/group/flexaussie/

Hope to see you there
Phil

On 19/05/10 12:15 PM, Kai Koenig wrote:

if you want a somewhat local one - nzfxug on google groups. There used to be 
flexaussie, but not sure what's the story with that.

Cheers
Kai


On 19/05/2010, at 1:19 PM, Gavin Baumanis wrote:

   

Hi Everyone,

After being at WebDU, I have decided to have a play with Flex / Air.
Can anone suggest an appropriate group / mailing list to join?

I have found googel groups flexcoders and flex-coders - but they are
both seemingly full of spam recently.

Thanks - Gavin.

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

 


--
Kai Koenig - Ventego Creative Ltd
ph: +64 4 476 6781 - mob: +64 21 928 365 /  +61 450 132 117
web: http://www.ventego-creative.co.nz
blog: http://www.bloginblack.de
twitter: http://www.twitter.com/agentK

Hands-on Regular Expression training @ webDU 2010
http://bloginblack.de/agentk/workshop-befriending-regular-expressions/

Hands-on Flash Catalyst and Flex 4 training @ Webinale 2010
http://bloginblack.de/agentk/workshop-rias-with-flash-catalyst-and-flex-4/
--







   


--
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] Re: JB-HI Moving to dotnet

2010-05-25 Thread Phil Haeusler
Peter, i think your suggestion of amalgamating the user groups in 
Melbourne is one worth considering.


I believe that convincing someone to take on a new technology is more 
effective when you've got both the technology owner (their partners or 
evagelists) coming from top down as well as bottom-up support from your 
staff on the ground saying how great it would be to move to this new 
technology.


While Adobe can help with the first part, the second needs to be a 
little more community driven.   Adobe do seem to be holding more and 
more road shows recently, but they seem largely targeted at the Creative 
Suite side of things which doesn't really help us CF'ers.  But you can't 
blame them when the Australian operations is essentially a sales office 
measured, i suspect, on quarterly performance, and CS is a much easier 
sell for them and probably provides a much better rate of return.  (The 
content-aware fill was enough for me to upgrade to CS5).


Would someone who knows nothing about CF be more likely to attend a CFUG 
or a something a little more general like an Adobe Platform user group?  
My belief would be the more general group.  It gives them a chance to 
attend a UG they may know only something about rather than a UG they 
know nothing about - a much more daunting prospect.


And while it's nice to have the friendly regulars at a 
technology-specific UG, you're almost always preaching to the 
converted.  Don't get me wrong, that's a good thing.  But it doesn't 
always help grow the developer base.


If we would like to see Adobe offer more support in Australia, i believe 
we should make the effort to show them there is something worth supporting.


Phil



On 26/05/10 2:12 PM, Peter Robertson wrote:
Mark, I'm with you, and personally I don't want to dwell on what Adobe 
have or haven't done in the past.
I also think we need to understand that CF is not a lead product for 
Adobe, (no matter how much we love it), and that's just the way it is.
So, if we as CF developers want the world to be better for us, then 
let's see what we can do.


You opened the idea of an evangelist for the region, which might be a 
feasible goal.
The idea of CF and 'something else' is also good, and might have more 
chance of getting backing.
The obvious something else would be Flex, no?  Talking to Flex people 
over the last few months, I get the impression that it's a market in 
growth and has reasonable demand.  So, what about a 'leading with 
Flex' strategy, to get projects up and Adobe in the door, then taking 
every opportunity to offer CF for the server side?  We CFers probably 
need to be considering the Adobe stack more and the ideal of working 
in isolation less.  If an evangelist in the region pushed this barrow, 
would that help?


So, Mark, are you saying you'd like to represent something along these 
(or other, yet to be agreed) lines to Adobe?


What do you think we (CFers) need to do?
What would be the role of CFUGs in engaging with Adobe to roll out a 
coherent strategy?

Should CFUGs be working more closely with Flex UGs, or even amalgamating?

Thanks for your calm thoughts Mark.

Peter Robertson


On 26 May 2010 13:42, Mark Mandel mark.man...@gmail.com 
mailto:mark.man...@gmail.com wrote:


So, to be clear - you would like to see a designated person for
representing CF in the ANZ region? Much like Adobe has evangelists
in US and EU?

(and I would love to see this as well)

Even if their job was CF AND something else (I actually found out
a little while back that Terry Ryan is actually both a CF and
Flash evangelist), I think that would be a good idea.


On Wed, May 26, 2010 at 1:31 PM, Andrew Scott
andr...@andyscott.id.au mailto:andr...@andyscott.id.au wrote:

All Adobe needs to do is have someone like Ben Forta come
along into the government sector and he can do his magic, it
seems that they are doing all this magic pushing of the
product into companies and business in there own backyard but
not the rest of the world.




-- 
E: mark.man...@gmail.com mailto:mark.man...@gmail.com

T: http://www.twitter.com/neurotic
W: www.compoundtheory.com http://www.compoundtheory.com

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

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com http://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.



Re: [cfaussie] Re: Odd date behaviour - CF9/SQLServer2005

2010-06-08 Thread Phil Haeusler

Mike,

This generated code looks like it is causing you problems.  As the bean 
converts the date to a string for storage, when it retrieves it back CF 
does a String  Date conversion which is something i've always seen 
problems with.


A quick hack would be to alter the cfreturn from

cfreturn variables.instance.TransDate /

to something like

cfreturn CreateDate(ListLast(variables.instance.TransDate, /), 
ListGetAt(variables.instance.TransDate, 2, /), 
ListFirst(variables.instance.TransDate, /))


To ensure there is no ambiguity.  If that works ok, then you could look 
for a neater solution.


Phil




On 9/06/10 2:15 PM, Mike Kear wrote:

This is the code for the getter and setter involved:

cffunction name=setTransDate access=public returntype=void 
output=false

cfargument name=TransDate type=string required=true /
cfif isDate(arguments.TransDate)
cfset arguments.TransDate = 
dateformat(arguments.TransDate,DD/MM/) /

/cfif
cfset variables.instance.TransDate = arguments.TransDate /
/cffunction
cffunction name=getTransDate access=public returntype=string 
output=false

cfreturn variables.instance.TransDate /
/cffunction

This is generated by the Rooibos code written by P Farrell



On Wed, Jun 9, 2010 at 2:07 PM, Sean Corfield seancorfi...@gmail.com 
mailto:seancorfi...@gmail.com wrote:


What do the methods setTransDate() and getTransDate() look like? Is
there a declared property behind them? If so, what does that look
like?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET http://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.



Re: [cfaussie] CFUG Melbourne June 2010: REMINDER, TONIGHT! Galaxy SOA at PalCare Pty Ltd.

2010-06-16 Thread Phil Haeusler

I'll be along tonight.  See you all there
Phil

On 17/06/10 11:42 AM, Peter Robertson wrote:

This is to remind all CF folk in the Melbourne area, (and any visitors
from out of town, most welcome), that our monthly CFUG is on tonight.

Please reply to this post if you plan to attend so that we can cater.

Details:

In March this year Robin Hilliard presented his Rapid Service-Oriented
Architecture Development approach (based on 'Galaxy'), to the
Melbourne CFUG.

Gavin Baumanis, who maintains and develops a large legacy code base,
picked up on the possibility of using an SOA approach to assist in
quarantining parts of an application to introduce structure and allow
the re-factoring of sections of the code without endangering the
overall product.  Over the last few months, he has been evaluating
Galaxy for this purpose.

This month, Gavin presents his initial findings on Galaxy and how he
sees it supporting his requirements at PalCare Pty. Ltd.

The presentation will be an open discussion of:
- Service Oriented Architecture (recap)
- Using Galaxy SOA to assist in the architectural choice of SOA -
(recap)
- Case study of using SOA / Galaxy SOA
- Change in development mindset
- What did / did not work  why
- What's ahead for us? Will we be using SOA / Galaxy SOA for our work?
- What's ahead for Galaxy SOA?

Gavin fell into Coldfusion programming when he left the Navy after
ten years of service and joined RMIT.  Here he inherited a Coldfusion
4 application that was used to display the University's 15,000 floor
plans.  He must have liked it as he's still using ColdFusion!

Currently he works for PalCare P/L where his team is rewriting a
Patient Management System used by palliative care providers in
Australia and New Zealand.

Date: Thursday 17 June 2010
Time: 6:30 PM
NEW Location:
 CogState
 Level 2
 255 Bourke Street
 Melbourne, VIC, 3000
 A note on the door will provide a number to ring for access.

RSVP:  Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality.  We look forward to seeing you all there.  (Actually, we
may be working in Adelaide that week, in which case you'll be in
Dale's more-than-capable hands.)

Peter Robertson
Co-Manager
Melbourne CFUG

Steve Onnis
Manager
Melbourne CFUG

   


--
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] CFUG Melbourne July 2010: Who's Coming?? (OOP for ColdFusion Developers by Mark Mandel)

2010-07-14 Thread Phil Haeusler

I'll be there!
Phil

On 13/07/10 9:13 PM, Peter Robertson wrote:

Hi Melbourne CFers (and visitors)!

Who can make it Thursday night?

PLEASE RSVP so that we can cater.

The previously-posted details repeated below

Mark's presentation will focus on taking Object Oriented Programming
from theory to practice, providing a clear path to the implementation
details for ColdFusion Developers.

Mark Mandel is a full time consultant and lead developer on several
open source projects, most notably Transfer ORM, ColdSpring,
JavaLoader and ColdDoc and has been has been working with ColdFusion
for a number of years, including at his very own dot com back in the
late 90's.

Mark can often be found blogging at www.compoundtheory.com, which has
housed his thoughts on ColdFusion, Java and various aspects of
software development for several years.  He can also be found as a
regular poster on ColdFusion mailing lists as well as generally
causing havoc in the #coldfusion channel on Dalnet irc network.

When he's not too busy writing open source software and consulting he
enjoys spending his extra time training martial arts in a wide variety
of disciplines and reading way too much fantasy literature.

Date: Thursday 15 July 2010
Time: 6:30 PM
Location:
 CogState
 Level 2
 255 Bourke Street
 Melbourne, VIC, 3000
 A note on the door will provide a number to ring for access.

RSVP:  Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality.  We look forward to seeing you all there.

Peter Robertson
Co-Manager
Melbourne CFUG

Steve Onnis
Manager
Melbourne CFUG

   


--
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] Re: Comsume https webservice

2010-08-08 Thread Phil Haeusler

 Hi Gavin

Have you imported the eClinic root certificate into the JVM as well?

I recall on a older (cf7 perhaps, may be older?) server i had to import 
a root certificate when i was having trouble with a particular EV cert.  
In this case the latest root certificate from the issuing registry 
wasn't in the JVM, and even tho i had imported the EV cert, it refused 
to work without the root certificated being imported also so the 
certificate chain could be validated


I think i had to do something like view the certificate in a browser and 
then walk up the certificate chain, saving the parent certificates and 
importing them in.


Then again, it's late on a Sunday evening, so i could have some of the 
details wrong.


Phil



On 8/08/10 10:38 PM, Gavin Baumanis wrote:


On Aug 6, 10:39 pm, MrBuzzymrbu...@gmail.com  wrote:

Maybe we can take a step back and get some more details. Because I'm semi 
confident we're all trying to help Gavin find a solution, preferably before he 
has to shell out more cash for a different cert.

- what sort of certificate is it?

Ummm dunno - we create all of our own certifcates and self-sign them
too.


- where did it come from?

Us!


- does the cert match the host name?

Yup sure does.


- is the cert issued from one of the 'pre trusted' authorities.

Nope.


- is it just an SSL cert or are we talking about client certs too?

The directories on the server are protected by certifcate
authentication that are required by the clients to use the
application.


- etc

Our parent company is eClinic. They are an encryption / SSL / PKI
Specialist. They perform millions of encrypted medical messaging
transactions.

Our certs are provided to us by their infrastructure.
There is nothing wierd or odd about the certs  they work in IE and
Mozilla browsers, the command line tells me they are imported
correctly into the java keystore as does the certman plug in.

I am sure it wil be something simple... but I'll be damned if I can
work it out.

Gavin.



--
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] Bad Error

2010-08-24 Thread Phil Haeusler

 You can use bing.com to find out about that

On 25/08/10 11:19 AM, Dale Fraser wrote:


Whats this Google thing you speak of.

Regards

Dale Fraser

http://dale.fraser.id.au

http://cfmldocs.com http://cfmldocs.com/

http://learncf.com

http://flexcf.com

*From:* cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] 
*On Behalf Of *Mark Mandel

*Sent:* Tuesday, 24 August 2010 6:27 PM
*To:* cfaussie@googlegroups.com
*Subject:* Re: [cfaussie] Bad Error

Dale,

There are about a thousand articles on google about this:
http://www.google.com/search?client=ubuntuchannel=fsq=java.lang.OutOfMemoryError%3A+GC+overhead+limit+exceededie=utf-8oe=utf-8 
http://www.google.com/search?client=ubuntuchannel=fsq=java.lang.OutOfMemoryError%3A+GC+overhead+limit+exceededie=utf-8oe=utf-8


Some digging through there shows up this:
http://www.oracle.com/technetwork/java/javase/gc-tuning-6-140523.html#cms.oom

Mark

On Wed, Aug 25, 2010 at 1:48 AM, MrBuzzy mrbu...@gmail.com 
mailto:mrbu...@gmail.com wrote:


Something is memory hungry. Can you increase the memory thresholds in 
the jvm.config file?


If the problem continues to occur, even after bumping up the 
thresholds a few times, then you have request(s) that are using lots 
of memory and/or not cleaning up properly.


Monitor your memory usage and garbage collection via FusionReactor or 
something similar. Try to isolate the problem and start a code review ;)



Paging Dr Arehart, you're needed in theatre.


Sent from my iPhone


On 25/08/2010, at 1:25 AM, Dale Fraser d...@fraser.id.au 
mailto:d...@fraser.id.au wrote:


Anyone explain what can be done about this or the possible causes

*struct*

Cause



*struct*

Message



GC overhead limit exceeded

StackTrace



java.lang.OutOfMemoryError: GC overhead limit exceeded

TagContext



*array [empty]*

Type



java.lang.OutOfMemoryError

Detail



The cause of this exception was that: java.lang.OutOfMemoryError:
GC overhead limit exceeded.

Message



An exception occurred when performing document processing.

Regards

Dale Fraser

http://dale.fraser.id.au

http://cfmldocs.com 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 cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com
mailto: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 cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.





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

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

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com http://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 cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto: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.


--
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] CFUG Melbourne for September: Don't Miss It! Tomorrow Night (16 Sept)

2010-09-14 Thread Phil Haeusler

 Yeah, no pressure there!

And come along with the URLs of your unpatched CF9 (8 or 7) servers.  
I'll show you how easy it to log into your CF Administrator!


Seriously.  Patch your servers.

Phil


On 15/09/10 1:44 PM, MrBuzzy wrote:

I'll be there. Seriously people - don't miss this one!

Sent from my iPhone

On 15/09/2010, at 1:41 PM, Gavin Beau Baumanisb...@palcare.com.au  wrote:


Hi Peter / Steve,

I will be there.
And  will most likely have our intern with us.


As always, please contact me if I can be of any futher assistance.

Gavin Beau Baumanis
Senior Application Developer
PalCare Pty. Ltd.

P: +61 -3 9380 3513
M: +61 -438 545 586
E: b...@palcare.com.au
W: http://palcare.com.au



On 15/09/2010, at 1:36 PM, Peter Robertson wrote:


If you are attending, (and we hope that you will be), please RSVP so
that Steve can organise catering.
This is a not-to-be-missed event, especially for those responsible for
web application security!

Details:

A look at securing your ColdFusion servers using the ColdFusion
Server
Lock Down Guide and other practical tips to ensure your servers are
best protected against unknown future vulnerabilities and attacks.
* A look at the technical reasons behind the ColdFusion Server Lock
Down Guide
* Running ColdFusion with minimal privileges
* Stopping the world from accessing the CF Administrator
* ColdFusion Administrator secure settings
* Making use of Security Sandboxes
* Disabling unused services
* Security Issues in your code
* The recent CF8/9 Security Hot Fix, how to hack an unpatched CF
server and why you should have already patched your server

Phil is a long-time ColdFusion developer and administrator and has a
deep understanding of how ColdFusion does what it does.  He consults
to many varied organisations around ColdFusion, Flex and the larger
Adobe product stack and advocates best practice approaches to
development methodologies, testing and deployment security.  He is a
long time RocketBoots partner and CodeWar quizmaster.

Date: Thursday 16 September 2010
Time: 6:30 PM
Location:
   CogState
   Level 2
   255 Bourke Street
   Melbourne, VIC, 3000
   A note on the door will provide a number to ring for access.

RSVP:  Please reply to this post if you are planning to attend so we
know how many pizzas to order.
As always, many thanks to Dale Fraser and CogState for their
hospitality.  We look forward to seeing you all there.

Peter Robertson
Co-Manager
Melbourne CFUG

Steve Onnis
Manager
Melbourne CFUG

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



--
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] CodeWar Melbourne - Wednesday 17 November

2010-10-14 Thread Phil Haeusler

 Hi everyone

I'm pleased to let you know that Rocketboots are indeed hosting a 
CodeWar in Melbourne in the evening of Day 0 of CFObjective(anz).


CodeWars pits the development skills of teams head–to–head in a series 
of sudden death coding challenges taking anywhere from two to twenty 
minutes.


You can find out more detail about CodeWar at the Rocketboots site, 
including details of the past CodeWar events held in Sydney over the 
last few years right up to tonight at Web Directions.


http://www.rocketboots.com/site/index.cfm/page/aboutus_codewar

You are more than welcome to attend just to see what it is all about, 
but we encourage everyone to consider organising a team so we have a 
strong CF contingent in force. But even if you haven't organised a team, 
consider a past CodeWar winning team only formed once they arrived at 
the CodeWar to watch, so anything is possible.


All a team needs is a laptop with a VGA connection, an IDE of some sort 
(come on CFBuilder!) and a desire to show their stuff in front of a live 
audience.


The first Melbourne CodeWar will be held on

Wednesday 17 November 2010
at European Bier Cafe (Upstairs)
crn Exhibition and Lt Collins St Melbourne (it's about a block from the 
CFObjective(anz) venue)

Doors open at 6pm, the CodeWar begins at 7pm.
http://www.europeanbiercafe.com.au/

There is no cost to attend or form a team.
Wednesdays are $13 Parma night at the European Bier Cafe so you can get 
a top meal as well.


For more info, keep an eye on the Rocketboots site and please let us 
know if you'll be attending.


Cheers
Phil

--
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] Weird CFML syntax error.

2010-10-24 Thread Phil Haeusler

Hi Gavin

It looks like you had a mismatched comment there.  You started with a CF 
comment !--- but tried closing it with a HTML comment -- - that's not 
going to work.


The fix to make it --- would have fixed the invalid cfml syntax.

Phil


On 25/10/10 11:50 AM, Gavin Beau Baumanis wrote:

Hi Everyone,

I was recently in an area of our application that is seldom used and I got an 
error about misformed CFML.
I think it was something like a missing the closing cfif tag - anyway...


Here is the patch that corrected it - but my question is why?

Index: /trunk/nz/northhaven/admin/index.cfm
===
--- /trunk/nz/admin/index.cfm (revision 18514)
+++ /trunk/nz/admin/index.cfm (revision 18537)
@@ -15,1 +15,1 @@
-/cfif!--- end session checking --
+/cfif!--- end session checking ---

Not the opening comment is  HTML style - while the closing text is a CFML 
comment.

Surely a comment of!-- my comment ---  would just be treated as a HTML 
comment?

I have tried to run some subsequent tests but I can't make the file error.
I have also reverted the change - and I still cannot get the file to error 
again.

It is really weird!



As always, please contact me if I can be of any futher assistance.

Gavin Beau Baumanis
Senior Application Developer
PalCare Pty. Ltd.

P: +61 -3 9380 3513
M: +61 -438 545 586
E: b...@palcare.com.au
W: http://palcare.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] Re: cfspreadsheet and vfs

2010-12-06 Thread Phil Haeusler
You don't have to be on any program or under NDA to find bugs in 
ColdFusion, to log bugs or to receive those automated replies.


And if you do find bugs in CF9, log them at http://cfbugs.adobe.com/ 
rather than just complaining about them on mailing lists.  You'll also 
get an automated reply too :)


I've also heard rumours that the CF engineering team are actually 
emailed directly each time a bug is logged.


And if you happen to bump into someone from the CF engineering team at a 
conference, say CF Objective(ANZ), you've got a good chance of 
convincing them to work on a Hotfix for the current version rather than 
waiting for CF Next to come along.  And then you can finally retire that 
pesky CF8 server that was sitting there since CF9 shipped with a 
regression bug.


Just saying



On 7/12/10 1:56 PM, Steve Onnis wrote:

An automated reply would be sent to someone on the program, so any
communication regarding the program would fall under a NDA, regardless of it
is an automated reply

-Original Message-
From: Justin Carter [mailto:justin.w.car...@gmail.com]
Sent: Tuesday, 7 December 2010 12:47 PM
To: cfaussie
Subject: [cfaussie] Re: cfspreadsheet and vfs

On Dec 7, 12:52 am, Steve Onnisst...@cfcentral.com.au  wrote:

This is in relation to CF10 it seems and i would assume posting it would

be

breaching the confidentiality agreement?

I doubt there is a confidentiality agreement for automated replies
from a public bug tracker..



--
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] CFUG Melbourne 17 Feb 2011

2011-02-15 Thread Phil Haeusler

I haven't heard anyone else respond yet, but i'll be there tomorrow night!
Hopefully i won't be too lonely
Cheers
Phil

On 9/02/11 10:47 AM, Peter Robertson wrote:

Now that 2011 is upon us it’s time to start talking CFUG.  Our first
meet up of the year will be an informal catch-up where you can just
have a general chit chat, catch up with the gang, share ideas and
discuss anything exciting you have come across or are working on.

Come join us, the knights of thee.rectangle table? As per
usual there will be pizza, so pop in and have a slice and geek it up!

If anyone would like to post their interests here ahead of time, that
would also be helpful.

Date: Thursday 17 February 2011
Time: 6:30 PM
Location:
 CogState
 Level 2
 255 Bourke Street
 Melbourne, VIC, 3000
 A note on the door will provide a number to ring for access.

RSVP:  Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality.  We look forward to seeing you all there.

Peter Robertson
Co-Manager
Melbourne CFUG

Steve Onnis
Manager
Melbourne CFUG



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] CFUG Melbourne 17 Feb 2011

2011-02-15 Thread Phil Haeusler

You take all the fun out of user groups ;P

On 16/02/11 3:01 PM, MrBuzzy wrote:

I'll keep you company Phil, but no spooning!

On 16/02/2011, at 13:58, Phil Haeuslerphilhaeus...@gmail.com  wrote:


I haven't heard anyone else respond yet, but i'll be there tomorrow night!
Hopefully i won't be too lonely
Cheers
Phil

On 9/02/11 10:47 AM, Peter Robertson wrote:

Now that 2011 is upon us it’s time to start talking CFUG.  Our first
meet up of the year will be an informal catch-up where you can just
have a general chit chat, catch up with the gang, share ideas and
discuss anything exciting you have come across or are working on.

Come join us, the knights of thee.rectangle table? As per
usual there will be pizza, so pop in and have a slice and geek it up!

If anyone would like to post their interests here ahead of time, that
would also be helpful.

Date: Thursday 17 February 2011
Time: 6:30 PM
Location:
 CogState
 Level 2
 255 Bourke Street
 Melbourne, VIC, 3000
 A note on the door will provide a number to ring for access.

RSVP:  Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality.  We look forward to seeing you all there.

Peter Robertson
Co-Manager
Melbourne CFUG

Steve Onnis
Manager
Melbourne CFUG


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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 cfaussie@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] Re: The ColdFusion 9 Application Server service terminated with service-specific error The system cannot find the file specified..

2011-04-11 Thread Phil Haeusler
I once had a CF server that refused to start up, and just timed out with 
a meaningless message.  It turned out that either the jrun or windows 
temp directory had a huge number of 0 byte files in there (140k files or 
something ridiculous).


Once i cleared out the temp files, the server started up immediately.   
I never figured out what caused it, but it's something i keep an eye on now.


May pay to check your server's temp directories.

Phil

On 11/04/11 2:55 PM, Taco Fleur wrote:
Believe it or not, I checked that article this morning, and all I get 
from that is to extend the service time out, it's already 5 
minutes It should not take that long to start up in the first place.


CF debugging as under the cf admin? if so, that is off, even turned 
monitoring off.


On Mon, Apr 11, 2011 at 12:19 PM, gabrielrose gabriel.r...@gmail.com 
mailto:gabriel.r...@gmail.com wrote:


Here's a link to info on that error.
I would also try disabling the CF debugging service.

http://technet.microsoft.com/en-us/library/cc756334%28WS.10%29.aspx



On Apr 11, 11:47 am, www.clickfind.com.au
http://www.clickfind.com.au
taco.fl...@clickfind.com.au mailto:taco.fl...@clickfind.com.au
wrote:
 I'm still struggling with some CF9 server errors

 The log shows the following after a Windows Server Restart:

 First log entry is a warning

 A service process other than the one launched by the Service Control
 Manager connected when starting the ColdFusion 9 ODBC Server
service.
 The Service Control Manager launched process 1192 and process 1200
 connected instead.

 Note that if this service is configured to start under a debugger,
 this behavior is expected.

 ---

 but it starts that service without any issues

 The second entry is an error

 ---

 The ColdFusion 9 Application Server service terminated with service-
 specific error The system cannot find the file specified..

 ---

 I'm assuming it's saying it can't find C:\ColdFusion9\runtime\bin
 \jrunsvc.exe ??
 I then have to manually go into services and start it, which takes a
 very long time by the way.

 Have already tried looking in all the CF logs, nothing much
 interesting that can be of any help.

 Anyone any ideas?

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




--
Kind regards,
Taco Fleur
clickfind™ - The new Australian Online Marketing Platform (OMP)
http://www.onlinemarketingplatform.com.au
http://www.clickfind.com.au
--
You received this message because you are subscribed to the Google 
Groups cfaussie group.

To post to this group, send email to cfaussie@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 cfaussie@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] Re: MAD! Melbourne Adobe Developers meeting for Thursday 28 April 2011

2011-04-27 Thread Phil Haeusler

You and me both


On 27/04/11 4:31 PM, Mark Mandel wrote:

Uh oh - if people are coming, I had better prepare or something ;)

Mark

On Wed, Apr 27, 2011 at 3:31 PM, Josh Wines j...@joshwines.com 
mailto:j...@joshwines.com wrote:


Sounds good, I'll be coming along.

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




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

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

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com http://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 cfaussie@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 cfaussie@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] web services and application.cfc

2011-05-05 Thread Phil Haeusler

Hi Barry

Have your empty Application.cfc extends your base on and then override 
OnRequestEnd() with an empty method.  That will give you all the other 
methods you want.


Or make use of the IsSOAPRequest() function and use it to ignore the 
code you are not wanting to run for your web services.


Phil


On 6/05/11 7:02 AM, BarryC wrote:

Hi,

We have an application.cfc at the root of our website, it contains a
function OnRequestEnd() that does some stuff at the end of page
generation, but this seems to get called for our web service files.

I have a web service in a cfc file in a sub-folder within the site,
but in our logs we get error messages when web services are called,
the error is an empty string, but it gives the file and line number
the error is coming from which shows it is our OnRequestEnd() function
when web services are called.

So our structure looks kind of like this;

/webroot/
Application.cfc
/subfolder/
/service/
  webservice.cfc

Is there a way to get the web services to ignore or somehow override
the OnRequestEnd() function? I put an Application.cfc file into the
service/ folder and created an empty OnRequestEnd() function but it
seems that the other functions we have in our root Application.cfc no
longer get called either such as OnRequestStart().

We're on Coldfusion 9.

Thanks
Barry



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] Re: web services and application.cfc

2011-05-05 Thread Phil Haeusler
That's a little odd. Are you doing real webservices or is it actually an 
Ajax/rest call to your cfc?

On 06/05/2011, at 11:35, BarryC barrychester...@gmail.com wrote:

 hmmm, It would be ideal to check within our Application.cfc if the
 request is a SOAP request, but using IsSOAPRequest() inside
 application.cfc doesn't work, it always returns false. Is there a way
 to check if the request is a web service request within
 Application.cfc? Ben Nadel posted that the FORM scope doesn't exist
 when a web service is called, but checking against that seems a bit of
 an odd way to go about it - there must be a better way?
 
 On May 6, 10:46 am, BarryC barrychester...@gmail.com wrote:
 excellent I never thought of doing that, thanks, I'll have a go and
 see if it works out. :)
 
 On May 6, 9:27 am, Phil Haeusler philhaeus...@gmail.com wrote:
 
 Hi Barry
 
 Have your empty Application.cfc extends your base on and then override
 OnRequestEnd() with an empty method.  That will give you all the other
 methods you want.
 
 Or make use of the IsSOAPRequest() function and use it to ignore the
 code you are not wanting to run for your web services.
 
 Phil
 
 On 6/05/11 7:02 AM, BarryC wrote:
 
 Hi,
 
 We have an application.cfc at the root of our website, it contains a
 function OnRequestEnd() that does some stuff at the end of page
 generation, but this seems to get called for our web service files.
 
 I have a web service in a cfc file in a sub-folder within the site,
 but in our logs we get error messages when web services are called,
 the error is an empty string, but it gives the file and line number
 the error is coming from which shows it is our OnRequestEnd() function
 when web services are called.
 
 So our structure looks kind of like this;
 
 /webroot/
 Application.cfc
 /subfolder/
 /service/
   webservice.cfc
 
 Is there a way to get the web services to ignore or somehow override
 the OnRequestEnd() function? I put an Application.cfc file into the
 service/ folder and created an empty OnRequestEnd() function but it
 seems that the other functions we have in our root Application.cfc no
 longer get called either such as OnRequestStart().
 
 We're on Coldfusion 9.
 
 Thanks
 Barry
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To post to this group, send email to cfaussie@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 cfaussie@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] MAD! Melbourne Adobe Developers meeting for Thursday 19 May 2011

2011-05-16 Thread Phil Haeusler
Hi Peter
I'll be there Thursday
Phil

On 16/05/2011, at 14:10, Peter Robertson peter.r.robert...@gmail.com wrote:

 Join us for two very interesting presentations, covering both the code
 and media sides of life in the Adobe sphere.
 
 Presentation 1: Andrew Spaulding, Ooyala
 
 Media management, content distribution, and ultimately how to make
 money from video! In this session Andrew Spaulding from Ooyala will
 introduce Backlot - Ooyala's media technology platform.  Andrew will
 discuss the technologies used to build Ooyala's video offering, and
 how Adobe's Flash Platform technologies play a major role in content
 delivery and user experience
 
 Andrew Spaulding is a Senior Solutions Architect for Ooyala Australia
 and New Zealand. He has extensive knowledge of the Adobe Flash
 Platform with a focus on Rich Internet Applications and media delivery
 to every screen and platform imaginable. Prior to joining Ooyala
 Andrew spent the previous 5 years working for Macromedia/Adobe, and is
 a certified Adobe Flex Instructor. With a passion for ActionScript and
 Flash development he runs a blog over at www.flexdaddy.com and has
 presented at various industry conferences including Adobe's MAX
 conferences, WebDU, cf.Objective, and other local events.
 
 Presentation 2: Brendan Owen, Automatic code generation
 
 I was frustrated with the automatic code generated from Flash Builder.
 During my holidays I decided build my own program to help generate
 code from a project template and hierarchy file (xml). I use the
 program to generate MXML, AS3, PHP and SQL, but in theory this could
 be used to generate any text based files. Some of the issues I tried
 to address with my code generation program were:
 
 1) The templates could be directly complied into a standalone working
 system.
 2) The program could be applied to any text based source code.
 3) You had freedom to structure your project’s code to suit your
 needs.
 
 I am after some feedback on this program and if it would be a useful
 tool to develop further.
 
 I am currently working for Jacaranda as a digital content developer.
 My work usually switches between two types of development. Writing
 digital learning objects in flash for http://www.jacplus.com.au/ and
 building online systems using Flex, PHP and MySQL for internal company
 use.
 
 Date: Thursday 19 May 2011
 Time: 6:30 PM
 Location:
 CogState
 Level 2
 255 Bourke Street
 Melbourne, VIC, 3000
 
 A note on the door will provide a number to ring for access.
 
 RSVP: Please reply to this post if you are planning to attend so we
 know how many pizzas to order.
 
 As always, many thanks to Dale Fraser and CogState for their
 hospitality. We look forward to seeing you all there.
 
 Peter Robertson
 Co-Manager
 
 Melbourne Adobe Developers
 
 Steve Onnis
 ManagerMelbourne Adobe Developers
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To post to this group, send email to cfaussie@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 cfaussie@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] CreateObject of itself

2011-07-13 Thread Phil Haeusler

Hi Steve

If you're just trying to avoid referencing the component name within 
itself, then why not try using


local.metaData = GetMetaData(this);
local.tmpObj = CreateObject(component, local.metaData.fullname).init();

You might want to check the docs to see if fullname is the correct key 
to reference, but this sort of idea should allow you to create an 
instance of the CFC you're currently in.


Phil


On 13/07/11 8:37 PM, Steve Onnis wrote:


Can anyone suggest a way i can create a new reference to a cfc that i 
am already in?


Something like

FooBar.cfc

cfcomponent

cfproperty name=fooProp type=string /

cffunction name=bar output=false

cfscript

  LOCAL.tmpArr = [];

*for* (LOCAL.i = 1; LOCAL.i LTE 10; LOCAL.i = LOCAL.1+1) {

LOCAL.tmpObj = *new* this_;_

LOCAL.tmpObj.setfooBar(Some String #LOCAL.i#);

*ArrayAppend*(LOCAL.tmpArr, LOCAL.tmpObj);

}

/cfscript

/cffunction

/cfcomponent

Obviously new this; wont work.

I want something to replace

LOCAL.tmpObj = *createObject*(COMPONENT, FooBar);

Ideas?

Steve

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

To post to this group, send email to cfaussie@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 cfaussie@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] Mac OSX Lion

2011-07-21 Thread Phil Haeusler

Hi Gavin and everyone

I've had Flash Builder 4.5 running all day today, and haven't come 
across any problems with Lion so far.


ColdFusion is another story.  As far as i can tell, right now I can only 
get ColdFusion 9.0 running if i run it as root.  CF 9.01 seems to hang 
halfway through startup and you have to end up killing the process, even 
when running as root.


If you've got a critical piece of CF work to get done, don't upgrade 
your machine unless you want to spend a few hours trying to figure out 
why it isn't working and then downgrading your install.


Also, if you want to install Lion on several machines, back up the 
downloaded Installer before you run it.  Otherwise it's gone afterwards 
and you have to get it again.  I speak from experience here.


Phil


On 22/07/11 2:45 PM, Gavin Baumanis wrote:

Hi There,
For all those Mac users out there you might find this article
interesting from Adobe;

http://kb2.adobe.com/cps/905/cpsid_90508.html

which contains the following;

* Java Runtime needs to be installed manually, otherwise applications
may behave inconsistently


* Flash Builder

 Flash Builder 4.0.x will not work on Mac OS X 10.7. Adobe does not
intend to update this product for use on Mac OS X 10.7.
 Flash Builder 4.5 is generally compatible with Mac OS X Lion;
however, we have discovered issues that may degrade the user
experience or affect use of the products. We do not recommend that
these customers upgrade to Mac OS X 10.7.

* Flash Catalyst

 Flash Catalyst CS5 will not work on Mac OS X 10.7. Adobe does not
intend to update this product for use on Mac OS X 10.7.
 Flash Catalyst CS5.5 is generally compatible with Mac OS X Lion;
however, we have discovered issues that may degrade the user
experience or affect use of the products. We do not recommend that
these customers upgrade to Mac OS X 10.7.


Interestingly there is no mention of ColdFusion Builder in the
article.


Looks like I will not be upgrading straight away

Gavin.



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] Mac OSX Lion

2011-07-22 Thread Phil Haeusler

It's very true Kai.

But of course, if you don't have anything that's critical, plus a spare 
machine, and you like to tinker, then go for it :)


Phil


On 22/07/11 3:54 PM, Kai Koenig wrote:

Sorry, I don't want to appear more than a smart-arse as I need to be - but to 
make my point:


If you've got a critical piece of CF work to get done, don't upgrade your 
machine unless you want to spend a few hours trying to figure out why it isn't 
working and then downgrading your install.


If you've got a critical piece of ANYTHING to get done, would one then really 
upgrade one's machine to a new OS as an early adopter on day 1 or 2?

Seriously people? I usually wait 2-3 weeks for installing 10.x.x point upgrades 
for very good reasons, let alone a 10.x upgrade.

Cheers
Kai



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] MAD! Melbourne Adobe Developers meeting for Thursday 18 August 2011. COLDSPRING

2011-08-15 Thread Phil Haeusler

HI Peter

I'll be there.  See you Thursday

Phil


On 15/08/11 10:58 AM, Peter Robertson wrote:

This month's presentation is from Mark Mandel.

ColdSpring 2.0 Alpha 1 - What's New and Improved?

ColdSpring 2.0, codenamed Narwhal, has been in development for over a
year now, with an array of new and improved features being brewed in
the background.
With the release of Alpha 1 of this framework, these features have
become available to developers to take advantage of.
This presentation will give you an overview and examples of each of
the major new features of ColdSpring 2, including enhanced dependency
injection,  custom namespaces, ORM integration and AOP enhancements
and much more.

Mark Mandel is a full time consultant and lead developer on several
open source projects, most notably ColdSpring, JavaLoader, Transfer
ORM and ColdDoc and has been has been working with ColdFusion for a
number of years, including at his very own dot com back in the late
90's.

Mark can often be found blogging at www.compoundtheory.com, which has
housed his thoughts on ColdFusion, Java and various aspects of
software development for several years.  He can also be found as a
regular poster on ColdFusion mailing lists, causing havoc in the
#coldfusion channel on Dalnet irc network and podcasting on www.2ddu.com.

When he's not too busy writing open source software and consulting he
enjoys spending his extra time training martial arts in a wide variety
of disciplines and reading way too much fantasy literature.

Date: Thursday 18 August 2011
Time: 6:30 PM
Location:
CogState
Level 2
255 Bourke Street
Melbourne, VIC, 3000

A note on the door will provide a number to ring for access.
RSVP: Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality. We look forward to seeing you all there.

Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] MAD! Melbourne Adobe Developers meeting for Thursday 22 September 2011.

2011-09-22 Thread Phil Haeusler

Me come too now

But that's just getting illiterate

On 21/09/11 11:04 PM, Mark Mandel wrote:


Nice alliteration.

Sent from my mobile doohickey.

On Sep 21, 2011 9:31 PM, MrBuzzy mrbu...@gmail.com 
mailto:mrbu...@gmail.com wrote:

 I intend to attend.

 On 21/09/2011, at 4:44 PM, Mark Mandel mark.man...@gmail.com 
mailto:mark.man...@gmail.com wrote:


 I expect I will be there as well :)

 Mark

 On Wed, Sep 21, 2011 at 4:40 PM, Paul Kukiel kuki...@gmail.com 
mailto:kuki...@gmail.com wrote:

 I'll be there.

 Paul Kukiel

 On 20/09/2011, at 7:15 PM, Peter Robertson 
peter.r.robert...@gmail.com mailto:peter.r.robert...@gmail.com wrote:


  Unit Testing with MX Unit and Continuous Integration with ANT and
  Jenkins CI: Gavin Baumanis
 
  Kent Beck said;
  “Test driven development is a way of managing fear during
  programming.”
 
  He goes on to say that;
  • “Fear makes you tentative,
  • Fear makes you want to communicate less,
  • Fear makes you shy away from feedback.“
 
  Test Driven Development (TDD) allows us take steps towards 
controlling

  of all of these things.
 
  Gavin will show the pros and cons of Unit testing - and why he thinks
  you simply must write tests for your code.
 
  MX Unit is a ColdFusion port of the popular java testing framework,
  jUnit.
  Gavin will show you how to;
  * write
  * run your unit tests
 
  He'll also go into how to integrate your testing suite with ANT and
  the Jenkins CI platform to automate the testing of your code.
  So you'll be able to;
  * run your tests on command
  * run your tests every time you commit new code to your version
  control system
 
  and lastly,
  * deploy your tested code to a server.
 
  Gavin Baumanis :
 
  Melbourne Native who has been using ColdFusion since 4.00 when he
  inherited an application at RMIT University that was used to display
  spatial / usage / department information for the universities 15,000
  floors.
  Currently, he is the Senior Application Developer at PalCare, a
  company that provides web-based patient management software for the
  palliative care industry.
  He is also the Patch Manager for Apache Subversion project and spends
  his spare time looking for long-winding roads on his motorcycle.
 
  Date: Thursday 22 September 2011
  Time: 6:30 PM
  Location:
  CogState
  Level 2
  255 Bourke Street
  Melbourne, VIC, 3000
 
  A note on the door will provide a number to ring for access.
  RSVP: Please reply to this post if you are planning to attend so we
  know how many pizzas to order.
 
  As always, many thanks to Dale Fraser and CogState for their
  hospitality. We look forward to seeing you all there.
 
  Peter Robertson
 
  Co-Manager
  Melbourne Adobe Developers
 
  Steve Onnis
  Manager
  Melbourne Adobe Developers
 
  --
  You received this message because you are subscribed to the 
Google Groups cfaussie group.
  To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
  To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@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 cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@googlegroups.com.
 For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.





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

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

 2 Devs from Down Under Podcast
 http://www.2ddu.com/

 --
 You received this message because you are subscribed to the Google 
Groups cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@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 cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@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 cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 

Re: [cfaussie] Odd remoting issue

2011-09-25 Thread Phil Haeusler

Chris

Would it be possible that the URL of your Review Test Site that loads 
the Flex app is different to the URL of the ColdFusion Remoting 
endpoint?  If so, then you'll need a crossdomain.xml file on your CF 
server to allow the Flex app to connect.


Flash Builder does some magic behind the scenes to allow these 
connections to work while you are developing, but when you come to 
deploy it, you may find it just doesn't work.


Phil



On 26/09/11 9:51 AM, Chris Velevitch wrote:

I have CF 9.0.1 developer edition (with hotfix 1) installed with
standalone webserver on Windows XP. I'm using FB4.5.1 with CFB2
plugin. I'm developing a Flex application that using Flash Remoting to
access a remote database. During development and testing my remoting
calls all work as expected. I've setup a test site for external review
and that works as well.

When I exit my browser, FB, clear the CF logs and restart the server
and then hit my review test site development machine form another
machine , the page loads, but the remote data is not displayed. I got
a simple CF test file to call the service and dump the results and
that test file works. When I return to my dev machine and fire up the
browser and the site loads, but the remote data is again not
displayed. I then load my dev version (from the dev url) and it fails
to display the remote data. I fire up FB to use the network monitor to
see what's going and launch the dev version from within FB and it
works. I then locally re-hit the review site that works. I return the
other machine and re-hit both the review site and my dev site, but
they both fail to display data. The CF logs show nothing.

What is going on here? What am I missing? Has anyone experienced this before?


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
Topic: Deploying Coldfusion into the Cloud
Date: 26th September 6pm for 6:30 start
Details and RSVP on
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=38239



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] Odd remoting issue

2011-09-25 Thread Phil Haeusler

Chris

If you're using a browser that gives you a Network connection debug 
view, you'll be able to see the Flex app attempting to connect to the CF 
endpoint.  You can usually get a heap of information out of that, like 
if the connection was actually made, and more importantly if CF returned 
a valid response or if it gave a HTTP 500 type error that can be 
difficult to trap properly in your Flex app.  May help identify if the 
problem lies with the Flex app, the network or CF itself


Another thing, if you're using the Developer edition, could you be 
trying to connect from too many different IPs and CF is rejecting the 
connection?


Phil



On 26/09/11 10:05 AM, Chris Velevitch wrote:

I've hit that problem before. At runtime I determine remoting endpoint
from the swf url and I even display endpoint url for verification.


Chris

On Mon, Sep 26, 2011 at 09:59, Phil Haeuslerphilhaeus...@gmail.com  wrote:

Chris

Would it be possible that the URL of your Review Test Site that loads the
Flex app is different to the URL of the ColdFusion Remoting endpoint?  If
so, then you'll need a crossdomain.xml file on your CF server to allow the
Flex app to connect.

Flash Builder does some magic behind the scenes to allow these connections
to work while you are developing, but when you come to deploy it, you may
find it just doesn't work.

Phil



On 26/09/11 9:51 AM, Chris Velevitch wrote:

I have CF 9.0.1 developer edition (with hotfix 1) installed with
standalone webserver on Windows XP. I'm using FB4.5.1 with CFB2
plugin. I'm developing a Flex application that using Flash Remoting to
access a remote database. During development and testing my remoting
calls all work as expected. I've setup a test site for external review
and that works as well.

When I exit my browser, FB, clear the CF logs and restart the server
and then hit my review test site development machine form another
machine , the page loads, but the remote data is not displayed. I got
a simple CF test file to call the service and dump the results and
that test file works. When I return to my dev machine and fire up the
browser and the site loads, but the remote data is again not
displayed. I then load my dev version (from the dev url) and it fails
to display the remote data. I fire up FB to use the network monitor to
see what's going and launch the dev version from within FB and it
works. I then locally re-hit the review site that works. I return the
other machine and re-hit both the review site and my dev site, but
they both fail to display data. The CF logs show nothing.

What is going on here? What am I missing? Has anyone experienced this
before?


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
Topic: Deploying Coldfusion into the Cloud
Date: 26th September 6pm for 6:30 start
Details and RSVP on
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=38239


--
You received this message because you are subscribed to the Google Groups
cfaussie group.
To post to this group, send email to cfaussie@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 cfaussie@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] REMINDER: Please RSVP. MAD! Melbourne Adobe Developers Thursday 20 October 2011.

2011-10-19 Thread Phil Haeusler

Count me in too!

On 19/10/11 5:01 PM, Mark Mandel wrote:

I'm a definite maybe. All depends on how some deployments tomorrow go.

Great topics though!

Mark

On Wed, Oct 19, 2011 at 4:44 PM, Paul Kukiel kuki...@gmail.com 
mailto:kuki...@gmail.com wrote:


I'll be there.

Paul


On Wed, Oct 19, 2011 at 4:43 PM, Peter Robertson
peter.r.robert...@gmail.com mailto:peter.r.robert...@gmail.com
wrote:

Our next MAD covers The Cloud  Jira.

Please RSVP to this list so that we can cater.
Details are available at
http://mad.groups.adobe.com/index.cfm?event=post.displaypostid=38973
http://mad.groups.adobe.com/index.cfm?event=post.displaypostid=38973

Peter Robertson


Co-Manager
Melbourne Adobe Developers

Steve Onnis


Manager
Melbourne Adobe Developers

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




-- 
Paul Kukiel
-- 
You received this message because you are subscribed to the Google

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




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

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

2 Devs from Down Under Podcast
http://www.2ddu.com/

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

To post to this group, send email to cfaussie@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 cfaussie@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] Re: REMINDER: Please RSVP. MAD! Melbourne Adobe Developers Thursday 20 October 2011.

2011-10-19 Thread Phil Haeusler
Sorry guys adding my name to list of pikers.  It's turned out there's a 
bit too much on for me to make the trip into town tonight.

See you all at CFObjective!
Phil


On 20/10/11 4:00 PM, Mark Mandel wrote:

Yeah, I won't make it either.



Mark

On Thu, Oct 20, 2011 at 3:59 PM, Dale Fraser d...@fraser.id.au 
mailto:d...@fraser.id.au wrote:


At the pub?

Regards

Dale Fraser

http://dale.fraser.id.au

http://cfmldocs.com

http://learncf.com

http://flexcf.com

*From:*cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com
[mailto:cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com] *On Behalf Of *MrBuzzy
*Sent:* Thursday, 20 October 2011 3:51 PM
*To:* cfaussie@googlegroups.com mailto:cfaussie@googlegroups.com
*Subject:* Re: [cfaussie] Re: REMINDER: Please RSVP. MAD!
Melbourne Adobe Developers Thursday 20 October 2011.

Nope, can't make it, gotta work late :(


On 20/10/2011, at 9:40 AM, Chong kck...@gmail.com
mailto:kck...@gmail.com wrote:

I will be there as well...

-- 
You received this message because you are subscribed to the

Google Groups cfaussie group.
To view this discussion on the web visit
https://groups.google.com/d/msg/cfaussie/-/vlGc9gpO4cAJ.
To post to this group, send email to cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com
mailto: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 cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com
mailto: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 cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com
mailto:cfaussie%2bunsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.




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

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

2 Devs from Down Under Podcast
http://www.2ddu.com/

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

To post to this group, send email to cfaussie@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 cfaussie@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.

image/gif

Re: [cfaussie] MAD! Melbourne Adobe Developers meeting for Thursday November 24th 2011

2011-11-20 Thread Phil Haeusler

I will be there Thursday too!
See you all then

Phil


On 10/11/11 6:22 PM, MrBuzzy wrote:

Great stuff Peter.

I reckon I'll be there on the 24th.

On 10/11/2011, at 16:04, Peter Robertsonpeter.r.robert...@gmail.com  wrote:


CFObjective: Highlights and Takeaways

We had been going to try to piggy-back MAD on CFObjective this year
but it proved a bit difficult, so instead we're moving to the Thursday
following (the 24th) and will be doing a re-cap of CFObjective
highlights and take-aways from those of us attending.

If you've looked at the program (http://cfobjective.com.au/program)
you'll see that it's both rich and varied, so I expect we'll have lots
to share with you.

Gavin Baumanis, Phil Haeusler and (of course) Mark Mandel are
attending and speaking and I am also attending so we'll be going
around the table and talking about what we each found most interesting
and useful.  Anybody else who is attending is welcome to come along
and contribute.

Date: Thursday 24 November 2011
Time: 6:30 PM
Location:
CogState
Level 2
255 Bourke Street
Melbourne, VIC, 3000

A note on the door will provide a number to ring for access.
RSVP: Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality. We look forward to seeing you all there.

Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers

--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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 cfaussie@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] Re: MAD! Melbourne Adobe Developers Xmas Get-together: Thursday Dec 16th 2011.

2011-12-14 Thread Phil Haeusler

Hi

Sorry I won't be attending.  I double booked myself months ago so i'll 
be spending my evening riding miniature trains around.  Have fun whoever 
is going, the roof top bar at the Carlton it is a nice place to have a 
few drinks on sunny day such as today.


See you at the next MAD
Phil



On 15/12/11 10:03 AM, Peter Robertson wrote:

Can we get a head-count please?

Who's coming who hasn't posted back yet?  Please let us know.

Cheers


Peter

On Dec 13, 8:06 pm, Peter Robertsonpeter.r.robert...@gmail.com
wrote:

Come and share a drink, a laugh and a feed with us to celebrate yet
another year of all things MAD.  We will be drawing the software prize
for the second half of the year also.  Chances are ranked based upon
attendance and contributions during the past six months.

There will be a tab to cover some basics and then we'll pay
individually as we go.

Date: Thursday 16 Dec 2011
Time: 6:00 PM
Location:
Top floor
The Carlton,www.thecarlton.com.au
193 Burke St (One block up from CogState)
Melbourne, VIC, 3000

If you can't find us, ask at the bar, we'll make sure they know where
we are.

Thanks to Phil and Mr Buzzy for the detailed research that made this
event possible :)

Please let us know if you're coming so we have some idea of the
numbers.

Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] Session Sharing on Cloud Cluster

2011-12-19 Thread Phil Haeusler

Dale

The other way to tackle this would be to run your own dedicated 
load-balancer on your ap00 instance.   Your SSL certs would live on ap00 
which could then handle the SSL connections and manage the sticky 
sessions to your actual application servers.  This would remove the need 
for CF to actually know anything about how your app is deployed across 
the cloud.


Phil


On 19/12/11 11:13 PM, Dale Fraser wrote:


So RackSpace and Amazon dont support sticky sessions on https, im 
guessing because the data is encrypted and they cant see it.


I was toying with the idea of doing something like this, which would 
effectivally do the same thing


Lets say I have 4 endpoints

ap00 (balancer)

ap01 (server 1)

ap02 (server 2)

ap03 (server 3)

In on request if the server is ap00, just redirect to the real server 
im on, which I can obtain (answer to previous question)


machineName = createObject(java, 
java.net.InetAddress).localhost.getCanonicalHostName();


so balancer takes me to 03, I just hard redirect to 03 and user stays 
on that server.


Only downside I can think of, which is a decent downside, is that if a 
user bookmarks any url, they are on that server forever.


Any other options, I cant be the first person to try this.

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 cfaussie@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 cfaussie@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] Re: MAD! Melbourne Adobe Developers: No meeting for Jan 2012

2012-01-17 Thread Phil Haeusler
In an effort to make this the most well attended non-mad mad meeting, 
I'd be up for drinks and dinner Thursday too


And don't worry Dennis, Melbourne is renowned for it's great cheap dodgy 
Chinese restaurants


Phil


On 17/01/12 6:20 PM, Dennis Clark wrote:
Peter: It's been long enough since I was last down there that I didn't 
remember if it was Burke or Bourke, but thankfully Google Maps has 
autocorrect :)


Mark: I've got all of Thursday night free so I can go for dinner as 
well, assuming it's not overly expensive. Fancy schmancy restaurants 
is one part of the Melbourne experience that I don't mind skipping.


-- Dennis

On 17 January 2012 17:55, Mark Mandel mark.man...@gmail.com 
mailto:mark.man...@gmail.com wrote:


You thinking just drinks, or you want to grab dinner somewhere as
well?

I could potentially do Thursday too ;o)

Mark


On Tue, Jan 17, 2012 at 5:39 PM, Peter Robertson
pe...@p-robertson.com mailto:pe...@p-robertson.com wrote:

Thanks Dale.  It's BOURKE Dennis, but I'm sure you knew that.

Peter R

On Tue, Jan 17, 2012 at 4:53 PM, Dale Fraser
d...@fraser.id.au mailto:d...@fraser.id.au wrote:

Burke street, where is that?

Regards
Dale Fraser

http://dale.fraser.id.au
http://cfmldocs.com
http://learncf.com
http://flexcf.com

-Original Message-
From: cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com
[mailto:cfaussie@googlegroups.com
mailto:cfaussie@googlegroups.com] On Behalf
Of Peter Robertson
Sent: Tuesday, 17 January 2012 3:26 PM
To: cfaussie
Subject: [cfaussie] Re: MAD! Melbourne Adobe Developers:
No meeting for Jan
2012

Hi Dennis

I'd be happy to meet for a drink on Thursday evening.
If you're in the CBD, then a suitable venue would be:

Date: Thursday 16 Dec 2011
Time: 6:00 PM
Location:
Top floor
The Carlton, www.thecarlton.com.au
http://www.thecarlton.com.au
193 Burke St (One block up from CogState) Melbourne, VIC, 3000

Any other starters?

Peter Robertson

On Jan 17, 3:20 pm, Dennis Clark boomf...@gmail.com
mailto:boomf...@gmail.com wrote:
 I guess that ruins my gatecrashing plans.

 I'll be in the Melbourne CBD this Thursday and Friday,
so if any of
 you MAD hatters are planning a non-meet gathering and
wouldn't mind
 the company of a random non-local CF developer, let me know.

 -- Dennis

 On 12 January 2012 19:57, Peter Robertson
peter.r.robert...@gmail.com
mailto:peter.r.robert...@gmail.comwrote:



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] MAD! Melbourne Adobe Developers Meeting March 22, 2012

2012-03-21 Thread Phil Haeusler

I'll be the person sneaking in at about 6:45 or so.  See you then
Phil

On 20/03/12 6:14 PM, Peter Robertson wrote:

A/B Testing with Squabble

by Mark Mandel

You have two designs, one with a blue button, and one with a red
button, and you think that both designs could work on your a feature
of your application. The problem is, how do you know which one is
actually better? Which design is going to convert more users into
giving you their hard earned dollars through your application?

The fact of the matter is, you don't actually know. You can only make
a guestimate based on your experience as a web application developer,
and hope for the best.  Unfortunately, real users can be a fickle
bunch that do unpredictable things, and it can be very hard to track
what the overall effect of all these changes to a site can make.

Squabble is a server side A/B testing framework for ColdFusion that
allows you to test multiple variations of site design and/or
functionality against your real users, in real time, and quantify the
results into statistics that can actually prove which combination of
variations results in your application getting more of the conversions
that you require. This gives you amazing freedom in being able to try
out new things on established sites, as you are able to track what
changes actually effect the behaviour of your real users, and then
continually improve upon them.

Mark Mandel is a full time consultant and lead developer on several
open source projects, most notably ColdSpring, JavaLoader, Transfer
ORM and ColdDoc and has been has been working with ColdFusion for a
number of years, including at his very own dot com back in the late
90's.

Mark can often be found blogging at www.compoundtheory.com, which has
housed his thoughts on ColdFusion, Java and various aspects of
software development for several years.  He can also be found as a
regular poster on ColdFusion mailing lists, causing havoc in the
#coldfusion channel on Dalnet irc network and podcasting on www.2ddu.com.

When he's not too busy writing open source software and consulting he
enjoys spending his extra time training martial arts in a wide variety
of disciplines and reading way too much fantasy literature.


Date: Thursday 22 March 2012
Time: 6:30 PM
Location:
CogState
Level 2
255 Bourke Street
Melbourne, VIC, 3000

A note on the door will provide a number to ring for access.
RSVP: Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality. We look forward to seeing you all there

Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] MAD! Melbourne Adobe Developers Meeting April 19, 2012

2012-04-19 Thread Phil Haeusler

Hey all,
I'll be along tonight too.
See you there
Phil

On 16/04/12 9:13 AM, Peter Robertson wrote:

Getting closure on Closures by Mark Mandel

It seems like all the cool kids are getting on the Closure bandwagon
these days.  ColdFusion is no exception with Closures coming to
ColdFusion 10 in the near future, but what is the hype all about?

Are closures really the programming nirvana that we've all been
looking for, a well marketed snake oil of fancy programmatic syntax,
or something in between?

We'll look at exactly what Closures are, and how the can help you out
with your day to day programming tasks, as well as other real world
examples that will help show off the power of closures for those more
tricky problems.

Mark Mandel is a full time consultant and lead developer on several
open source projects, most notably ColdSpring, JavaLoader, Transfer
ORM and ColdDoc and has been has been working with ColdFusion for a
number of years, including at his very own dot com back in the late
90's.

Mark can often be found blogging at www.compoundtheory.com, which has
housed his thoughts on ColdFusion, Java and various aspects of
software development for several years.  He can also be found as a
regular poster on ColdFusion mailing lists, causing havoc in the
#coldfusion channel on Dalnet irc network and podcasting on www.2ddu.com.

When he's not too busy writing open source software and consulting he
enjoys spending his extra time training martial arts in a wide variety
of disciplines and reading way too much fantasy literature.

Date: Thursday 19 April 2012
Time: 6:30 PM
Location:
CogState
Level 2
255 Bourke Street
Melbourne, VIC, 3000

A note on the door will provide a number to ring for access.
RSVP: Please reply to this post if you are planning to attend so we
know how many pizzas to order.

As always, many thanks to Dale Fraser and CogState for their
hospitality. We look forward to seeing you all there

Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@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] MAD! Melbourne Adobe Developers: Apache Flex: The way forward. June 21st, 2012

2012-06-18 Thread Phil Haeusler

I'm in.  See you all there

Phil


On 19/06/12 1:45 PM, Peter Robertson wrote:
*Justin Mclean has more than 15 years experience in developing web 
based applications and over that time has worked on hundreds of web 
applications, database driven web sites, multimedia applications and 
semiconnected desktop applications.


Justin has managed his own consulting company Class Software for 15 
years and has a long history with Adobe/Macromedia/Allaire products in 
particular ColdFusion (still has the 3 floppies it originally came on) 
and Flex (now Apache Flex). Justin is also a Apache Flex board member 
and committer, an Adobe Community Professional, a certified Adobe 
trainer for ColdFusion and Flex and is an international conference 
speaker.


Apache Flex: The way forward
An inside look of the Apache Flex project, it current status, what has 
(and hasn't) been achieved, it's future direction and what you can do 
to get involved.


Date: Thursday 21st June 2012
Time: 6:30 PM
Location:
CogState
Level 2
255 Bourke Street
Melbourne, VIC, 3000

A note on the door will provide a number to ring for access.
RSVP: Please reply to this post if you are planning to attend so we 
know how many pizzas to order.


As always, many thanks to Dale Fraser and CogState for their 
hospitality. We look forward to seeing you all there.


Peter Robertson

Co-Manager
Melbourne Adobe Developers

Steve Onnis

Manager
Melbourne Adobe Developers*
--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/cfaussie/-/0IjU_eveLekJ.

To post to this group, send email to cfaussie@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 cfaussie@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] Re: First Melbourne Adobe Developers meeting. Comments and feedback please.

2012-10-11 Thread Phil Haeusler
FYI to all, I've spoken with Romy

Phil 


On Thursday, 11 October 2012 at 2:38 PM, be1234 wrote:

 Peter Robertson, or anyone who is involved with ColdFusion,  
 
 If this message reaches you could you please contact me asap on 0413914532.
 
 Thank you, 
 
 Romy
 
 
 On Tuesday, 3 May 2011 20:02:41 UTC+10, Peter Robertson wrote:
  Last Thursday we held the first combined ColdFusion / Flex meeting 
  here in Melbourne, attended by 11 people. 
  
  Speakers were Phil Haeusler and Mark Mandel. For details see the 
  announcement at MAD, Adobe Groups http://bit.ly/fIYesX . 
  
  There was general approval of the new format and a number of topic 
  areas for future meetings were proposed after the presentations. We 
  clarified that any topic of interest to developers working under the 
  general Adobe banner would be of interest to this group, and a 
  preliminary list was taken.  If you're in the Melbourne area, and 
  develop in ColdFusion, Flex or AS3 you may well be interested in 
  joining us on the third Thursday of each month.  Details are At MAD, 
  http://mad.groups.adobe.com/.  Our aim is to provide two 20 to 30 
  minute presentations each evening plus general discussion and pizza. 
  
  Here are some of the topics of interest raised for future meetings. 
  Please indicate your interest and by all means suggest other topics. 
  (We're also looking for presenters, please get in touch if you'd like 
  to present some time this year.) 
  
  - CSS 
  - HTML5 
  - Databases 
- No SQL 
- Tuning 
  - Mobile 
  - Cloud Services 
  - Version Control 
  - SOLR 
  - Security 
  - Testing 
  - .. and of course ColdFusion, Flex, AS. 
  
  If you have any questions or would like to present, please contact us. 
  
  Peter Robertson 
  Co-Manager 
  Melbourne Adobe Developers 
  
  Steve Onnis 
  Manager 
  Melbourne Adobe Developers
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/cfaussie/-/KBASXiV2IoEJ.
 To post to this group, send email to cfaussie@googlegroups.com 
 (mailto:cfaussie@googlegroups.com).
 To unsubscribe from this group, send email to 
 cfaussie+unsubscr...@googlegroups.com 
 (mailto: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 cfaussie@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.