[cfaussie] Multiple calls of the same page

2006-08-31 Thread Scott Thornton

Nope, that does not work.

The value of the attribute query, which is currently SESSION.SECTOR, is 
invalid. 

 [EMAIL PROTECTED] 31/08/2006 3:52:02 pm 

CFQUERY datasource=#DSN# name=SESSION.SECTOR ??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 3:44 PM
Subject: [cfaussie] Multiple calls of the same page



Hi,

I want to call a certain page (in a cf schedule) from within a cfoutput 
query= so it runs a number of times.

This page is an action page that has form info posted to it and runs for 
quite a long while.

Essentially I would want to set some form variables based on the query and 
include (or by some other method run )  the page.

The problem is that once the included page has executed once, the original 
query no longer exists. (or so it seems)

eg


CFQUERY datasource=#DSN# name=SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY


cfoutput query=SECTOR

cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = sector.SB_SECTOR_ID

!--- Run program  for each sector ---
Startting #SECTOR.SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm

Completed #SECTOR.SB_SECTOR_DESC# br
cfflush


/cfoutput

The error is Element SB_SECTOR_ID is undefined in SECTOR. 

There are only 6 records in the sector query, so I could, hard code it all, 
but I would prefer not to.

Any advice?

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
p: +61 02 49213589
m: 0413800242









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



[cfaussie] Australian Flex Mailing List [flexaussie]

2006-08-31 Thread Bjorn Schultheiss

Hey Guys,

I've started a new flex mailing list for us Aussies!

This not an effort to move Australian developers away from using FlexCoders,
rather it may be useful for Aussie developers to post messages that may not
be suitable for the international list.

Anyway the details.
http://groups.yahoo.com/group/flexaussie/
Post message:   [EMAIL PROTECTED]
Subscribe:  [EMAIL PROTECTED]


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

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



[cfaussie] Re: Multiple calls of the same page

2006-08-31 Thread Rod Higgins

CFQUERY datasource=#DSN# name=SESSION.SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY

cfoutput query=SESSION.SECTOR
cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = SB_SECTOR_ID
!--- Run program  for each sector ---
Startting #SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm
Completed #SB_SECTOR_DESC# br
cfflush
/cfoutput

Doesn't work ?? I know cfflush likes to cause problems with cookie's, 
cflocation, etc but I didn't think there was a problem with cfoutput ...??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 4:08 PM
Subject: [cfaussie] Multiple calls of the same page



Nope, that does not work.

The value of the attribute query, which is currently SESSION.SECTOR, is 
invalid.

 [EMAIL PROTECTED] 31/08/2006 3:52:02 pm 

CFQUERY datasource=#DSN# name=SESSION.SECTOR ??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 3:44 PM
Subject: [cfaussie] Multiple calls of the same page



Hi,

I want to call a certain page (in a cf schedule) from within a cfoutput
query= so it runs a number of times.

This page is an action page that has form info posted to it and runs for
quite a long while.

Essentially I would want to set some form variables based on the query and
include (or by some other method run )  the page.

The problem is that once the included page has executed once, the original
query no longer exists. (or so it seems)

eg


CFQUERY datasource=#DSN# name=SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY


cfoutput query=SECTOR

cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = sector.SB_SECTOR_ID

!--- Run program  for each sector ---
Startting #SECTOR.SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm

Completed #SECTOR.SB_SECTOR_DESC# br
cfflush


/cfoutput

The error is Element SB_SECTOR_ID is undefined in SECTOR. 

There are only 6 records in the sector query, so I could, hard code it all,
but I would prefer not to.

Any advice?

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
p: +61 02 49213589
m: 0413800242












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



[cfaussie] Re: CF webservices - output parameters

2006-08-31 Thread Adam Chapman

Hi Drew,

You COULD just build the xml soap response yourself.. kinda defeats the
purpose of using cf for webservices.. but I had to do this to get around
a webservice 'complex datatype' issue.. 

Cheers,
Adam

-Original Message-
From: skateboard.com.au [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 31 August 2006 3:59 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF webservices - output parameters


Hey Andrew

Bummer if CF is limited in this way. Can anyone else suggest another web

service delivery platform that will run on solaris. I'll look at an 
apache/tomcat/axis configuration if nobody else has any suggestions.

thanks

Drew 



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



[cfaussie] Re: Multiple calls of the same page

2006-08-31 Thread Dale Fraser

What exactly are you trying to achieve here.

I'm sure there is a better way such as a function or even better cfc.

Regards
Dale Fraser

http://dale.fraser.id.au


 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Rod Higgins
Sent: Thursday, 31 August 2006 16:19 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Multiple calls of the same page


CFQUERY datasource=#DSN# name=SESSION.SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY

cfoutput query=SESSION.SECTOR
cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = SB_SECTOR_ID
!--- Run program  for each sector ---
Startting #SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm
Completed #SB_SECTOR_DESC# br
cfflush
/cfoutput

Doesn't work ?? I know cfflush likes to cause problems with cookie's, 
cflocation, etc but I didn't think there was a problem with cfoutput ...??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 4:08 PM
Subject: [cfaussie] Multiple calls of the same page



Nope, that does not work.

The value of the attribute query, which is currently SESSION.SECTOR, is 
invalid.

 [EMAIL PROTECTED] 31/08/2006 3:52:02 pm 

CFQUERY datasource=#DSN# name=SESSION.SECTOR ??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 3:44 PM
Subject: [cfaussie] Multiple calls of the same page



Hi,

I want to call a certain page (in a cf schedule) from within a cfoutput
query= so it runs a number of times.

This page is an action page that has form info posted to it and runs for
quite a long while.

Essentially I would want to set some form variables based on the query and
include (or by some other method run )  the page.

The problem is that once the included page has executed once, the original
query no longer exists. (or so it seems)

eg


CFQUERY datasource=#DSN# name=SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY


cfoutput query=SECTOR

cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = sector.SB_SECTOR_ID

!--- Run program  for each sector ---
Startting #SECTOR.SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm

Completed #SECTOR.SB_SECTOR_DESC# br
cfflush


/cfoutput

The error is Element SB_SECTOR_ID is undefined in SECTOR. 

There are only 6 records in the sector query, so I could, hard code it all,
but I would prefer not to.

Any advice?

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
p: +61 02 49213589
m: 0413800242















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



[cfaussie] Multiple calls of the same page

2006-08-31 Thread Scott Thornton

actually, there was a typo on my behalf.

the page works as below.

thanks rod and dale.



 [EMAIL PROTECTED] 31/08/2006 4:19:23 pm 

CFQUERY datasource=#DSN# name=SESSION.SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY

cfoutput query=SESSION.SECTOR
cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = SB_SECTOR_ID
!--- Run program  for each sector ---
Startting #SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm
Completed #SB_SECTOR_DESC# br
cfflush
/cfoutput

Doesn't work ?? I know cfflush likes to cause problems with cookie's, 
cflocation, etc but I didn't think there was a problem with cfoutput ...??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 4:08 PM
Subject: [cfaussie] Multiple calls of the same page



Nope, that does not work.

The value of the attribute query, which is currently SESSION.SECTOR, is 
invalid.

 [EMAIL PROTECTED] 31/08/2006 3:52:02 pm 

CFQUERY datasource=#DSN# name=SESSION.SECTOR ??

- Original Message - 
From: Scott Thornton [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Sent: Thursday, August 31, 2006 3:44 PM
Subject: [cfaussie] Multiple calls of the same page



Hi,

I want to call a certain page (in a cf schedule) from within a cfoutput
query= so it runs a number of times.

This page is an action page that has form info posted to it and runs for
quite a long while.

Essentially I would want to set some form variables based on the query and
include (or by some other method run )  the page.

The problem is that once the included page has executed once, the original
query no longer exists. (or so it seems)

eg


CFQUERY datasource=#DSN# name=SECTOR
SELECT
SB_SECTOR_ID,
SB_SECTOR_DESC
FROM
SB_SECTOR
ORDER BY
SB_SECTOR_ID
/CFQUERY


cfoutput query=SECTOR

cfset FORM.EXTRACT_DATE_TO = '01-jan-1990'
cfset FORM.SB_SECTOR_ID = sector.SB_SECTOR_ID

!--- Run program  for each sector ---
Startting #SECTOR.SB_SECTOR_DESC# br
cfflush
cfinclude template=sbmt215_act.cfm

Completed #SECTOR.SB_SECTOR_DESC# br
cfflush


/cfoutput

The error is Element SB_SECTOR_ID is undefined in SECTOR. 

There are only 6 records in the sector query, so I could, hard code it all,
but I would prefer not to.

Any advice?

Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
p: +61 02 49213589
m: 0413800242















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



[cfaussie] Re: Why buy into CF?

2006-08-31 Thread M@ Bourke
Rails won't be the last framework for ruby, just like any language it'll eventually get flooded with crap and poor code. I couldn't imagine many companies scrapping a technology for ruby just yet, sure some will but its a bit to pioneering, sure its an old language but its more the frame work your choosing, 
I can't see a pure OO language eating into cf to much, cf is big as its simple for beginners

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


[cfaussie] Re: Why bother

2006-08-31 Thread M@ Bourke
The only thing I would like (and this makes sense) is for a basicversion of the CF server to be open sourcedthere was once a open source CF server project, started back in about 97 by some scottish lads I think, 
its now called Blue Dragon and is developed by New Atlanta and is no longer open source.

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


[cfaussie] Re: Sleep is good Was: Why bother with sleep

2006-08-31 Thread M@ Bourke
On 8/31/06, Joel Cass [EMAIL PROTECTED] wrote:
it just seems to me like aneasy way to make a CF server unavailable (if used unwisely).CFloop will do that, so will a lot of other tags

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


[cfaussie] Re: CF webservices - output parameters

2006-08-31 Thread Charlie Arehart

Drew,  are you running on CF7, by chance? If so, there is a new
getsoapresponse() function that may help. I don't know for sure, but it's
worth checking out.

Beyond that, you may also want to look into the underlying Apache Axis
project upon which CF's (and BD's) web service interaction is actually
based. There may be documentation of how to do it calling its API directly,
which wouldn't be hard to do from within CFML.

/charlie
http://www.carehart.org/blog/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of skateboard.com.au
Sent: Thursday, August 31, 2006 1:59 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF webservices - output parameters


Hey Andrew

Bummer if CF is limited in this way. Can anyone else suggest another web
service delivery platform that will run on solaris. I'll look at an
apache/tomcat/axis configuration if nobody else has any suggestions.

thanks

Drew 


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



[cfaussie] Last nights usergroup meeting

2006-08-31 Thread Steve Onnis



Just like to say 
thank you to everyone who could make it last night.

Bjorns presentation 
was fantastic, a great quick insight into what FLEX is all 
about.

Must say, that's the 
most number of people I have had at my place. At least I know the floor will 
hold up now:P

Regards
Steve 
Onnis
--~--~-~--~~~---~--~~
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  -~--~~~~--~~--~--~---




[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Bjorn Schultheiss



Thanks for organising it all Steve.
Another good CFUG meeting.

Regards,

Bjorn 
Schultheiss
Senior Flash 
Developer
QDC 
Technologies



From: cfaussie@googlegroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Steve 
OnnisSent: Friday, 1 September 2006 10:11 AMTo: CFAussie 
Mailing ListSubject: [cfaussie] Last nights usergroup 
meeting

Just like to say 
thank you to everyone who could make it last night.

Bjorns presentation 
was fantastic, a great quick insight into what FLEX is all 
about.

Must say, that's the 
most number of people I have had at my place. At least I know the floor will 
hold up now:P

Regards
Steve 
Onnis
--~--~-~--~~~---~--~~
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  -~--~~~~--~~--~--~---


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Dale Fraser








Great job Bjorn,



Ill look forward to the next one where you talk CF /
Flex integration (hint, hint).



Regards
Dale Fraser

http://dale.fraser.id.au














From:
cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis
Sent: Friday, 1 September 2006
10:11 AM
To: CFAussie Mailing List
Subject: [cfaussie] Last nights
usergroup meeting







Just like to say thank you to everyone who could make it
last night.











Bjorns presentation was fantastic, a great quick insight
into what FLEX is all about.











Must say, that's the most number of people I have had at my
place. At least I know the floor will hold up now:P











Regards





Steve Onnis








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






[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread George
Thank you Bjorn for the great presentation.I hope the next one will have CF/Flex intregration as well as FDS or more data binding.

George
On 01/09/06, Dale Fraser [EMAIL PROTECTED] wrote:




Great job Bjorn,

I'll look forward to the next one where you talk CF / Flex integration (hint, hint).


RegardsDale Fraser
http://dale.fraser.id.au







From:
 cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com] On Behalf Of Steve OnnisSent: Friday, 1 September 2006 10:11 AM
To: CFAussie Mailing ListSubject: [cfaussie] Last nights usergroup meeting




Just like to say thank you to everyone who could make it last night.





Bjorns presentation was fantastic, a great quick insight into what FLEX is all about.



Must say, that's the most number of people I have had at my place. At least I know the floor will hold up now:P



Regards

Steve Onnis




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


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Bjorn Schultheiss



YeahThe next one 
we'll go hard into CF/Flex and then intro into FDS.
FDS isreally cool but complex.
CF/Flex rocks.. The next meeting will be a good 
one.

In the meantime post your work flexaussie 
list.
Guys need any help i'll be there.

Regards,

Bjorn 
Schultheiss
Senior Flash 
Developer
QDC 
Technologies



From: cfaussie@googlegroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of GeorgeSent: 
Friday, 1 September 2006 10:45 AMTo: 
cfaussie@googlegroups.comSubject: [cfaussie] Re: Last nights 
usergroup meeting

Thank you Bjorn for the great presentation.I hope the next one will 
have CF/Flex intregration as well as FDS or more data binding.

George
On 01/09/06, Dale 
Fraser [EMAIL PROTECTED] 
wrote: 

  
  
  
  Great job 
  Bjorn,
  
  I'll look forward to the next one 
  where you talk CF / Flex integration (hint, hint). 
  
  RegardsDale Fraser
  http://dale.fraser.id.au
  
  
  
  
  
  
  From: cfaussie@googlegroups.com [mailto: 
  cfaussie@googlegroups.com] On Behalf Of 
  Steve OnnisSent: 
  Friday, 1 September 2006 10:11 AMTo: CFAussie Mailing ListSubject: [cfaussie] Last nights usergroup 
  meeting
  
  
  
  
  Just like to say thank you to 
  everyone who could make it last night.
  
  
  
  
  
  Bjorns presentation was fantastic, 
  a great quick insight into what FLEX is all about.
  
  
  
  Must say, that's the most number 
  of people I have had at my place. At least I know the floor will hold up 
  now:P
  
  
  
  Regards
  
  Steve 
Onnis
  
  
  
  
--~--~-~--~~~---~--~~
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  -~--~~~~--~~--~--~---


[cfaussie] Re: Australian Flex Mailing List [flexaussie]

2006-08-31 Thread George Lu
Thanks Bjorn. I'll subscribe it.

George
On 31/08/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:
Hey Guys,I've started a new flex mailing list for us Aussies!This not an effort to move Australian developers away from using FlexCoders,
rather it may be useful for Aussie developers to post messages that may notbe suitable for the international list.Anyway the details.http://groups.yahoo.com/group/flexaussie/
Post message: [EMAIL PROTECTED]Subscribe:[EMAIL PROTECTED]
Regards,Bjorn SchultheissSenior Flash DeveloperQDC Technologies

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


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Mark Mandel

Btw all -

I got told today if we want to do CFUG meetings here (Raglan St, Sth Melbourne)

Would people like tha as a venue?

Mark

On 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:


 Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex.
 CF/Flex rocks.. The next meeting will be a good one.

 In the meantime post your work flexaussie list.
 Guys need any help i'll be there.


 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---



[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Bjorn Schultheiss

2 thumbs up.

Sounds good to me.
Just around the corner from where I work.
 


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, 1 September 2006 11:23 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Last nights usergroup meeting


Btw all -

I got told today if we want to do CFUG meetings here (Raglan St, Sth
Melbourne)

Would people like tha as a venue?

Mark

On 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:


 Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex.
 CF/Flex rocks.. The next meeting will be a good one.

 In the meantime post your work flexaussie list.
 Guys need any help i'll be there.


 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

--
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---



[cfaussie] Re: CF webservices - output parameters

2006-08-31 Thread skateboard.com.au

Hey Adam

Thanks. I didn't even really think of doing that. Putting together the 
soap packets manually is actually fairly easy. Works a treat.

OT: does anyone have a current email address for The Jorgenator

cheers

Drew




-Original Message-
From: Adam Chapman [EMAIL PROTECTED]
To: cfaussie@googlegroups.com
Date: Thu, 31 Aug 2006 16:23:18 +1000
Subject: [cfaussie] Re: CF webservices - output parameters

 
 Hi Drew,
 
 You COULD just build the xml soap response yourself.. kinda defeats the
 purpose of using cf for webservices.. but I had to do this to get
 around
 a webservice 'complex datatype' issue.. 
 
 Cheers,
 Adam
 
 -Original Message-
 From: skateboard.com.au [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, 31 August 2006 3:59 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: CF webservices - output parameters
 
 
 Hey Andrew
 
 Bummer if CF is limited in this way. Can anyone else suggest another
 web
 
 service delivery platform that will run on solaris. I'll look at an 
 apache/tomcat/axis configuration if nobody else has any suggestions.
 
 thanks
 
 Drew 
 
 
 
  



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



[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Bjorn Schultheiss

Hey Mark,

I was just thinking perhaps we could lead into a presentation for ORM CF
FLEX integration. 
I'm sure this would lead to good things in the community


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, 1 September 2006 11:23 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Last nights usergroup meeting


Btw all -

I got told today if we want to do CFUG meetings here (Raglan St, Sth
Melbourne)

Would people like tha as a venue?

Mark

On 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:


 Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex.
 CF/Flex rocks.. The next meeting will be a good one.

 In the meantime post your work flexaussie list.
 Guys need any help i'll be there.


 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

--
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---



[cfaussie] Re: Way OT - seen Travla case for sale in Australia?

2006-08-31 Thread Chris Velevitch

According to castronics website, they are looking for distributors in ANZ.


Chris
-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
m: 0415 469 095
www.flashdev.org.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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Australian Flex Mailing List [flexaussie]

2006-08-31 Thread Chris Velevitch

Any paritcular reason for choosing yahoo groups over google groups?


Chris
-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
m: 0415 469 095
www.flashdev.org.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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Australian Flex Mailing List [flexaussie]

2006-08-31 Thread Bjorn Schultheiss

Not any great reasons.

More so preference..
Yahoo groups has a nice web ui and seems to work well on the other lists
that I'm subscribed to.

Nothing against google groups. 


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Chris Velevitch
Sent: Friday, 1 September 2006 12:01 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Australian Flex Mailing List [flexaussie]


Any paritcular reason for choosing yahoo groups over google groups?


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
m: 0415 469 095
www.flashdev.org.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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Dale Fraser

Bjorn,

Although that would be cool, I think you should dumb it down a level or two
for starting with the basics of CF / Flex2 integration.

I've just got my basic stuff working with CF talking to Flex with minimal
amounts of code, I think you should start there and them move to best
practice stuff.

Regards
Dale Fraser

http://dale.fraser.id.au


 


-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Bjorn Schultheiss
Sent: Friday, 1 September 2006 11:51 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Last nights usergroup meeting


Hey Mark,

I was just thinking perhaps we could lead into a presentation for ORM CF
FLEX integration. 
I'm sure this would lead to good things in the community


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, 1 September 2006 11:23 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Last nights usergroup meeting


Btw all -

I got told today if we want to do CFUG meetings here (Raglan St, Sth
Melbourne)

Would people like tha as a venue?

Mark

On 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:


 Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex.
 CF/Flex rocks.. The next meeting will be a good one.

 In the meantime post your work flexaussie list.
 Guys need any help i'll be there.


 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

--
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---



[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread George Lu
A bit far away for me...
On 01/09/06, Mark Mandel [EMAIL PROTECTED] wrote:
Btw all -I got told today if we want to do CFUG meetings here (Raglan St, Sth Melbourne)
Would people like tha as a venue?MarkOn 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex. CF/Flex rocks.. The next meeting will be a good one. In the meantime post your work flexaussie list. Guys need any help i'll be there.
 Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies--E: [EMAIL PROTECTED]W: 
www.compoundtheory.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  -~--~~~~--~~--~--~---


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Mark Mandel

A.. always the party pooper with the logical standpoints and the
factual evidence ;o)

Yeah, that is a fair call...

Maybe if we get it running, we can do a quick 'hey... check this out'
at the end?

(Sorry.. getting excited over new tech)

Mark



On 9/1/06, Dale Fraser [EMAIL PROTECTED] wrote:

 Bjorn,

 Although that would be cool, I think you should dumb it down a level or two
 for starting with the basics of CF / Flex2 integration.

 I've just got my basic stuff working with CF talking to Flex with minimal
 amounts of code, I think you should start there and them move to best
 practice stuff.

 Regards
 Dale Fraser

 http://dale.fraser.id.au
-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---



[cfaussie] VIC UG Numbers

2006-08-31 Thread Dale Fraser
I wanted to do this last night but forgot.

 

If you were at the usergroup last night,

 

Can you let us know if you were there just because of the Flex stuff or for
Coldfusion.

 

I've attached voting to this email so you can either click (assuming this
works through groups) or just email back.

 

Also, Steve / anyone count how many people were there?

Regards
Dale Fraser

http://dale.fraser.id.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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---
inline: winmail.dat

[cfaussie] Re: VIC UG Numbers

2006-08-31 Thread George Lu
Hi Dale,

I was there for Flex though I'm a CF developer. Plus also this location was the best so far I can reach (even I still need to drive 30 mins in the freeway  highway).

George

ps. I was using Flash Form in CF7 for our IT help desk system. I'd like to convert it to Flex 2.

On 01/09/06, Dale Fraser [EMAIL PROTECTED] wrote:
I wanted to do this last night but forgot.If you were at the usergroup last night,
Can you let us know if you were there just because of the Flex stuff or forColdfusion.I've attached voting to this email so you can either click (assuming thisworks through groups) or just email back.
Also, Steve / anyone count how many people were there?RegardsDale Fraserhttp://dale.fraser.id.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 [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Bjorn Schultheiss

I'm smelling the need for a 2-part session.

Mark I'll get in touch with you soon 


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, 1 September 2006 12:23 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Last nights usergroup meeting


A.. always the party pooper with the logical standpoints and the factual
evidence ;o)

Yeah, that is a fair call...

Maybe if we get it running, we can do a quick 'hey... check this out'
at the end?

(Sorry.. getting excited over new tech)

Mark



On 9/1/06, Dale Fraser [EMAIL PROTECTED] wrote:

 Bjorn,

 Although that would be cool, I think you should dumb it down a level 
 or two for starting with the basics of CF / Flex2 integration.

 I've just got my basic stuff working with CF talking to Flex with 
 minimal amounts of code, I think you should start there and them move 
 to best practice stuff.

 Regards
 Dale Fraser

 http://dale.fraser.id.au
--
E: [EMAIL PROTECTED]
W: www.compoundtheory.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
-~--~~~~--~~--~--~---