[cfaussie] Friday Distraction - ColdFusion Gingerbread Castle

2009-06-04 Thread Darren Tracey

My CF team at work had been really hard working for the week, so I
made them this:
http://twitpic.com/photos/demiurge_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
-~--~~~~--~~--~--~---



[cfaussie] Re: Can CF8 make SOAP with attachments calls

2009-03-19 Thread Darren Tracey

Thanks for that so far.
We're getting closer, but still not there yet.

We can generate a request that works using SOAPUI. Here is the raw
request from it.

POST http://vbnejdfwls4001:16400/easyimage/services/EasyImageService
HTTP/0.9
SOAPAction: urn:suncorp-com-au:service:easyimage:2007:05:storeImage
Content-Type: multipart/related; type=text/xml;
start=rootp...@soapui.org; boundary=
=_Part_38_196453.1237444713062
MIME-Version: 1.0
Authorization: Basic Q3VzdG9tZXJUZXN0LVN0b3JlcjplYXN5aW1hZ2Uy
User-Agent: Jakarta Commons-HttpClient/3.1
Host: vbnejdfwls4001:16400
Content-Length: 2901


--=_Part_38_196453.1237444713062
Content-Type: text/xml; charset=UTF-8
Content-Transfer-Encoding: 8bit
Content-ID: rootp...@soapui.org

soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/
envelope/ xmlns:urn=urn:suncorp-com-au:service:easyimage:2007:05
   soapenv:Header/
   soapenv:Body
  urn:StoreImageRequest
 urn:logicalRepositoryCustomerTest/urn:logicalRepository
 urn:image

urn:imageDatacid:691309939620/urn:imageData

 /urn:image
  /urn:StoreImageRequest
   /soapenv:Body
/soapenv:Envelope
--=_Part_38_196453.1237444713062
Content-Type: image/jpeg
Content-Transfer-Encoding: binary
Content-ID: 691309939620

ÿØÿà
--=_Part_38_196453.1237444713062--

The question is still, how do we get CF8 to do the same.

When we use the code you supplied below, with a header cfhttpparam we
get:
File Content:
Error Detail:
Status Code: 500 Internal Server Error
Mime Type:text/xml

When I remove the cfhttpparam header we get:
File Content:



Error 500--Internal Server Error
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
10.5.1 500 Internal Server Error
The server encountered an unexpected condition which prevented it from
fulfilling the request.

Error Detail:
Status Code: 500 Internal Server Error
Mime Type:text/html

I have an interface contract document that I can supply to you off
list if you'd like.

Regards, and thank you so much for this help.

Darren Tracey


On Mar 18, 11:09 pm, MrBuzzy mrbu...@gmail.com wrote:
 I'm back, feeling just a teeny bit more learned :)
 If you are indeed using 'soap with attachments' 
 [ref:http://www.w3.org/TR/SOAP-attachments] then you need to create a 'soap
 message package'.

 A soap message package is a mime multi-part request that encapsulates the
 soap xml and one ore more 'attachments'.

 Getting to cfhttp... unfortunately the http request content type has to be
 Multipart/Related, so you can't use cfhttp mutipart=true.

 It may work like this;

 cfhttp url=http://localhost:8300/receiver.cfm;
 method=post resolveurl=no redirect=yes charset=utf-8

     cfhttpparam type=header name=Content-type value='Multipart/Related;
 boundary=MIME_boundary; type=text/xml; 
 start=http://mrbuzzy.org/example.xml' /

     cfhttpparam type=body value=#myBody# /

 /cfhttp

 Note the 'body' of the request is binary (yeah, it seems cfhttp will allow
 it).

 It's going to be tricky to create the muti-part body (but maybe not
 impossible), like dis...

 cfsavecontent variable=myText
 --MIME_boundary
 Content-Type: text/xml; charset=UTF-8
 Content-Transfer-Encoding: 8bit
 Content-ID: http://mrbuzzy.org/example.xml

 SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
 envelope/
   SOAP-ENV:Header/
   SOAP-ENV:Body
      StoreImageRequest xmlns:urn=urn:company-com-
 au:service:easyimage:2007:05
         logicalRepositoryCustomerTest/logicalRepository
         image
            urn:imageDatacid:827370646852/urn:imageData
            imageDataBluehills.jpg/imageData
         /image
      /StoreImageRequest
   /SOAP-ENV:Body
 /SOAP-ENV:Envelope

 --MIME_boundary
 Content-Type: image/jpeg
 Content-Transfer-Encoding: binary
 Content-ID: http://mrbuzzy.org/Bluehills.jpg

 /cfsavecontent

 cffile action=write file=#expandpath('/myTemp.dat')# output=
 cffile action=readbinary file=#expandpath('/Bluehills.jpg')#
 variable=myImage
 cffile action=append file=#expandpath('/myTemp.dat')#
 output=#myText#
 cffile action=append file=#expandpath('/myTemp.dat')#
 output=#myImage#
 cffile action=append file=#expandpath('/myTemp.dat')#
 output=--MIME_boundary--
 cffile action=readbinary file=#expandpath('/myTemp.dat')#
 variable=myBody

 This is completely untested. I couldn't find a web service to try it on and
 it would be a pain to debug the body format. But it might work too ;)

 Cheers.



 On Wed, Mar 18, 2009 at 6:58 PM, MrBuzzy mrbu...@gmail.com wrote:
  Hi Darren,

  Soap with attachments has been on my 'to get my head around' list for
  a while. I've done similar things but not that exactly.

  I assume you have tried cfinvoke and it didn't work, which is why
  you're using cfhttp?

  Can you look at the wsdl to work out what type of data is expected by
  the service? Perhaps you can post a snippet.

  (I can't recall if soap attachments expects the binary data encoded to
  a string, or if you can post the file 'raw' like you're doing

[cfaussie] Can CF8 make SOAP with attachments calls

2009-03-18 Thread Darren Tracey

We need to call an existing software service here from our CF8 and
Flex app, and we need to access it (to submit a file for storage) via
SOAP with Attachments.
We can't see how to do this from within CF and haven't had much luck
with Google.
If you try to mix the request content types in the SOAP call, you get
a CF error.

Here's the code:
-
cfxml variable=theXML
 SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
envelope/
   SOAP-ENV:Header/
   SOAP-ENV:Body
  StoreImageRequest xmlns:urn=urn:company-com-
au:service:easyimage:2007:05
 logicalRepositoryCustomerTest/logicalRepository
 image
!--- urn:imageDatacid:827370646852/urn:imageData ---
 
imageDataBluehills.jpg/imageData
 /image
  /StoreImageRequest
   /SOAP-ENV:Body
/SOAP-ENV:Envelope
/cfxml

cfhttp url=http://servername:16400/easyimage/services/
EasyImageService username=username password=password
method=post resolveurl=no redirect=yes charset=utf-8 ---
cfhttpparam type=xml value=#theXML# /
cfhttpparam type=file file=Bluehills.jpg
name=Bluehills.jpg /
/cfhttp


Here's the error:
You may not mix the use of cfhttpparam tags of type FILE or FORMFIELD
with cfhttpparam tags of type BODY or XML.

The error occurred in E:\euc_smallapps\_test\cfml\Fred_SOAP1.cfm: line
45
43 : !--- cfhttpparam type= type=header name=SOAPAction value
= getProductInfoXML ---
44 :cfhttpparam type=xml value=#theXML# /
45 : cfhttpparam type=file file=Bluehills.jpg
name=Bluehills.jpg /
46 : /cfhttp
47 :


Has anyone ever been able to get this to work?
Does anyone have any suggestions?

Regards
Darren Tracey
--~--~-~--~~~---~--~~
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: cold fusion developer looking for a job

2009-02-03 Thread Darren Tracey

My vote is very firmly on the side of keeping the two lists as they
are and seperate.
Jobs ads should be on CFJobs, and not on CFAussie.
I don't want to go back to it being mixed. It wasn't good.

Darren

On Feb 3, 1:15 pm, Geoff Bowers mod...@gmail.com wrote:
 On Feb 3, 2:00 pm, Dale Fraser d...@fraser.id.au wrote:

  I personally think that both lists are too small to be separate, cfaussie
  hardly gets any traffic, and cfjobs is almost silent.

 Perhaps the only thing worse than little or no traffic on CFAUSSIE is
 what little traffic we have being dominated by Job ads/requests :)

  It is also not really clear that cfjobs is for aussie jobs, thus someone
  posting to cfaussie might think it is appropriate if they are looking in oz.

 I'm not sure how much clearer we can make it.  CFJOBS is clearly
 labelled 
 onhttp://lists.daemon.com.au/andhttp://groups.google.com/group/cfjobs.
 I've also added a note to the header of CFAUSSIE today to help remind
 folks.

  So I don't begrudge a person for posting to cfaussie, perhaps we could
  consider relaxing these rules.

 Its hardly a draconian rule.  It's there primarily to block recruiters
 spamming the list.  For that reason alone I think its important that
 the rule remains and continues to be politely enforced.

 geoffhttp://www.daemon.com.au/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to 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: CF8 clustering - adding new instance

2008-04-01 Thread Darren Tracey

If you have a JRUN setup with multiple JRUN containers on the one JRUN
server, where is the setting that controls whether any individual
container is automatically started up when the JRUN service fires up
after a system reboot?
I've got a collection of containers on several jrun servers, and most
of the containers don't automatically start up after a system reboot,
and need to be manually started. After a restart, its always the same
containers that are running and the same containers that are stopped.
I think there's an XML setting for this, but trawling through all the
XML files manually has revealed nothing, and looking in the JRUN
documentation and Google searching has also revealed nothing.

Anyone have any ideas about this?

Regards

Darren Tracey

--~--~-~--~~~---~--~~
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] CF on JRUN or TomCat?

2008-04-01 Thread Darren Tracey

Does anyone on this list have any experience running CF on TomCat
instead of JRUN?
I need something that will handle multiple instances of CF on the same
server, with different version of CF (6.5, 7 and 8) with different CF
Admin settings for each.
I'd like it to still be able to hook into IIS, as I need the PC
authentication information to flow from the client the way it does
with IIS. JRUN is currently allowing this, but I'm not sure if TomCat
can do that.

Does anyone know of any other pros or cons for running CF under
TomCat?
Any gotchas, bad experiences or good online documentaion for doing
this?

Regards

Darren Tracey
--~--~-~--~~~---~--~~
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: programmer etiquette and writing good CF code

2008-03-27 Thread Darren Tracey

I just wanted to point out a few things to anyone in the know.
Barry is currently doing work for me, fixing up the project he is
working on, and that he has talked about here.
I am not the original coder on this project. A contractor was brought
in for this.
For a variety of reasons, the people responsible for explaining coding
standards and reviewing code, seem to have done neither (again not
me).
The contractor was sold to us as a 'senior developer' with extensive
experience.
The contractor in question has, to my knowledge, never posted to this
list, so no one here is likely to know him/her.
The contractor in question does not do CF work anymore. (there IS a
God!)
I have worked previously on this project a little, after the original
contractor but before Barry. Most of my time was spent equally pulling
my hair out and fixing mind bogglingly stupid code.
Barry was warned before he started that the code he would be working
on was very bad. (clearly he thought I was exagerating!)
This project was not a badly evolved and misbegotten prototype
stretched beyond its life or intent. This was a built from scratch,
designed, prototyped project, with screen layouts, business rules,
etc, and a very healthy original development schedule. Admittedly, the
original documentation was messy and not well layed out, but it was
all there and there were also people to ask if anything wasn't clear.

I just wanted to point these things out as I didn't want anyone to
think for 1 second that I was responsible for this awful code, and I
also didn't want anyone considering doing work for us (we're hiring!)
to be concerned that this was the norm or even a small chunk of the
type of code we have.
It is a single, one off, really painfully awful piece of code amongst
a sea of otherwise average code.

Regards
Darren

On Mar 14, 12:59 pm, barry.b [EMAIL PROTECTED] wrote:
 (I thought the teacher in me was well and truly burnt to a crisp...
 aparently not...)

 hyperthetical

 * you're finishing off someone elses project, it's only a couple of
 weeks of work
 * that person is someone that you know/see around the traps
 * you know you're not the world's gift to coding but trying to follow
 best practices has put you in good  stead for years (and reduced the
 amount of obscure bugs)
 * the code is full of (lets say) less than optomial practices eg
  - SELECT *
  - reuse of the variable ID on the same page for diffent usages/
 contexts
  - hardly any use of scopes (esp URL and FORM) with lots of using
 isDefined()
  - not a cfqueryparam to be seen.

 do you

 a) shoot them when next you meet then dance on their grave.
 b) make a semi formal list of what's wrong and why then bail them up
 to go on chapter-and-verse about it
 c) make an informal comment on next meeting that it had a few rough
 edges and leave it at that
 d) keep your mouth shut, your head down and keep saying to yourself
 it's only for a short while...

 thoughts?
--~--~-~--~~~---~--~~
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: Creating Excel files with multiple worksheets

2008-03-27 Thread Darren Tracey

CF8 is not an option on this project yet.

On Mar 27, 3:52 pm, Andrew Scott [EMAIL PROTECTED] wrote:
 I suppose you don't have the luxury of running it under Coldfusion 8:-)

 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.www.aegeon.com.au
 Phone: +613  9015 8628
 Mobile: 0404 998 273



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf

 Of Darren Tracey
 Sent: Thursday, 27 March 2008 4:40 PM
 To: cfaussie
 Subject: [cfaussie] Creating Excel files with multiple worksheets

 Making an Excel files come out of your CF pages is pretty straight
 forward with tables and CFContent.
 Is there any way to make an Excel file that has multiple worksheets?
 The solutions I've found involve calling COM objects for a server copy
 of Excel, but my server doesn't have Excel installed so I can't use
 that method.
 How would you make a second (or third) worksheet in an Ecel output
 file without having Excel installed on the server?

 Regards
 Darren- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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] Creating Excel files with multiple worksheets

2008-03-26 Thread Darren Tracey

Making an Excel files come out of your CF pages is pretty straight
forward with tables and CFContent.
Is there any way to make an Excel file that has multiple worksheets?
The solutions I've found involve calling COM objects for a server copy
of Excel, but my server doesn't have Excel installed so I can't use
that method.
How would you make a second (or third) worksheet in an Ecel output
file without having Excel installed on the server?

Regards
Darren
--~--~-~--~~~---~--~~
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: ColdFusion 8+ hosting requirement - urgent

2007-10-04 Thread Darren Tracey

OK. I regret it already.
I Googled it and don't want to know any more about it.

Darren Tracey

On Oct 5, 9:05 am, Darren Tracey [EMAIL PROTECTED] wrote:
 I'm going to regret this, I know, but, ok, I'll bite...

 Today Tonight? Are they gunning for Mike now or your Dad?
 is the You are not authorized to view this page error the URL gets
 due to your action Peter, or not?

 Darren Tracey

 On Oct 5, 12:45 am, ACTCFUG [EMAIL PROTECTED] wrote:



  Dad ishttp://www.writewayresearch.com/

  Father himself asked me to remove the site - nothing at all to do with
  MK's hosting - a request from dad - and followed (blame Today
  Tonight).- Hide quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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] SQL problem

2007-10-03 Thread Darren Tracey

Sorry about posting this here, but I'm having a fuzzy brain day and
can't work out how to do this.

I have a table in an MSSQL DB which we shall call TableA.
It has a bunch of fields including ColumnA, ColumnB, and ColumnC.
ColumnA is the unique identifier.
I need a single SQL statement that will copy the values from ColumnB
for each record and put them into ColumnC for the same record in the
same table.

I'm not after a CF solution for this (eg. select all records from
table, loop over query results, update each record).
I've got a nagging feeling that I can do this in a single SQL
statement (some sort of update with a nested select), and that I've
done it before, but I can't remember how to do it and Google is not
being my friend today.

Any suggestions?

Regards

Darren Tracey


--~--~-~--~~~---~--~~
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: SQL problem

2007-10-03 Thread Darren Tracey

Thanks Steve. Thats exactly what I was after, and I didn't realise it
was that simple! (No wonder my efforts with Google were of no use!)

Regards

Darren Tracey

On Oct 4, 11:59 am, Steve Onnis [EMAIL PROTECTED] wrote:
 UPDATE  TableA
 SET ColumnC = ColumnB

 Simple?



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf

 Of Darren Tracey
 Sent: Thursday, 4 October 2007 11:57 AM
 To: cfaussie
 Subject: [cfaussie] SQL problem

 Sorry about posting this here, but I'm having a fuzzy brain day and can't
 work out how to do this.

 I have a table in an MSSQL DB which we shall call TableA.
 It has a bunch of fields including ColumnA, ColumnB, and ColumnC.
 ColumnA is the unique identifier.
 I need a single SQL statement that will copy the values from ColumnB for
 each record and put them into ColumnC for the same record in the same table.

 I'm not after a CF solution for this (eg. select all records from table,
 loop over query results, update each record).
 I've got a nagging feeling that I can do this in a single SQL statement
 (some sort of update with a nested select), and that I've done it before,
 but I can't remember how to do it and Google is not being my friend today.

 Any suggestions?

 Regards

 Darren Tracey- Hide quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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] Flex 3 Public Beta 2 Now Available

2007-10-01 Thread Darren Tracey

News from Adobe:

Hi -

We are happy to report that the second public beta release of Flex 3
is
now available. This release adds important new features including .NET
support, web service introspection, project import and export and
major
new improvements to the profilers. You can also check out the new Flex
Skin Design Extensions making it fast and easy to export Flex skins
from
Photoshop, Fireworks, Illustrator, and Flash.

Beta 2 is a near-feature-complete version of the Flex 3 release and
the
quality should be very high. The goal of this release is to give the
community an opportunity to continue to provide feedback as we refine
the final features and to help identify any bugs and missing
capabilities.

You can get the complete details and download the beta on Adobe Labs
at:
http://labs.adobe.com/technologies/flex.

Please be sure to also get involved in the open source Flex project
at:
http://labs.adobe.com/technologies/flex.

Thanks,
Dave Gruber
Flex Product Marketing Manager


--~--~-~--~~~---~--~~
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: Connection Pooling

2007-09-25 Thread Darren Tracey

On Sep 25, 2:49 pm, silverbeetle [EMAIL PROTECTED] wrote:

 huge thanks to sean for really giving my problem some attention. best
 service i've had from an isp to date! Looking forward to seeing what
 improvements i can make at my end (stored procedures) and see how the
 changes you've made effect the problem.

On that note, a few people seem to know who this host is, but I do
not, and to be honest, I've been pretty impressed with this thread and
the involvement that the ISP has had. I want an ISP that will have
that level of involvement, and I'me sure there's plenty of other
people here who think the same way.

Sean/Chris
Could either of you name the ISP so they can get the public credit
they deserve?

Regards
Darren Tracey


--~--~-~--~~~---~--~~
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] Total Training Flex 2 Online Training courses, free 30 day trial

2007-09-18 Thread Darren Tracey

From John Koch at Adobe.
--
Hi everyone,

Total Training is offering a 30 day free trial of their Flex 2 Online
Trainings http://www.totaltraining.com/Store/online_adobe_login.aspx


There is the Flex 2: Advanced Visual Programming course
http://www.totaltraining.com/prod/outlines/adobe/flex2_avp.asp

and the Flex 2: Rich Internet Applications course
http://www.totaltraining.com/prod/outlines/adobe/flex2_ria.asp


I thought the first chapters Flex 2: RIA course offered a good Flex
introduction for beginners, and later chapters allow you to get into
features that you may not have touched much before.

Check it out, and please let your communities know about the offer.

Thanks,
John


--~--~-~--~~~---~--~~
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] How can I allow a user to _type_ a date into a datefield in a CF7 flash form

2007-09-17 Thread Darren Tracey

I have a CF7 flash form with some datefields.
The default behaviour for these is that you have to use the calendar
control to put in a date, and to change months or years you have to do
many, many, many clicks on the arrows on either side of the date.
Clicking in the empty text box next to the calendar icon only opens
the calendar.
The users and I would really like to be able to just type a date into
the text box, but this doesn't seem to be an option.
LiveDocs talks about the HTML version being able to type into the
field.

Does anyone have a way of allowing a date to be typed into a CF7 Flash
form datefield?

This is a large existing app, so unfortunately changing from CF7 or
from Flash forms is not an available option.

Regards

Darren Tracey


--~--~-~--~~~---~--~~
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] Free ActionScript 3.0 tour featuring Colin Moock (in Sydney)

2007-09-16 Thread Darren Tracey

This was announced over the weekend by Adobe.
One of the 10 cities being hit around the world is Sydney.
I would think that for the opportunity to get a day of free AS3
training with Colin Moock, that it would be worth footing the airfares
to get yourself to Sydney for the day (if you happen to live somewhere
nicer, like say, Brisbane!).

The dates and registration for the Sydney event are not open yet, but
shouldn't be far off and will fill fast, so keep you eye on it.

Regards

Darren Tracey
CFUG QLD Manager

--
Adobe is hosting a free ActionScript 3.0 tour with Colin Moock. We'll
be
hitting 10 cities around the world beginning the end of Oct. More
details are available on the site at: www.adobeas3tour.com. (Note:
final
dates are still tbd for many of the cities, but this years schedule is
available.) Registration is required.

This is a great opportunity for our Flash and Flex customers to learn
AS3 from the man himself.

Adobe Presents - Colin Moock's ActionScript 3.0: From the Ground Up
Tour
Join internationally renowned ActionScript expert Colin Moock for an
intensive full day of ActionScript 3.0 training.

Based on Moock's best-selling Essential ActionScript 3.0 (O'Reilly,
2007), this one-day event covers everything you need to get started
programming in ActionScript 3.0.

Topics include object-oriented programming, classes, objects,
variables,
methods, packages, conditionals, loops, operators, functions, error
handling, event handling, display programming, compiling, and running
programs.

Who should attend?
This course is targeted at Flash users with beginner to intermediate
programming skills.  Those completely new to ActionScript are welcome
to
attend, but may feel overwhelmed by the quantity of information in the
course.

This course does not cover expert-level topics. Advanced ActionScript
3.0 programmers are unlikely to encounter new concepts, but are
welcome
to attend for a refresher on ActionScript programming fundamentals.

To get more information on dates and locations, and registration
please
visit: http://www.adobeas3tour.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: LAST CALL: ColdFusion 8 Launch Party - TONIGHT - Brisbane

2007-08-07 Thread Darren Tracey

Final reminder to RSVP to avoid missing out on ColdFusion 8 feature
presentations, live questions and answers with Tim Buntell, win a free
copy of ColdFusion Server standard (one per user group, so someone at
the Brisbane meeting will walk out as the owner of this), live meetup
with all the other CFUGs around Australia/New Zealand, the potential
to meet your future employer/employee, and more free food and drink
than you can poke a medium sized stick at!!

Regards

Darren Tracey
CFUG QLD

On Aug 8, 9:54 am, Barry Beattie [EMAIL PROTECTED] wrote:
 I've seen how sardines are packed... I reckon we can fit a few more RSVP's in

 RSVP's to go into the major prize draw close at 1:00pm SHARP! Sign-ups
 to the QLD CFUG mailing list up to that time will also autommatically
 added into the draw. Remember, you have to be there in person to win
 the prize unless you're one of the authorised regional people (ie: the
 two guys on the sunshine coast)

 hopefully see you tonight!



   .
   User Groups Ushering in the new Coldfusion 8
   ---

   With the launch of the eighth release of Coldfusion, Adobe user groups
   around the world will be holding special celebrations to mark the
   occasion.

   And Brisbane will be doing it with Style ... Next Wednesday August 8th.

   This is when ALL the Australian and New Zealand ColdFusion User Groups
   will be holding the launch party for their local members, friends,
   businesses and affiliates. Everyone is  welcome.

   At the gathering we'll be part of a link-up with user groups in the
   ANZ region with special international guests (inc.from the U.S.A)
   using Adobe's Connect video conferencing software.

   Robin Hilliard, the ANZ User Group Coordinator, will be the Master of
   Ceremonies for the event.

   There will give-a-ways and prizes on the night and a copy of
   Coldfusion8 Std to be won for those that RSVP and attend.

   So RSVP now and spread the word.

   the QLD CFUG crew

     Brisbane  
   QLD ColdFusion UserGroup

  http://qld.cfug.org.au
   General Contact: Darren Tracey, [EMAIL PROTECTED]
   RSVP's [EMAIL PROTECTED]

   Wednesday 8th August
   Start time: 6:15pm
   End Time: 9:00pm

   If doors are locked, call 0414 328 902 for entry

   QANTM Auditorium
   QANTM House
   Level 9, 138 Albert St
   Brisbane City
   (Opposite the Coffee Club)

   Find it on WHEREIS:
  http://www.whereis.com/whereis/retrieveEmailMap.do?linkId=-;724321224...

   Find it on Google Maps:
  http://maps.google.com/maps?f=qhl=enq=138+Albert+St,+City+QLD+4000,...

   

   -
- IF YOU WOULD LIKE TO BE A QLD CFUG MEMBER -
   You can subscribe to this User Group,  (and automatically RSVP'ing for
   the launch party)  by sending an email to
   [EMAIL PROTECTED]
   (this will send you a confirmation email - please follow the directions)
   All NEW sign-ups from today until 1:00pm of August 8th will be assumed
   as potential RSVP's and you'll be in the running for the prizes if you
   then attend in person.
   -
   NOTE: existing members still have to RSVP by replying to this email to
   be eligible for the prize draws
   -- Hide 
   quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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: Get Working Week

2007-06-06 Thread Darren Tracey

In the real world, the standard is that a week starts on either
Sunday(traditional), or Monday(start of working week).
I have never before heard of anyone considering that the week starts
on a Saturday.

Regards

Darren Tracey

On Jun 6, 4:41 pm, Dale Fraser [EMAIL PROTECTED] wrote:

 Not sure why Coldfusion starts the week on a Sunday, is this some kind of
 standard, not in the real world I would think.


--~--~-~--~~~---~--~~
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: CFAussie Community Head Count

2007-06-01 Thread Darren Tracey

Ping...

from
Darren Tracey
CFUG QLD Manager
Queensland, Australia


--~--~-~--~~~---~--~~
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: Request VS Application Scope

2007-04-23 Thread Darren Tracey

The important thing to realise is how long each of these scopes last,
and where they can be seen.

Server scope is available to every page on the server, regardless of
application name specified.
Their timeout is defined in your Cf administrator, and typically last
for a few days.
Put things in here that are relevant to every application application
and not to specific applications or users.
This scope is empty for the first user of the server, or if no one has
visited the server for the specified timeout period.

Application scope is available to every page that shares the same
application name in your cfapplication tag.
Their timeout is defined in your Cf administrator, and typically last
for a few days.
Put things in here that are relevant to the entire application and not
to specific users.
This scope is empty for the first user of the application, or if no
one has visited the application for the specified timeout period.

Session scope is available to every page that one user calls in their
session within one app.
Their timeout is defined in your Cf administrator, and typically last
for a few hours, or when the user's session timesout.
Put things in here that are relevant to the user's session and not to
just one page.
This scope is empty for the each user when they start a new session,
or if they allow their session to timeout.

Request scope is available to every part of a single page request.
This scope is created when a page load is started and is lost when the
page finishes loading.
Put things in here that are relevant to just this page, where you want
something to be available to several sections of the same page.
This scope is empty at the beginning of each and every page, and is
cleared at the end of each and every page.

Its important to remember to check for whether these variables have
timed out or not, for all cases except for request.
Generally, I'd set a bunch of them in a logical group, high up in the
Application.cfm (or similar) and surround them with a condition that
tests for the existance (isdefined) of one of the variables in the
group (because if one timesout, they'll all timeout). That way they
only get set if they don't exist, but they will always be set if the
don't exist.

And as Andrew was saying, back in the day, I'd have great herds of
values in the Application scope and then move them at the beginning of
every page into the request scope, so that I only had to lock the
application scope when this copy was done. In these enlightened days,
this is not necessary (under normal conditions).

Hope that helps.

Darren Tracey
CFUG QLD Manager
Australia

On Apr 23, 6:43 pm, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:
 Hi all,

 I was wondering what the differences between the request and
 application variables are.

 I use the application variable to store the variables that dont change
 much (dsn, page info, page content etc...).

 Now i dont seem to understand the request scope and its uses well
 enough to use them.

 Can anyone shed some light on this topic for me.

 i have read some articles on the net, but they dont seem to explain
 the concept well enough.

 Thanks


--~--~-~--~~~---~--~~
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: Affordable Flex Training

2007-04-04 Thread Darren Tracey

Hi Grant

I'm sorry, but I'm not entirely up on what ZoomFlex is, does and
costs.

Is this training of use if, for some reason, you choose not to
implement the ZoomFlex framework? (ie is it generic Flex training or
specifically ZoomFlex training?)
Are there any costs associated with using this framework?

Thanks

Darren


--~--~-~--~~~---~--~~
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: WebDU 2007

2007-03-22 Thread Darren Tracey

Complete silence from WebDU?
Is this a good sign?
Is there no wireless there this year, or have they all been shown such
super secret NDA stuff that they've all been locked in and shut off
from the world?
Or maybe Scott is plying them with so much Microsoft alchohol that
they can no longer use keyboards! ;-)

On Mar 22, 10:19 am, Darren Tracey [EMAIL PROTECTED] wrote:
 It must be exceptionally good this year.
 No one is sitting in the audience wirelessly posting to CFAussie.
 They're probably all still in shocked awe from Mike D and Mike C's
 keynote!

 On Mar 22, 2:15 am, ACTCFUG [EMAIL PROTECTED] wrote:



  Enjoy you lucky buggers who are attending this year! I am in the
  middle of a crucial project (and still paying for last year too) but
  hope it is bigger than ever.- Hide quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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: ColdFusion server license - best place to buy

2007-03-14 Thread Darren Tracey

Call Pam at RocketBoots

On Mar 14, 5:42 pm, ACTCFUG [EMAIL PROTECTED] wrote:
 We are all dissapointed with Vista pricing... With any luck they won't
 upgrade to Vista just yet...

 Where would be the best place (Australia) to purchase, at this stage
 ColdFusion Standard version 7.02x, (including update ticket 'cos CF8
 is coming).

 Also looking at Microsoft SQL Server 2005 (Standard) CALS - about 5 at
 this stage.

 TIA!

 It is all happening much faster than I expected so want to ensure
 licenses are covered properly.

 --
 Peter Tilbrook
 ColdGen Internet Solutions
 President, ACT and Region ColdFusion Users Group
 PO Box 2247
 Queanbeyan, NSW, 2620
 AUSTRALIA

 http://www.coldgen.com/http://www.actcfug.com/

 Tel: +61-2-6284-2727
 Mob: +61-0432-897-437

 Email: [EMAIL PROTECTED]
 MSN Messenger Live: Desktop General


--~--~-~--~~~---~--~~
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: QLD CFUG March meeting announcement.

2007-03-13 Thread Darren Tracey

If you hold meetings in a business's premises, then you're not
plugging 'the internet cable' into a laptop, you're connecting a
foreign pc into the guts of their internal network. Any sane network
admin would justifiably freak at that prospect. There also may be all
sorts of proxy settings and possibly even accounts that would be
required to make them work.
In short, its something that you just don't do. You use PC equipment
thats already on the network and don't install anything that they
don't want, or only use data projection with presenters laptops and
don't connect the network.

Regards

Darren Tracey

On Mar 13, 1:27 pm, Chris Velevitch [EMAIL PROTECTED]
wrote:
 On 3/12/07, Charlie Arehart [EMAIL PROTECTED] wrote:

  Barry and I discussed it off-list. They have a common problem, working in a
  place where they don't have wireless access, and while there's a computer in
  the room which does have net access, it belongs to the facility and they
  don't want any software installed, so the presenters instead just plug their
  laptops into the projector. All that makes recording using tools like
  Breeze/Connect/LiveMeeting impossible.

 What's wrong with plugging the internet cable into the presenters laptop?

 Chris
 --
 Chris Velevitch
 Manager - Sydney Flash Platform Developers Group
 m: 0415 469 095www.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?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: QLD CFUG March meeting announcement.

2007-03-13 Thread Darren Tracey

I'd also like to add a little to the CFUGs in Microsoft issue.
I pondered this exact same thing recently myself.
Its an interesting idea that you could hold your CFUG meeting in the
premises of your 'competitor'.
Getting free stuff out of Microsoft is also always nice.
But thats it. There's no other real value add.
We get our catering costs covered by the local Adobe office, we get
sufficient free giveaways from Adobe as well, and we have a very good
venue also provided at no cost.
Apart from being interesting, what do we gain from holding it at
Microsoft? (yes I know this all stemmed from an internet connection
issue, but there are other ways around that)

The people at Microsoft are _far_ from idiots. They don't do things
for no reason, or even trivial reasons.
People can say all they want that it doesn't matter, and we're not
idiots, we won't be swayed, but in the end, it does make a
difference, and it doesn't feel right.
Microsoft are far too keen, so they are obviously seeing it as a non
trivial benefit to them. I'm not seeing any kind of benefit beyond the
trivial that the CFUG gets from the arrangement, and at the end of the
day, they are the competitor.

As I've said in other lists lately, there are places to go to get info
about Microsoft products and places to go to get info on Adobe
products, and the two should be seperate and distinct things. Everyone
knows where to get info about Microsoft products. The CFUG community
doesn't have to facilitate information flow about competing
technologies.
I have no problem with getting someone from Microsoft in to tell us
about technologies that we want to hear about, but its still our
meeting, and its our call as to what is covered and what is not
covered, and you start to loose that control when you accept
'incentives' like hosting, etc, from any vendor.
Its a slippery slope, and there may not be any problems with doing it
either, but the trick is to avoid the potential situations where
compromising your aims and objectives becomes possible or is removed
from your control.
The risk is small, but the benefit is even smaller, so its just not
worth taking it, in my mind.

Thats why we're doing what we're doing.

Regards

Darren Tracey


--~--~-~--~~~---~--~~
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: QLD CFUG March meeting announcement.

2007-03-13 Thread Darren Tracey

On Mar 13, 7:58 pm, Scott Barnes [EMAIL PROTECTED] wrote:

 I think you're suffering from too much sceptism and the only valid
 reason I can think of that would potentially be irrelevant to hosting
 within Microsoft is that can't be assed moving the meetings or that
 you're comfortable with the current place (either is perfectly valid
 and aok).

Thats two points Scott.
1. Scepticism. I've never claimed not to be a sceptic. Is it too much,
or am I just being cautious? Its not a descision that only effects me,
so I'll always err on the side of caution.
2. Reasons for moving. You gave two actually. As I explained before,
at this point, we couldn't be bothered moving, because there just
isn't enough reason to do it that benefits the User Group, beyond it
just being a novelty, and secondly, we are comfortable where we are.
And as you said, they are valid and OK reasons.

 I remember at the Flash Platform User Group you walked up and said
 Adobe are coming here so if you need to leave let me know...
 Seriously dude, you need to move past this Adobe vs Microsoft crap
 that you're somehow subscribing too as my metric within Microsoft is
 anything that touches a browser and pieces that support it.

Scott, that quote has been taken grossly out of context, and you know
it. It was said as a joke, with a huge grin on my face, in relation to
other peoples attitudes, that you knew I wasn't subscribing to. Don't
start stooping to behaving like that or you'll be reinforcing the
attitudes that you are trying to change.
Microsoft is currently battling against its reputation for past
behaviours. You've got to change those behaviours, and keep them
changed, _without_exception_, before you can expect people to believe
you've really changed.

Regards
Darren Tracey


--~--~-~--~~~---~--~~
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: QLD CFUG March meeting announcement.

2007-03-13 Thread Darren Tracey

I'm flattered that Microsoft puts such a high value on my soul.
As stated before though, the risks outweigh the benefits, so I'll pass
on this superficially attractive offer.

Darren
who's holding out for _20_ vigins!

On Mar 14, 8:39 am, Scott Barnes [EMAIL PROTECTED] wrote:
 P.S
 Barry - I'll be there (CFUG) tonight... and Darren I need you to sign
 a contract, it basically outlines that I need your soul in exchange
 for 7 virgins in an oasis of nirvana... usual MSFT thing... ya know
 how it goes.

 Scott.

 On 3/14/07, Scott Barnes [EMAIL PROTECTED] wrote:





  yes I did heheh.

  On 3/14/07, Andrew Scott [EMAIL PROTECTED] wrote:
   Scott,

   none taken.. Surely you saw it as a joe right?

   On 3/13/07, Scott Barnes [EMAIL PROTECTED] wrote:

Ya know Andrew if you take that is an answer that will put a cork in
your Vista Price rant... i'll sign off on it myself :) heheheeheh

(No offense by the way)

On 3/13/07, Andrew Scott [EMAIL PROTECTED] wrote:

 *LOL*,

 That's how Microsoft spend the outrages prices on Vista, outside of 
 the
 USA:-)

 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
www.aegeon.com.au
 Phone:+613 8676 4223
 Mobile: 0404 998 273

 -Original Message-
 From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com ] On
   Behalf
 Of Scott Barnes
 Sent: Monday, 12 March 2007 9:36 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: QLD CFUG March meeting announcement.

 Well... these meetings could be hosted inside Microsoft's swisho
 theatres at brisbane hq - broadband, pizza and beer :)

 I will buy your love hows that :)

--
Regards,
Scott Barnes
   http://www.mossyblog.com

   --

   Senior Coldfusion Developer
   Aegeon Pty. Ltd.
  www.aegeon.com.au
   Phone: +613  8676 4223
   Mobile: 0404 998 273

  --
  Regards,
  Scott Barnes
 http://www.mossyblog.com

 --
 Regards,
 Scott Barneshttp://www.mossyblog.com- Hide quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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: CF and .NET (Followup).

2007-02-25 Thread Darren Tracey

At the risk of igniting this any further, my original objection was
more to do with the fact that the page that Scott originally linked to
has 5 links at the top of the list that are CF related (which is
good), but they are all Live Webcasts, available at specific times
only, each one occuring once over the next 2 weeks.
All the other links on the page are Not CF specific, or even relevant,
but are just plain convert to .Net material, and are either On
Demand Webcasts or Virtual Labs, and are convieniently available
any time you want, as often as you want, and not just at 5am on
Tuesday morning.
I'll be checking back to the site after the first couple are done to
see if the recordings of the CF sessions are offered On Demand after
the sessions.

We need to be encouraging more people out there to start taking up CF
as a language, not pointing out to the developers we currently have
that their nearest exit may be behind them.
There is a shortage of developers out there at the moment, and there
are businesses clammouring to get them.
If you have a desperate desire to learn .Net, there are places that
you'll be able to find on the net that will show you how to do that,
and the Australian ColdFusion mailing list shouldn't be one of them.
Converting developers to be .Net developers is Microsoft's job, not
the ColdFusion community's.
Postings that promote people to go to .Net shouldn't be accepted here,
as you can bet that CF promotion isn't tolerated on any .Net lists.
Even posts that wrap the convert message up in an ever so polite just
helping you out veneer.

Darren
Who'd like to get his own popcorn and jaffas when he gets a chance.

On Feb 23, 6:06 pm, Scott Barnes [EMAIL PROTECTED] wrote:
 Well said Charlie :)

 Just going out on a limb here, but ol Adobe must of had a reason to
 make Coldfusion 8 interop with .NET.



--~--~-~--~~~---~--~~
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: CF and .NET (Followup).

2007-02-22 Thread Darren Tracey

Scott

As our local Microsoft rep, I was wondering if you could provide a
list of all the online mailing list and discussion forums for .net
developers?
I've got a whole bunch of links for online ColdFusion training modules
and I thought I could post them to all the .Net forums, because I hear
there's a glut of .Net developers and they could probably all benefit
from the many high paying CF job vacancies that CF businesses are
having trouble filling at the moment.
It would be a great benefit for our poor .net cousins. A real win-win
synergistic opportunity!
I'm sure you'll be happy to help these people out.

Darren

On Feb 23, 10:14 am, Scott Barnes [EMAIL PROTECTED] wrote:
 Hi All,

 As per my previous thread regarding how Microsoft coul compliment the
 CF piece of the equation, i'm happy to report that we have a win or
 two happening in this space.

 If you flick your browsers tohttp://www.learn2asp.net/cf/Campaign.aspxyou'll 
 see there is a whole
 bunch of goodness awaiting you starting Monday on how to add ASP.NET
 to your skillset.

 Given that these days at times there is a lot of ASP.NET work on this
 may be of relevance.

 This message will DrWatson in 30secs.

 Scott.
 Microsoft.


--~--~-~--~~~---~--~~
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: CF and .NET (Followup).

2007-02-22 Thread Darren Tracey

Don't you think I shouldn't do that then?
Do you think maybe that wouldn't be the right place to put a whole
bunch of ColdFusion tutorial information?
The first few articles would be CF - .Net comparisons, so surely that
makes it highly relevant to the .Net audience.
Did I suggest doing something wrong?

Darren

On Feb 23, 10:45 am, Scott Barnes [EMAIL PROTECTED] wrote:
 You're a funny man Darren ;)

 On 2/23/07, Darren Tracey [EMAIL PROTECTED] wrote:







  Scott

  As our local Microsoft rep, I was wondering if you could provide a
  list of all the online mailing list and discussion forums for .net
  developers?
  I've got a whole bunch of links for online ColdFusion training modules
  and I thought I could post them to all the .Net forums, because I hear
  there's a glut of .Net developers and they could probably all benefit
  from the many high paying CF job vacancies that CF businesses are
  having trouble filling at the moment.
  It would be a great benefit for our poor .net cousins. A real win-win
  synergistic opportunity!
  I'm sure you'll be happy to help these people out.

  Darren

  On Feb 23, 10:14 am, Scott Barnes [EMAIL PROTECTED] wrote:
   Hi All,

   As per my previous thread regarding how Microsoft coul compliment the
   CF piece of the equation, i'm happy to report that we have a win or
   two happening in this space.

   If you flick your browsers 
   tohttp://www.learn2asp.net/cf/Campaign.aspxyou'llsee there is a whole
   bunch of goodness awaiting you starting Monday on how to add ASP.NET
   to your skillset.

   Given that these days at times there is a lot of ASP.NET work on this
   may be of relevance.

   This message will DrWatson in 30secs.

   Scott.
   Microsoft.

 --
 Regards,
 Scott Barneshttp://www.mossyblog.com- Hide quoted text -

 - Show quoted text -


--~--~-~--~~~---~--~~
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: [OT] Calculate distance with long/lat

2006-11-14 Thread Darren Tracey

If performance is an issue and you use pythagorus, then don't find the
square root of the two squared sides, but compare it to the squared
distance desired.
e.g. if you want to know things within a 10 km distance, then compare
X*X+Y*Y  100.
Finding a square root is extremely expensive computationally, and if
you can avoid it, it will trim your time dramatically.

Darren


--~--~-~--~~~---~--~~
 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: CFFTP on CF7

2006-11-06 Thread Darren Tracey

Is it at all possible that the problem is with the particular ftp
server and not with your CF server?
Can you connect to other ftp servers from the suspect CF server?
Can you connect to the suspect ftp server from other Cf servers?

Darren


--~--~-~--~~~---~--~~
 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: CFFTP on CF7

2006-11-06 Thread Darren Tracey

OK.
Ignore my ravings.
I just noticed that you were connecting to ftp.adobe.com
Sorry.

Darren


--~--~-~--~~~---~--~~
 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] QLD CFUG postponed till 14th November due to Melb Cup

2006-11-05 Thread Darren Tracey

The Queensland CFUG's November meeting was due to be held this Tuesday
night (7th November), but as this coincides with the Melbourne Cup, we
have decided to postpone it one week, to now be on Tuesday night the
14th of November.

More details will be sent out soon.

Regards 

Darren Tracey 
CFUG QLD Manager 
Australia


--~--~-~--~~~---~--~~
 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: OT: SEO

2006-11-05 Thread Darren Tracey

I've had a long relationship with a company called Planet Ocean
Communication (http://www.searchenginenews.com/).
They have a very good subscription service.
They've also helped out in the recent past with a local CFUG
presentation.
I have a link to get a heavily discounted subscription price, if you're
interested.

Regards
Darren Tracey


--~--~-~--~~~---~--~~
 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: ColdFusion trend?

2006-10-16 Thread Darren Tracey

If you look at this one, you'll see that we should all get into these
'jobs' things. They seem quite popular too.

Google Trends. What a silly and fundamentally useless thing. (Its still
cool though)
I'll have great fun using this to justify whatever bizarre scheme I
next need to convince someone of.
As you can see here, Google shows that kittens are currently trending
much higher than either OO developement or off shore outsourcing.

Darren Tracey


--~--~-~--~~~---~--~~
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: ColdFusion trend?

2006-10-16 Thread Darren Tracey

Barry,

I don't think kittens class as wildlife.
I think the Australian environment would greatly benefit from vast
quantities of kittens being shipped out of Australia.

I have visions of vast herds of Aussie school children combing alleys,
backyards and bushland for any unguarded kittens and earning pocket
money (and valuable export dollars) by shipping them to, according to
this page:
 http://www.google.com/trends?q=kittensctab=1geo=alldate=all
New Zealand, or even the UK.
Google does make the world a happier place!

George,
I'm hoping you can provide your Boss with a shortened version of this
thread pointing out just how unreliable the Google Trends tool is for
basing such an important business decision. He needs to realise that
these results do not indicate pages written in these languages. It
seems to be just the number of times those specific words (and they can
be way out of context too) are used in pages that Google has indexed.

Darren Tracey


--~--~-~--~~~---~--~~
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: ColdFusion trend?

2006-10-16 Thread Darren Tracey

George

Of course, if he is still hell bent on following the .net path based on
what was in Google Trends, then show him the kitten thing and say
goodbye to your days as a web developer.
If you are going to be handling kittens in bulk, I would suggest
invesing in some of those stainless steel link chain mesh gloves that
butchers use, possible even a full length arm version.
Other shipping ideas are available here:
 www.bonsaikitten.com

Darren Tracey


--~--~-~--~~~---~--~~
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: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-12 Thread Darren Tracey

This is the point where I'd like to thank Dale for raising everyones
interest in WebDU this year, helping us crystalise everyones reasons
for putting in that extra effort to get to Sydney, and letting us all
realise how much the community here is behind WebDU, Geoff and the
Daemonites.

Thanks guys. Its been great.

Darren Tracey


--~--~-~--~~~---~--~~
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: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-11 Thread Darren Tracey

Then the answer to your question in No.
Moving the event appears to have more downsides than upsides.
If it were down to a straight vote (which it isn't) then the
overwhelming majority are very happy with it being in Sydney.

Darren
who's very happy with it and won't bite on that viscious thing about
Sydney being a CF capital! ;-)


--~--~-~--~~~---~--~~
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: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-11 Thread Darren Tracey

Then the answer to your question in No.
Moving the event appears to have more downsides than upsides.
If it were down to a straight vote (which it isn't) then the
overwhelming majority are very happy with it being in Sydney.

Darren
who's very happy with it and won't bite on that viscious thing about
Sydney being a CF capital! ;-)


--~--~-~--~~~---~--~~
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: ColdFusion Hosting Australia

2006-09-27 Thread Darren Tracey

Ben, for someone not wanting a war, or to burn any bridges, your last
two posts have had some very strong claims, that I would think are
getting very close to being 'fighting words'.
If there's some history or association between you and Inevative
(Steve) or between you and Web Central, then you need to put it on the
table for all to see, or withdraw your accusations, because at the
minute they appear (at least to me) very much to be an angry and
spitefull attack on another list member. A list member who contributes
a lot to the list and to the community.

Darren Tracey


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting Tuesday 3rd October in the Brisbane CBD

2006-09-27 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 3rd of October 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000
Topics: ColdFusion: First Class Flex Citizen

More details here: http://qld.cfug.org.au/

Before I get into the details of this month's meeting, I'd like to
announce that the Queensland ColdFusion User Group now has a new
announcement mailing list. If you're at all interested in attending, or
being aware of, the monthly meetings we hold, then I would strongly
recommend going to this URL:
 http://groups.google.com/group/qldcfug
and joining the list (its another Google Group, so joining is easy, and
you already know how to do it!). It a very low volume, one way list
with typically just 2 emails a month.

We are also experimenting with Google Calendars, and have a calendar
set up for meeting dates here:

http://www.google.com/calendar/embed?src=ffib6djpcs6qfa2bbm3ploc9js%40group.calendar.google.com


This month at CFUG QLD:

Hot on the heals of the growing interest in Adobe's Flex Authoring, the
October meeting of the Qld CFUG is delving into how to get Coldfusion
into the act. This will be an easing into the Flex world with
follow-ups planned for the rest of the year.

Adobe engineers have been working hard to try and make ColdFusion a
first class citizen in the Flex world, so this month we'll be
exploring just what that means for ColdFusion programmers.

[some links to get into the spirit]

Introduction to Flex
http://www.devarticles.com/c/a/Flash/Introduction-to-Flex/

Introduction to Flex 2 (Slides and Code)
http://www.darronschall.com/weblog/archives/000218.cfm

Flex Builder 2 Tutorials
http://labs.adobe.com/technologies/flexbuilder2/tutorials/

Why should a ColdFusion Developer care about Flex 2.0
http://www.asfusion.com/blog/entry/why-should-a-coldfusion-developer-care

and a bit more advanced (but still an intro)

ColdFusion and Flex: Do you need Flex Data Services?
http://www.adobe.com/devnet/coldfusion/articles/fr_fds.html

Sample applications
http://www.adobe.com/devnet/topics/sample_apps.html

Of course, there will be the latest news (and what news there will be
to tell!), questions, open forum, prizes and give-a-ways, and lots of
drinks and food.

If you haven't already, then please RSVP by noon Tuesday, 3rd of
October as it helps make sure there's enough pizza and subs for
everyone, and is the only way to be in the prize draw!

IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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-09-05 Thread Darren Tracey

I agree with Jeremy on this one too.
It may be well and good to promote a strong grassroots love for CF in
the developer community, but with a complete absence of visibility to
the decision making tier of businesses (a group which is almost
mutually exclusive to the developer community), it gets very hard for
the developers to argue the case for this 'unknown' solution, and
senior management just doubt the developers strong opinions (or worse,
start to consider them zealots), as its seems to senior management that
the developers suggestions are in complete disconnect to what senior
management can see of the market.
I don't know if advertising is the solution, and I accept that its very
expensive, but something needs to be done to raise CFs visibility to
the non developer community.


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting TOMORROW, Tuesday 15th August in the Brisbane CBD

2006-08-14 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 15th of August 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000
Topics: Happy 10th Birthday Flash! Studio 8 giveaway!
Search Engine Optimisation

More details here: http://qld.cfug.org.au/

This month's party CFUG is finally on!! The venue's confirmed, the
speaker's confirmed, the giveaways' are confirmed, the cake, food and
drinks are confirmed! Now we just need _you_ to confirm!

This month at CFUG QLD:

Flash turns ten this month, and the Queensland CFUG will be
celebrating! We'll have a quick look at Flash over the last 10 years.
There will be cake and party foods, and one lucky attendee (who has
RSVPed) will get a free and full copy of Adobe Studio 8.

We also have a special presentation on Search Engine Optimisation. How
to get your site listed in the Search Engines the way you want, and in
the position you want. There's a lot more to this than just putting a
few keywords in a Meta tag, and we'll have all the hits, tips and
secrets about this huge and very important topic in this presentation.
We also have a very special offer from one of the commercial Search
Engine Optimisation subscription services, so don't miss this one!

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways, (party foods!) and drinks.

If you haven't already, then please RSVP by noon Tuesday, 15th of
August as it helps make sure there's enough pizza and subs for
everyone.

There's still plenty of goodies left in our Adobe 'care package', so
another good chunk of it will be given away at this month's meeting,
including the copy of Studio 8, and a copy of Ben Forta's Advanced Web
Application Construction Kit, and as usual only people who RSVP to me
and tell me that they're coming will go in the prize draw.

IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] Another QLD CFUG date change, sorry!

2006-08-07 Thread Darren Tracey

Unfortunately, due to reasons beyond my control, tonight's QLD CFUG
meeting will have to be postponed again.
It will now be held on Tuesday the 15th of August.
I apologise for any inconvenience this may cause anybody.
Rest assured that the fantastic software and book door prizes will
still be available on the new night.

Regards 
 
Darren Tracey
CFUG QLD Manager
Australia


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting TOMORROW, Tuesday 8th August in the Brisbane CBD

2006-08-06 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 8th of August 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000
Topics: Happy 10th Birthday Flash! Studio 8 giveaway!
Search Engine Optimisation

More details here: http://qld.cfug.org.au/

This month at CFUG QLD:

Flash turns ten this month, and the Queensland CFUG will be
celebrating! We'll have a quick look at Flash over the last 10 years.
There will be cake and party foods, and one lucky attendee (who has
RSVPed) will get a free and full copy of Adobe Studio 8.

We also have a special presentation on Search Engine Optimisation. How
to get your site listed in the Search Engines the way you want, and in
the position you want. There's a lot more to this than just putting a
few keywords in a Meta tag, and we'll have all the hits, tips and
secrets about this huge and very important topic in this presentation.
We also have a very special offer from one of the commercial Search
Engine Optimisation subscription services, so don't miss this one!

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways, (party foods!) and drinks.

If you haven't already, then please RSVP by noon Tuesday, 8th of August
as it helps make sure there's enough pizza and subs for everyone.

There's still plenty of goodies left in our Adobe 'care package',
so another good chunk of it will be given away at this month's
meeting, including the copy of Studio 8, and a copy of Ben Forta's
Advanced Web Application Construction Kit, and as usual only people who
RSVP to me and tell me that they're coming will go in the prize draw.

IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting DATE CHANGE, Tuesday 8th August.

2006-07-30 Thread Darren Tracey

The next QLD CFUG meeting, which was previously scheduled to happen
tomorrow (Tuesday) night, has been moved to now occur next week on
Tuesday the 8th of August.
Stay tuned for more details, but expect a special presentation on
Search Engine Optimisation, including a special subscription offer for
all meeting attendees.
We'll also be celebrating Flash's birthday and like all good
birthday parties, you'll get the presents. One lucky attendee will
get themselves a free, full copy of Adobe Studio, so mark your calendar
now and RSVP when the official notice goes out later this week.

Regards 
 
Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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: Converting comma-delimited lists to quoted value

2006-07-10 Thread Darren Tracey

I ran into exactly the same problem just a week or so ago.
QuotedValueList only works with query results.
Bizaare, I know, but that's how it is.
Put a quote front and back and change the delimiter to be ','


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting TONIGHT, Tuesday 4th July in the Brisbane CBD

2006-07-03 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 4th of July 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000
Topics: Flex2 and CF Integration
Version Control with CVS

More details here: http://qld.cfug.org.au/

This month at CFUG QLD:

In the last week, Adobe have released Flex2 _and_ a new updater for
ColdFusion.
So this month at CFUG QLD we have a presentation by Adobe software
Engineer Mike Nimer on Flex2 and CF integration.

Mike Nimer is a senior engineer on the ColdFusion engineering team,
responsible for the ColdFusion / Flex Flash Remoting adapter, a number
of the ColdFusion FlexBuilder plug-ins, as well as the enhancements to
CFForm in ColdFusion 7. Mike has also written much of the ColdFusion
Administrator for the last few major versions.
Before joining the engineering team, Mike spent three years working as
a senior consultant with the Macromedia consulting group, where he
provided on-site assistance to customers with their architecture
planning, code reviews, performance tuning, and general code and server
emergencies.

We'll also be having an introductory presentation on using CVS for
version control of your source code. How to set the server up, how to
put your code into it, and then how to use it on a day to day basis,
and how it will save your bacon!!

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways and drinks.

If you haven't already, then please RSVP by noon Tuesday, 4th of July
as it helps make sure there's enough pizza and subs for everyone.

There's still plenty of goodies left in our Adobe 'care package',
so another good chunk of it will be given away at this month's
meeting, and as usual only people who RSVP to me and tell me that
they're coming will go in the prize draw.
IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting VENUE CHANGE, Tuesday 4th July in the Brisbane CBD

2006-07-03 Thread Darren Tracey

Please note that we have had to have a last minute venue change for
tonight's CFUG meeting.
The new venue for tonight is now at 388 Queen Street, which is very
close to the Riverside Centre, our regular meeting venue.

If you are standing outside the Riverside Centre facing the street,
just cross the road and go to your right a little, go down Eagle Lane
(first street/lane you come to) and you will be at Queen Street
directly opposite 388 Queen Street.

There will be a small CFUG sign on the door, and you may not be able to
get in very far due to after hours security, so either call my mobile
number (0419 647 655) or if its before 6:30pm, just wait until someone
comes to get you.

If you vane already RSVPed, I'd really appreciate it if you could
send me another email just to let me know that you've seen that the
venue has changed.

Please note that the new venue details will not be on the website, due
to the lateness of the change.

Besides the venue change, all other details remain unchanged.

Details:

When  : 6:30 pm, Tuesday, 4th of July 2006
Where : Level 1, Aquarium Room
388 Queen Street
Brisbane CBD  QLD 4000
Topics: Flex2 and CF Integration
Version Control with CVS

More details here: http://qld.cfug.org.au/

This month at CFUG QLD:

In the last week, Adobe have released Flex2 _and_ a new updater for
ColdFusion.
So this month at CFUG QLD we have a presentation by Adobe software
Engineer Mike Nimer on Flex2 and CF integration.

Mike Nimer is a senior engineer on the ColdFusion engineering team,
responsible for the ColdFusion / Flex Flash Remoting adapter, a number
of the ColdFusion FlexBuilder plug-ins, as well as the enhancements to
CFForm in ColdFusion 7. Mike has also written much of the ColdFusion
Administrator for the last few major versions.
Before joining the engineering team, Mike spent three years working as
a senior consultant with the Macromedia consulting group, where he
provided on-site assistance to customers with their architecture
planning, code reviews, performance tuning, and general code and server
emergencies.

We'll also be having an introductory presentation on using CVS for
version control of your source code. How to set the server up, how to
put your code into it, and then how to use it on a day to day basis,
and how it will save your bacon!!

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways and drinks.

If you haven't already, then please RSVP by noon Tuesday, 4th of July
as it helps make sure there's enough pizza and subs for everyone.

There's still plenty of goodies left in our Adobe 'care package',
so another good chunk of it will be given away at this month's
meeting, and as usual only people who RSVP to me and tell me that
they're coming will go in the prize draw.
IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting Tuesday 4th July in the Brisbane CBD

2006-06-30 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 4th of July 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000
Topics: Flex2 and CF Integration
Version Control with CVS

More details here (soon) : http://qld.cfug.org.au/

This month at CFUG QLD:

In the last week, Adobe have released Flex2 _and_ a new updater for
ColdFusion.
So this month at CFUG QLD we have a presentation by Adobe software
Engineer Mike Nimer on Flex2 and CF integration.

Mike Nimer is a senior engineer on the ColdFusion engineering team,
responsible for the ColdFusion / Flex Flash Remoting adapter, a number
of the ColdFusion FlexBuilder plug-ins, as well as the enhancements to
CFForm in ColdFusion 7. Mike has also written much of the ColdFusion
Administrator for the last few major versions.
Before joining the engineering team, Mike spent three years working as
a senior consultant with the Macromedia consulting group, where he
provided on-site assistance to customers with their architecture
planning, code reviews, performance tuning, and general code and server
emergencies.

We'll also be having an introductory presentation on using CVS for
version control of your source code. How to set the server up, how to
put your code into it, and then how to use it on a day to day basis,
and how it will save your bacon!!

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways and drinks.

If you haven't already, then please RSVP by noon Tuesday, 4th of July
as it helps make sure there's enough pizza and subs for everyone.

There's still plenty of goodies left in our Adobe 'care package',
so another good chunk of it will be given away at this month's
meeting, and as usual only people who RSVP to me and tell me that
they're coming will go in the prize draw.
IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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: OT:Flex Release

2006-06-25 Thread Darren Tracey

I posted the following info here about a week ago. (All prices are in
US$):

According to Sydney Sloan (Marketing - Adobe) in a Breeze webinar @
11AM (c):

Official release date:

June 28, 2006

Pricing as follows:

Flex 2 SDK - FREE
Flex Builder 2 - $499, $749 w/charting
FDS - $6,000 (100 concurrent users), $20,000 (enterprise)

Interestingly:
FDS Express - FREE (one app per cpu).

Charting components - $299


--~--~-~--~~~---~--~~
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: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Darren Tracey

If 6 months is a ridiculous amount of time to wait for a meeting, then
should we assume that you'll be organising the venue, topics and
speakers for the next meeting in 4 weeks time? You'll actually need to
have it organised within about 3 weeks, as you'll need to start
promoting it for the week leading up to the meeting. I'd bet large sums
of money that Steve would accept any and all help in this manner.
If you're not happy with what's being offered, and think there's any
small amount you can offer, then offer it!
These are community meetings. Run for the community, by the community.
You could insert a John F Kennedy quote in here about not asking for
things, but I won't.

Regards
Darren Tracey
CFUG QLD Manager
Australia


--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Darren Tracey

mydomains.com should do the trick for you.
You can manage domains there for free. More advanced options start to
cost you, but its pretty cheap.
The service is fantastic. I've been using them to manage a bunch of
domains and some quite complex mail forwarding (all for free) now for
many, many years and have loved the service the entire time.


--~--~-~--~~~---~--~~
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] Flex Release Date/Pricing

2006-06-19 Thread Darren Tracey

I saw this on the User Group Manager list. Haven't seen it posted here
yet so thought people might like to know.
--
I saw this come across the wire on Flexcoders but didn't see any Adobe
folks respond. It seems legit but I would like ot hear/read from Adobe.

According to Sydney Sloan (Marketing - Adobe) in a Breeze webinar @
11AM (c):

Official release date:

June 28, 2006

Pricing as follows:

Flex 2 SDK - FREE
Flex Builder 2 - $499, $749 w/charting
FDS - $6,000 (100 concurrent users), $20,000 (enterprise)

Interestingly:
FDS Express - FREE (one app per cpu).

Charting components - $299


Thanks,

--
John C. Bland II
I do what I can do when I can do it. - Chris Tucker, Money Talks

http://www.gotoandstop.org - Home of FMUG.az


--~--~-~--~~~---~--~~
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] Adobe Announces Resignation of President, Stephen Elop, who was formerly CEO of Macromedia.

2006-06-19 Thread Darren Tracey

Another post from the User Group Manager list. None of the text below
is mine.
-
fyi ... following are excerpts from this link:
www.publish.com/article2/0,1895,1977422,00.asp

Adobe Announces Resignation of President, Stephen Elop, who was
formerly CEO of Macromedia.

Adobe also announced that its quarterly profit fell 18 percent due to
charges related to its acquisition of Macromedia. Adobe also cut its
financial forecast for the rest of 2006.

The promise of Adobe's merger with Macromedia was the integration of
Web, print and publishing software. Adobe has yet to release any
software that reflects this integration.





The official press release is here:
www.adobe.com/aboutadobe/pressroom/pressreleases/200606/061506StephenElop.html

I had liked knowing that former MM people were in senior positions.  My
guess is that in Silicon Valley Stephen is a hot property and we are
likely to see him recruited for a start up or other fast growth company.


--~--~-~--~~~---~--~~
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: Flex Release Date/Pricing

2006-06-19 Thread Darren Tracey

Should have said that the prices were all in US$


--~--~-~--~~~---~--~~
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] Announcement: Australian Flex Developer Derby!

2006-06-18 Thread Darren Tracey

This message was sent by Ed Sullivan from Adobe.
-
Hello Folks,

Adobe listened to your feedback regarding being excluded from the NA
Flex Developer Derby, and Clare Gillespie did some fantastic work in
getting a local version of the contest up and running for the user
communities of Australia!

I am pleased to announce The Adobe  Builder AU Flex Developer Derby:
http://www.builderau.com.au/comps/adobe-flex-derby/.  Please help
spread the word by posting to your sites, blogs and letting your
memberships know about the contest.

And I fully expect at least one of you to take home a prize!!

The Adobe Sydney office is seriously committed to the local community
and hopefully the development of this contest goes a long way towards
demonstrating that.

Now let's see what you can do with Flex Beta3!!!

Thank you!!

Ed

Eligibility:
This contest is available to residents in Australia only, and residents
of jurisdictions or regions prohibiting such promotions should consider
this program void. The Labs Showcase Gallery is open to residents of
all countries and we welcome your submissions.


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting TONIGHT, Tuesday 6th June in the Brisbane CBD

2006-06-05 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 6th of June 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000

More details here : http://qld.cfug.org.au/

This month at CFUG QLD:

We have a really special, and really amazing look at the new Flex
Superwizard. The presentation is by Dean Harmon from Adobe. Its short,
sweet, to the point, and did I say really amazing?

We'll also be taking a look at the new Spry framework for AJAX, which
is currently available on Adobe Labs
(http://labs.adobe.com/technologies/spry/). This presentation is by Jen

Taylor (Sr. DW Product Manager) Kin Blas (DW Engineer) and Don Booth
(DW Quality Engineer).

The meeting will also have our regular (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways and drinks.

If you haven't already, then please RSVP by noon Tuesday, 6th of June
as it helps make sure there's enough pizza and subs for everyone.

There's still plenty of goodies left in our Adobe 'care package',
so another good chunk of it will be given away at this month's
meeting, and as usual only people who RSVP to me and tell me that
they're coming will go in the prize draw. Last month everyone who
RSVPed got a prize.
IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it. 
See you there. 

Darren Tracey 
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] New Senior Product Manager for ColdFusion

2006-05-25 Thread Darren Tracey

This was posted to the User Group Manager list by Ed Sullivan, our
Adobe User Groups contact.

Darren Tracey
CFUG QLD Manager
Australia

Hello Folks,

As many of you know, Tim Buntel left the company awhile back and since
then we have been looking for his replacement.  Well the search has
concluded and I would like to introduce Adobe's new Senior Product
Manager for ColdFusion, Jason Delmore.  I have included a little about
Jason below and I am sure you'll be hearing/seeing his name more and
more in the upcoming months.

Best,

Ed

Jason began his career in the weather industry as an operational
weather forecaster.  His interest in programming however, very quickly
led him to an internet startup working on ColdFusion projects, and has
spent the last 8 years leading ColdFusion development teams.  In his
latest role, Jason was the Director of Engineering at Deploy Solutions,
a leading provider of hiring and talent management software.  His team
was awarded the HRExecutive Magazine's Top HR Product of the Year for
their Onboarding product line.


--~--~-~--~~~---~--~~
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] New Addition to Labs - Spry Framework for Ajax

2006-05-15 Thread Darren Tracey

This was on the User Group Manager's list the other day.
Hope its interesting to someone.

Regards
Darren Tracey


The Spry framework for Ajax enables you to incorporate XML data into
your HTML documents using HTML, CSS, and a minimal amount of
JavaScript, without the need for refreshing the entire page.

The Spry release on Labs consists of the following (and more links
within):

Labs Home: http://labs.adobe.com/
Spry Overview: http://labs.adobe.com/technologies/spry/
Spry Download: http://www.macromedia.com/go/labs_spry_download
Spry Wiki: http://labs.adobe.com/wiki/index.php/Spry

For more information, please see Paul  Gubbay's Logged In article:
http://www.adobe.com/devnet/logged_in/pgubbay_spry.html.


--~--~-~--~~~---~--~~
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] CF/Flex Wizard

2006-05-15 Thread Darren Tracey

Now this is really cool.

Dean Cooper, who many of you may remember from WebDU as the CF product
manager, has released initial some screen shots of the new CF/Flex
Application building wizard, and he's now released a screen capture
video of him making an app.
It looks really good, and I'm amazed that no one else has posted it
here yet.

Have a look here:
http://www.dcooper.org/blog/client/index.cfm?CFID=2861227CFTOKEN=67719506

The link to the video clip is here:
http://www.dcooper.org/gallery/ColdFusionFlexApplicationWizard.htm

Enjoy.

Darren Tracey


--~--~-~--~~~---~--~~
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/Flex Wizard

2006-05-15 Thread Darren Tracey

Of course, that should have been Dean Harmon, from Adobe who released
the preview, as posted on Damon Cooper's blog.
I don't know who Dean Cooper is or why I gave him all the credit!

Darren Tracey
Is it Friday yet?


--~--~-~--~~~---~--~~
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] Next QLD CFUG meeting TONIGHT, Tuesday 2nd May in the Brisbane CBD

2006-05-01 Thread Darren Tracey

Details:

When  : 6:30 pm, Tuesday, 2nd of May 2006
Where : ABN AMRO Morgans Limited
Level 29,
123 Eagle Street (Riverside Centre)
Brisbane CBD  QLD 4000

More details here : http://qld.cfug.org.au/

This month at CFUG QLD:

Its already CFUG time again! All these public holidays have made the
last month fly by. Don't forget that this month's CFUG meeting is
on Tuesday night next week, which is the first day back after the long
weekend that starts at 5pm tonight.

This month's feature topic is a special presentation by William
Wechtenhiser on Flex Data Services. William is the Director of the Flex
Enterprise team at Adobe.

We'll also have a special new section call 'Tool Tips', that
I'm hoping will become a semi-regular topics at our meetings. We'll
be looking at a collection of useful utility apps. The kind of things
that make your development life easier and make you more productive.
Richard Turner-Jones from QMUG will be sharing with us his favourite
set of utility apps.

The meeting will also have our usual (and ever popular) general open
floor QA discussion, so bring your questions and problems.

As usual there will be free pizza, subways and drinks.

If you haven't already, then please RSVP by noon Tuesday, 2nd of May,
as it helps make sure there's enough pizza and subs for everyone.

The first Adobe 'care package' has arrived. There's lots of cool
and interesting things in it, so there'll be lots of new Adobe
branded give-aways, and a clean out of some of the older stuff too.
IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW!

Send that email now!!

Don't miss it.
See you there.

Darren Tracey
CFUG QLD Manager


--~--~-~--~~~---~--~~
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] Active Content Developer Centre

2006-04-17 Thread Darren Tracey

There's some new content and resources available for anyone
dealing/worried about the IE changes resulting from the Eolas case.

http://www.macromedia.com/devnet/activecontent/

Darren Tracey


--~--~-~--~~~---~--~~
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] OT: It's Official - Run Windows XP on your MacIntel w/ Boot Camp and the future Leopard OS

2006-04-05 Thread Darren Tracey

For the many Mac 'enthusiast/zealots' on this list:

It's Officially Official... Run Windows XP on your MacIntel w/ Boot
Camp and the future Leopard OS

More and more people are buying and loving Macs. To make this choice
simply irresistible, Apple will include technology in the next major
release of Mac OS X, Leopard, that lets you install and run the Windows
XP operating system on your Mac. Called Boot Camp (for now), you can
download a public beta today...
http://www.apple.com/macosx/bootcamp/

Now this is something to celebrate... Happy 30th Apple!!!


--~--~-~--~~~---~--~~
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] Flex 2 Beta 2 and the Adobe Flex Developer Derby

2006-03-20 Thread Darren Tracey

Flex 2 Beta 2 is out.

Need a reason to finally give Flex 2 a try?  How about getting a shot
at being one of 6 (yes 6) developers who will receive:  42-inch Samsung
plasma TV plus a Microsoft Xbox 360.

Details at:
http://labs.macromedia.com/showcase/special/flexderby/


Take note of the part of the terms and conditions that say this:
CONTEST IS OPEN ONLY TO LEGAL RESIDENTS OF THE UNITED STATES OR CANADA,
EXCLUDING QUEBEC, WHO ARE AGE 18 YEARS OR OLDER.

Regards
Darren


--~--~-~--~~~---~--~~
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: WebDu Who's going ?

2006-02-21 Thread Darren Tracey

I'm going. Flying down Wednesday morning and flying out late Friday
night. Doing the banquet too.
There's a bunch of other peole from the large banking company I work
for also going.

Darren Tracey


--~--~-~--~~~---~--~~
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: files now only 0k

2006-02-16 Thread Darren Tracey

This confused me at first.
I couldn't see what your problem was.
Surely if your files are all OK, then you have no problem.

Then the penny dropped that you meant that they had a zero size, and
were 0kB, not that they were O.K.

There isn't any chance that your cf server has run out of HDD space, or
that the directory that CF sits it, where it will put the temporary
file before it writes of to your destination directory, is full, or
some permissions have changed, or something along these lines?

Darren T
who thought Chad wasn't happy with being OK

Chad Renando wrote:
 Hey guys,

 Cffile, uploads files to the server.  All of a sudden, files are 0k.
 Tried different file types.  goes through the upload, browser takes
 the time to upoload it, but when I check on the server, the file size
 is 0k.

 Anyone had this happen to them before?
 
 Chad
 who has bad breath today


--~--~-~--~~~---~--~~
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] WebDU share accomodation

2006-02-16 Thread Darren Tracey

I've just had my WebDU ticket confirmed.
I've booked my accomodatio, now I'm looking for someone to share it
with.
I've booked a 2 bedroom apartment in StarCity for the Wednesday,
Thursday and Friday night (I may not stay the Friday night, but its
booked anyway. Cancelling it is easy.)
Its $290 per night.
Does anyone want a seperate bedroom, their own bathroom, and half a
lounge room and kitchen for $290 for 2 nights, with the option of
extending to the 3rd night if you want?
Contact me off list.

Regards
Darren Tracey


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