[cfaussie] Re: Web on the Piste update

2007-07-17 Thread Haikal Saadh
I love the last picture o the banner... the two guys holding on to their pool cues while sheepishly looking at the woman who's rebooting her web server from her phone. Grant Straker wrote: > Hi All, > > Just over 30 days until the conference which is the most fun you can > have with your pants

[cfaussie] Re: CFMAIL Maintenance

2007-07-17 Thread mpicker
Just sorry about the double post. Having a lot of trouble with my Google account lately. Cheers Mark On Jul 18, 11:32 am, "Scott Thornton" <[EMAIL PROTECTED]> wrote: > awesome! > > >>> mpicker <[EMAIL PROTECTED]> 18/07/2007 11:24 am >>> > > Hi Scott, > > Please see below a cfm page we run as a

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Matthew
Haikal I think you figured it out! I've messed around with the tag (without using the to initialise!) and think it will work, however I'll have to wait until the next outage from the web service source to test properly. FYI: the suggestion won't work because the timeout attribute doesn't contr

[cfaussie] Web on the Piste update

2007-07-17 Thread Grant Straker
Hi All, Just over 30 days until the conference which is the most fun you can have with your pants on (flying down a mountain on a plank to boot). The link below is to the latest newsletter on what is happening. The agenda is up and we still have a few adjustments to make as the last speakers/top

[cfaussie] Re: Coldfusion Books

2007-07-17 Thread Andrew Scott
Doh, That sucks. 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:[EMAIL PROTECTED] On Behalf Of Matthew Sent: Wednesday, 18 July 2007 3:29 PM To: cf

[cfaussie] Re: Coldfusion Books

2007-07-17 Thread Matthew
Hi Andrew, Those were the first 2 I went to. A&R was were I went 9 months ago and thought their selection was good but now it's disimal (especially because half the section is taken up selling old IT books on sale - whats the point?)! McGills has the best computer section out of the 5 I went to h

[cfaussie] Re: Coldfusion Books

2007-07-17 Thread Andrew Scott
Mathew, There are 2 very good book stores in the CBD, Angus and Robertson and McGills both with 2 doors of each other. I haven't been to either for a few years, but both have separate areas for Computer related books. McGills is upstairs and is huge, and A&R is on the corner virtually next door f

[cfaussie] Re: Coldfusion Books

2007-07-17 Thread Steve Onnis
If you like I can see if I can source some books for you from the supplier. Come along to the CFUG tomorrow and we can discuss:) Steve -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Sent: Wednesday, 18 July 2007 2:58 PM To: cfaussie Sub

[cfaussie] Coldfusion Books

2007-07-17 Thread Matthew
Is it just me or is the only place to buy a CF book online? I live in Melbourne (work in the CBD) and have visited 5 book shops in the past few days in search of "Ben Forta's Advance CF..." (or any CF book) but can't find one anywhere! In fact it seems that all book shop "computer" sections have b

[cfaussie] Re: CF Training in Australia

2007-07-17 Thread Mike Kear
Thanks Andrew. I knew you were doing training and i felt sure your company wasn't Dynamic Web Training. You need to poke Adobe in the ribs to get them to put your name on the web site as an authorised training centre. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Haikal Saadh
Here's another thought: If it actually is the cfobject call that's timing out, maybe you could save the WSDL file to your server, and have it hit that? That way you won't have to worry about it timing out, and you can happily use Haikal Saadh wrote: > So it's the actual cfobject tag that's t

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Haikal Saadh
So it's the actual cfobject tag that's timing out? Not the subsequent cfinvoke? cfinvoke seems to have a timeout parameter. (Excuse my ignorance, never actually used cfobject for a web service call) Matthew wrote: > Howdy, > > Our CF server keeps crashing whenever a web service we are consuming

[cfaussie] Re: CF Training in Australia

2007-07-17 Thread Andrew Muller
Hi Mike The company that I work for, webqem, also does ColdFusion training: http://www.webqem.com/training/coldfusiontraining/index.cfm Andrew On 18/07/07, Mike Kear <[EMAIL PROTECTED]> wrote: > > I have been asked by a client to provide a list of companies who can > provide approved training

[cfaussie] CF Training in Australia

2007-07-17 Thread Mike Kear
I have been asked by a client to provide a list of companies who can provide approved training in Australia - Sydney preferably. I called Adobe and they referred me to their web site which names Dynamic Web Training Pty Ltd SYDNEY as the only company providing authorised training in CF in Austral

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Barry Beattie
> Throwing daggers in the dark here, but worth a shot. yeah, this sounds like what's really needed in CF are asynchronous event handlers for when there's a result to return... ... like in XMLHTTPRequest (Ajax) or Flex/Flash. --~--~-~--~~~---~--~~ You received thi

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread David Harris
could you do this: it broke! This should throw on a time out. EG: if the lock runs for more seconds than in the "timeout" attribute, it'll thrown an error. HTH Matthew wrote: > Done that already. But there is nothing to catch because it's not > actually throwing an error because it's c

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Mark Mandel
Ooh... interesting. The only thing I can think of is maybe setting a named lock, with a timeout around it, and set it to 'readonly', so that multiple threads come in, but it should time out? Throwing daggers in the dark here, but worth a shot. Mark On 7/18/07, Matthew <[EMAIL PROTECTED]> wrote

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Matthew
Done that already. But there is nothing to catch because it's not actually throwing an error because it's carrying on indefinitely and hence once we get half a dozen of these it sends the server into a loop so no one can access the website. I understand that even if the user closes there browser t

[cfaussie] Re: How do you time out CFOBJECT?

2007-07-17 Thread Mark Mandel
Maybe just a try / catch block around the webservice call? Mark On 7/18/07, Matthew <[EMAIL PROTECTED]> wrote: > > Howdy, > > Our CF server keeps crashing whenever a web service we are consuming > falls over (infrequent and random). I have no control over the web > service, so I am trying to fin

[cfaussie] How do you time out CFOBJECT?

2007-07-17 Thread Matthew
Howdy, Our CF server keeps crashing whenever a web service we are consuming falls over (infrequent and random). I have no control over the web service, so I am trying to find a way that I can timeout a WS call from CF. I'm using the CreateObject("webservice") function (same as CFOBJECT) to invoke

[cfaussie] Reminder: Melbourne CFUG - TOMMORROW!

2007-07-17 Thread Mark Mandel
All, it's time for the monthly CFUG events. Location: NGA.net, Level 2, 17 Raglan St, South Melbourne Map: http://link.toolbot.com/google.com/73016 When: 19th of July, Meeting starts at 7:00, so get there before hand (doors open at 6:30). Agenda: Hidden Gems in CF8 Prepare to be surprised!

[cfaussie] CFMAIL Maintenance

2007-07-17 Thread Scott Thornton
awesome! >>> mpicker <[EMAIL PROTECTED]> 18/07/2007 11:24 am >>> Hi Scott, Please see below a cfm page we run as a schedule every night to deal with undeliverable mails. What this script does is each night move the undeliverable emails back to the spool to try and deliver them (just in case it

[cfaussie] Re: CFMAIL Maintenance

2007-07-17 Thread Sarah Barry
Thanks Mark! -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Picker Sent: Wednesday, 18 July 2007 11:23 AM To: cfaussie Subject: [cfaussie] Re: CFMAIL Maintenance Hi Scott, Please see below a cfm page we run as a schedule every night to de

[cfaussie] Re: CFMAIL Maintenance

2007-07-17 Thread Mark Picker
Hi Scott, Please see below a cfm page we run as a schedule every night to deal with undeliverable mails. What this script does is each night move the undeliverable emails back to the spool to try and deliver them (just in case it was network, server etc issues that stopped it from being delivere

[cfaussie] Re: CFMAIL Maintenance

2007-07-17 Thread mpicker
Hi Scott, Please see below a cfm page we run as a schedule every night to deal with undeliverable mails. What this script does is each night move the undeliverable emails back to the spool to try and deliver them (just in case it was network, server etc issues that stopped it from being delivere

[cfaussie] CFMAIL Maintenance

2007-07-17 Thread Scott Thornton
well, I will delete them and see if sorts out the mail log >>> "Sarah Barry" <[EMAIL PROTECTED]> 18/07/2007 10:04 am >>> I think CF has finished with them cos they just stay there until acted on But perhaps the mailer needs to keep trying? -Original Message- From: cfaussie@googlegro

[cfaussie] Re: CFMAIL Maintenance

2007-07-17 Thread Sarah Barry
I think CF has finished with them cos they just stay there until acted on But perhaps the mailer needs to keep trying? -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Thornton Sent: Wednesday, 18 July 2007 9:08 AM To: cfaussie@googlegroups.c

[cfaussie] CFMAIL Maintenance

2007-07-17 Thread Scott Thornton
Hi, Last question. When the mail is placed in the undelivered folder, is coldfusion finished with them as far as it is concerned? I assuming yes? It doesn't retry them at some point? The reason I ask is that I am getting some weird stuff in my mail server logs like: "Error","scheduler-3","0

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Raymond Camden
It will be 3 books. On 7/17/07, Peter Tilbrook <[EMAIL PROTECTED]> wrote: > If the closed GMC (Gold Media Candidate) is any indication I am thinking > August. That would be for electronic purchase/download as it would take a > while to master the DVD's and manuals. Expect another huge hit with Be

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Peter Tilbrook
If the closed GMC (Gold Media Candidate) is any indication I am thinking August. That would be for electronic purchase/download as it would take a while to master the DVD's and manuals. Expect another huge hit with Ben Forta's (et al) CFWACK - expected to be at least two tomes as the language has g

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Steve Onnis
Ok i asked Ben Forta if he new when the release date was and this is his response... "Yes I do, but can't tell you yet. But, very very soon. ;-)" So there you go. _ From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of M@ Bourke Sent: Tuesday, 17 July 2007 8:18 PM To:

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Peter Tilbrook
Yeah! And perhaps the most highly "optimised" version yet - it really flies performance wise. On 17/07/07, M@ Bourke <[EMAIL PROTECTED]> wrote: > > "The most significant release yet" > > On 7/17/07, Peter Tilbrook <[EMAIL PROTECTED]> wrote: > > > > It can't be too far off but nothing official. Ado

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread M@ Bourke
"The most significant release yet" On 7/17/07, Peter Tilbrook <[EMAIL PROTECTED]> wrote: > > It can't be too far off but nothing official. Adobe's CF team will release > it when they feel it is ready. This is a major release of ColdFusion and > they don't want to fark it up. Nor do we want them to

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Peter Tilbrook
It can't be too far off but nothing official. Adobe's CF team will release it when they feel it is ready. This is a major release of ColdFusion and they don't want to fark it up. Nor do we want them too. On 17/07/07, Dale Fraser <[EMAIL PROTECTED]> wrote: > > The second it hits the adobe online s

[cfaussie] Re: CF8 Release Date Rumor

2007-07-17 Thread Dale Fraser
The second it hits the adobe online store. Regards Dale Fraser http://dalefraser.blogspot.com From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AJ Mercer Sent: Tuesday, 17 July 2007 4:36 PM To: cfaussie@googlegroups.com Subject: