Re: [cfaussie] RE: Coldfusion JRun Max handler threads setting

2010-04-11 Thread Joel Cass
oking for a hot date? View photos of singles in your > area!<http://clk.atdmt.com/NMN/go/150855801/direct/01/> > > -- > You received this message because you are subscribed to the Google Groups > "cfaussie" group. > To post to this group, send email to cfaus...@googl

Re: [cfaussie] Fire Up The Barbie - mate!

2009-11-16 Thread Joel Cass
Looks good and probably ticks all their boxes - good luck :) On Mon, Nov 16, 2009 at 7:52 PM, Taco Fleur wrote: > Excellent, thanks for that. > > > Kind regards, Taco Fleur (CIO/CEO/Founder) > -- > > *Advertise your business, products and services on **www.clickfind.

Re: [cfaussie] .htaccess, apache2.2 and CF8

2009-11-16 Thread Joel Cass
So when you say "explodes", do you mean that it cannot find the path? Look at the mappings on the production server - either there is no root set up so CF is just guessing the root, or the root is pointing to an incorrect folder. On Mon, Nov 9, 2009 at 9:51 AM, Steele wrote: > > I have a .htacc

Re: [cfaussie] Problems with webservice

2009-11-16 Thread Joel Cass
looking at the wsdl, the parameters appear to be 'login' and 'senha' instead of username and password. Since webservices are represented as java objects, I presume the parameter names need to match On Sun, Nov 15, 2009 at 11:26 PM, Steve Onnis wrote: > Where did you get the url for the webservice

[cfaussie] Re: Value must be initialized before use - Its possible that a method called on a Java object created by CreateObject returned null

2009-10-22 Thread Joel Cass
, there is a webservice call there. But why would it only time out for > Google. Anyways, I put a 2 minute timeout on there now, let's see if it > keeps happening. Thanks for that. > > cheers > > > On Fri, Oct 23, 2009 at 9:51 AM, Joel Cass wrote: > >> Weird, I got no

[cfaussie] Re: Value must be initialized before use - Its possible that a method called on a Java object created by CreateObject returned null

2009-10-22 Thread Joel Cass
ality > and legal privilege are not waived or lost by reason of mistaken delivery to > you. For more information about use, disclosure and access see our privacy > policy at http://www.clickfind.com.au/privacy-policy.cfm > > > > P* *please consider the environment before print

[cfaussie] Re: Value must be initialized before use - Its possible that a method called on a Java object created by CreateObject returned null

2009-10-21 Thread Joel Cass
I've had this one before but with a different component. Usually there is an error that is being thrown by the Java object but is not being represented properly in ColdFusion. cftry/cfcatch will not actually work in this case as the problem is occuring in the Java Layer. I think the real error does

[cfaussie] Re: Masking a URL

2009-10-21 Thread Joel Cass
Doesn't seem like an issue with ColdFusion, but could be fixed using it. Create a print function that uses cfdocument to create a pdf of the page. If you have control over the client browser, Under 'page setup' in IE, there is an option to modify header and footer. Simply strip out &u or replace

[cfaussie] Re: Coldspring Best Practice

2008-06-19 Thread Joel Cass
I haven't used fusebox but have been using Mach-II with Coldspring.. Would not recommend option 1 - you are just creating dependencies on the request scope. Could get messy in the future. ColdSpring keeps all the instances of your beans in memory so aliasing these to the request scope seems redu

[cfaussie] Re: Out of Memory

2008-05-19 Thread Joel Cass
First thing that comes to mind is Sessions. If you are placing a lot of data in the session scope, your server can be brought down by all kinds of traffic especially spiders. And then there's excessive caching. If you are caching on a per-user basis or not caching effectively (e.g. storage bugs,

[cfaussie] Re: Fixing up HTML Entities

2008-05-08 Thread Joel Cass
You could use REReplace(str, "&([^A-Za-z0-9])", "&\1", "all") On Fri, 2008-05-09 at 11:30 +1000, Seona Bellamy wrote: > Hi guys, > > Hopefully a quick and easy one for someone - I'm sure this is going to > be one of those things with an easy fix I'm just not seeing! > > I'm pulling in an XML f

[cfaussie] Re: ColdFusion Isn't a Programming Language?

2008-05-05 Thread Joel Cass
I've been calling it a technology for years.. Never really regarded it as a language. Is CF so perfect that no-one has any issues they need help with anymore? There's more politics in here than the bloody senate. On Mon, 2008-05-05 at 18:19 -0400, Dale Fraser wrote: > It's all Andrew's fault a

[cfaussie] Re: wierd caching problem

2008-04-28 Thread Joel Cass
If you are uploading using FTP, check that the timestamps are being updated. CF uses the timestamp of each file to determine whether it should be recompiled at runtime. I think that's your needle right there. On Mon, 2008-04-28 at 17:46 -0700, barry.b wrote: > thanx for the replies, guys. At le

[cfaussie] Re: To maintain DB connections or not ... that is the question

2008-04-27 Thread Joel Cass
My gut feeling is that you should not enable this feature unless you know specifically why you want to use it. Have had trouble in the past with the DBMS running out of connections on busy servers with this setting enabled, as every client has a connection whether they are using it or not (eg. yo

[cfaussie] Re: My Yearly WebDU Rant

2008-04-23 Thread Joel Cass
Another way to think about it is on a percentage of income basis. As I learnt in first year business, at least 10% of your income should be allocated to R&D/training purposes (Most companies it is much more). If it falls within 10%, go. I went a couple of years ago and thoroughly loved it. Hope

[cfaussie] Re: .net and coldfusion 8u1

2008-04-17 Thread Joel Cass
However coldfusion as I am now saying for the tenth time WILL NOT acknowledge .Net 3.0 / .Net 3.5 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Cass Sent: Friday, 18 April 2008 1:30 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: .net and coldfusion

[cfaussie] Re: .net and coldfusion 8u1

2008-04-17 Thread Joel Cass
Are you sure that the problem is with CF? Perhaps your .net connector is not configured. Open the jnbproxy.exe.config file under wherever your connector service is installed (eg. C:\ColdFusion8DotNetService). You *need* to have the supported runtimes listed, ie this the jnbproxy.exe.config

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

2008-04-14 Thread Joel Cass
You just use IsNumeric() to validate. If you have a method that accepts a numeric argument, the value "000A" will actually get through. So before calling such a method, make sure the value is numeric first. The code was using try/catch statements when setting object properties. Not the best prac

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

2008-04-14 Thread Joel Cass
ound(000 EQ "000A")# #round(000 EQ "000A")# #round("000A" EQ "012A")# #round("000P" EQ "012P")# ...Very interesting results. Joel Cass Developer Grude

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

2008-04-14 Thread Joel Cass
Try this: #round(000 EQ "000A")# #round(000 EQ "000A")# #round("000A" EQ "012A")# #round("000P" EQ "012P")# ...Very interesting results. Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 929

[cfaussie] Re: recruters say "CF on the way out"? ... FFS! not FUD from them too?

2008-04-13 Thread Joel Cass
I only say better because they are newer. CF hasn't changed much in the last 7 or so years since MX. But outside of CF a lot has changed in the past 7 years, brings me to the conclusion that CF is "dated". Plus I really am starting to like the flexibility and features of other languages, eg. OO

[cfaussie] Re: recruters say "CF on the way out"? ... FFS! not FUD from them too?

2008-04-13 Thread Joel Cass
Whoa. You fall asleep for a couple of days and this happens. Strongly agree with Scott and Kay. Don't lock yourself into CF. It's very good but there are newer and (should I say) better technologies out there. However, the web has not changed much. Sure there's all the hype with web 2.0, 2.0.1,

[cfaussie] Re: CF702 - cfquery caching

2008-04-07 Thread Joel Cass
ow your queries are cached. Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com <http://www.gruden.com/> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Beh

[cfaussie] Re: recruters say "CF on the way out"? ... FFS! not FUD from them too?

2008-04-07 Thread Joel Cass
e to stay, whether Adobe shelve the technology or not. My two cents Joel Cass -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KC Kuok Sent: Tuesday, 8 April 2008 9:25 AM To: cfaussie Subject: [cfaussie] Re: recruters say "CF on the way out"? .

[cfaussie] Re: CFChart examples with WOW factor

2008-04-02 Thread Joel Cass
does for a flash movie. Except there's no gif/jpeg support. Aw. They've been around a while. Actual company is based in India. Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com <htt

[cfaussie] Re: What constitutes "maintenance"

2008-04-01 Thread Joel Cass
nance. I wouldn't even include software updates as being included as maintenance as (most of the time) they are too time consuming to be done regularly. If you have a clear cut agreement from the start that defines maintenance (as you see it) then you will save yourself from the punch-ups later

[cfaussie] Re: Issue with concurrency

2008-03-25 Thread Joel Cass
r app. Either set the request number at the time of submission (and don't pass it in the form), or create a new request number every time a user visits the form (and have a few gaps between numbers). It's up to you. And use a cflock for saving / retrieving the latest number. Joel Cass De

[cfaussie] Re: programmer etiquette and writing good CF code

2008-03-25 Thread Joel Cass
Meh. I reckon the best type of programmer is one that accepts the faults of others (and themselves) and moves on. Nothing is perfect in life and we must all accept that. I really concur with Geoff's statement as I myself have been in that position many times over the years. And I have written l

[cfaussie] Re: Wanted: junior css/html ninja

2008-03-06 Thread Joel Cass
devoted to it. But then again you can learn how to HTML in your bedroom with some good resource. Perhaps just looking for someone with a website, a bit of enthusiasm and knowledge of some HTML tools (e.g. anything but frontpage) will be a good start. Joel Cass Developer Gruden - Design | D

[cfaussie] Re: Query of query and TOP

2008-03-06 Thread Joel Cass
You should use to get the top n records. The keyword TOP is actually proprietary (MSSQL only). Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com -Original Message- From: cfaussie@googlegroups.com

[cfaussie] Re: cferror java exception message

2008-03-05 Thread Joel Cass
You should be able to. If the exception you are getting sent via email is being caught using a cferror and not a cfcatch, it will definitely be in the logs. Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com

[cfaussie] Re: cferror java exception message

2008-03-05 Thread Joel Cass
I remember getting this error a lot from clients who leave the website before ColdFusion has finished doing anything/something. You can replicate this by opening a real slow page, pressing the stop button, and checking the logs / wherever you store your error messages. Joel Cass Developer

[cfaussie] Re: Flex Builder as main CF IDE

2008-03-03 Thread Joel Cass
it is a beta (or new) product and therefore a little dodgy in some areas, it makes a lot of sense to keep it separate from your current dev environment. Joel Cass Developer Gruden - Design | Development | Implementation t +61 2 9299 9462 f +61 2 9299 9463 m 0414 688 774 www.gruden.com <h

[cfaussie] Re: SOT: The World According to VISTA

2007-03-19 Thread Joel Cass
Is there nothing good to talk about in the CF world anymore? Before you all start comparing the size of our corporations (we all know who will win in this regard), can you at least return to why it is relevant. None of this seems relevant. I hate MS and all that it stands for. Linux is so much mo

[cfaussie] Re: Strange calculation behavior on CF 7.02

2007-02-21 Thread Joel Cass
I remember someone raising this issue yonks ago in CF 4.5 or something A quick fix: #round((1024-1024.1)*10)/10# On Wed, 2007-02-21 at 13:38 +1100, Robin Hilliard wrote: > > What exactly is a 'CF number'? > > All simple CF variables are stored as strings. When used as numbers > in an

[cfaussie] Re: Coldfusion and RAM

2007-01-31 Thread Joel Cass
The most I ever got out of standard was 1280M. That was on a computer with 4GB of RAM. The main issue is that the "block" of RAM that it uses needs to be contiguous, that is, it needs a clean block of RAM that nothing else is using. If something is (and you've used the xmx=xms rule), CF will

[cfaussie] Re: Coldfusion and Micrsoft Love.

2007-01-29 Thread Joel Cass
All this MS-talk and no-one mentioned... It's the night of the Vista release Let the bugs spew forth! Muahahahahaha (It's a full moon too) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To pos

[cfaussie] Breaking out of the cfexecute "shell"

2006-12-21 Thread Joel Cass
Hello all, We are migrating a legacy app to CF 7.0 on Windows 2003 and everything works, except that it has to execute a program to create some rather specific PDF files. This is working fine under windows 2000, but under windows 2003 it times out (indefinately)... Tried a few things and discov

[cfaussie] Re: Cold Fusion Is Old Hat compared to php aps etc !!!!

2006-12-14 Thread Joel Cass
Hmm. I remember when I first came to Sydney I went on a 4WD trip with a project manager for the Vodafone AU website. I remember having quite a fueled argument about CF vs ASP.. Back then most of their site was in ASP. Hmm. How things change. Eh, we didn't get along. I had to get a ride back home

[cfaussie] Re: Regular expressions - backreference as a number

2006-12-13 Thread Joel Cass
Ok. I know there were no comments. I removed them to make you think (yes, that's why...). what happens is that ColdFusion evaluates the string. Say that the string is: "Our product is #1 in 25% of the selected demographic" ..if the line were not there, after processing it would be evalu

[cfaussie] Re: Regular expressions - backreference as a number

2006-12-13 Thread Joel Cass
OK.. Please no messages saying "ooh.. evaluate() bad..", but str_text = "This works in 90% of all operations"; str_text = replace(str_text, "##", "", "all"); str_text = ReReplace(str_text, "([0-9]*)%","##\1-25##%","all"); result = evaluate(DE(str_text)); -Original Message- Fr

[cfaussie] Re: SOT - Windows Vista and ColdFusion

2006-12-12 Thread Joel Cass
That's where software like parallels desktop comes in... http://www.parallels.com/ I am running OpenSUSE, Ubuntu, and Windows on my laptop without fuss -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Peter Tilbrook Sent: Wednesday, 13 December 2006

[cfaussie] Re: SOT - Windows Vista and ColdFusion

2006-12-12 Thread Joel Cass
Oh no, another version of Windows.. Lots of 11 year-old innovations wrapped up in a new package. Oh Joy. Try installing Linux. Linux supports java. Both KDE and gnome have long used features that are just new to Vista. A variety of tools that can be installed into the UI, including search engine

[cfaussie] Re: Restarting the CFAPP from the URL

2006-12-11 Thread Joel Cass
11:18 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Restarting the CFAPP from the URL Thanks Joel, that's what i wanted. Starting the application again also kills all sessions doesnt it? so there's no need to also call the onSessionStart() method? Cheers Mike Kear On 12/1

[cfaussie] Re: Restarting the CFAPP from the URL

2006-12-11 Thread Joel Cass
in the onRequestStart handler, you can add some code to this effect: That should do the trick Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Mike Kear Sent: Tuesday,

[cfaussie] Re: Find and remove a trailing slash from a path - brain fade time

2006-12-05 Thread Joel Cass
What? there's a manual? -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Scott Thornton Sent: Wednesday, 6 December 2006 4:31 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Find and remove a trailing slash from a path - brain fad

[cfaussie] Re: Why XHTML?

2006-12-05 Thread Joel Cass
It's an SEO book, not a development book. Anyway (in my opinion), SEO is just a bunch of hearsay and conjecture. Anyone who has done any work with CSS in multiple browsers knows that using the transitional doctype in any language is a no-no. For starters, IE misinterprets the box model incorrectly

[cfaussie] CFThread and CFJoin

2006-11-30 Thread Joel Cass
Has anyone tried this? It looks very cool... 1) To start a thread: This will spawn a new thread and any content between tag will be invoked inside that new thread. 2) If you want to wait for this thread to fin

[cfaussie] Re: Application scope problem

2006-11-16 Thread Joel Cass
al variable scope and pull the information out of a database. On 11/17/06, Joel Cass <[EMAIL PROTECTED] > wrote: Hi, The application scope is useful for this kind of data (in moderation of course), but you should also minimise the number of writes you actually do to the a

[cfaussie] Re: Application scope problem

2006-11-16 Thread Joel Cass
Hi, The application scope is useful for this kind of data (in moderation of course), but you should also minimise the number of writes you actually do to the application scope. Hopefully (though the code does not indicate this), you should have a check to see if the array doesn't already exist i

[cfaussie] Re: cfdocument - client file name

2006-11-02 Thread Joel Cass
I am not sure exactly what you are trying to do as I've never mucked around with cfdocument, but the way that I use a lot for serving out files for clients to save to disk is:   .../download.cfm/myfilename.pdf [or whatever]   in your download.cfm, look up cgi.path_info (note that this value

[cfaussie] Re: Using cfqueryparam

2006-10-19 Thread Joel Cass
Thanks, this seems like a much more reliable method to get identities.. Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Scott Thornton Sent: Friday, 20 October 2006 9:55 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Using cfquerypara

[cfaussie] Using cfqueryparam

2006-10-19 Thread Joel Cass
Hello all, Are there any issues with CFqueryparam using insert statements that I should know about? # "MyTable" has about 4.5 million rows # "MyTable.MyField" is an nvarchar(900) Inserting into "MyTable" with a cfqueryparam takes around 6000ms (extremely slow), while inserting without a cfquery

[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread Joel Cass
 That's interesting..   Though, perhaps that is because CF has not changed all that much. Sure, you can do all the fancy OO stuff these days but it is still just a bunch of cfif, cfinclude, and cfoutput statements tied together. Asp.net is rather different from traditional asp, so therefore

[cfaussie] Re: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-11 Thread Joel Cass
The WebDU was great last year. It looked pretty damn successful.   If you keep bagging the organiser maybe he'll just give up and not put any events on at all..   As someone who grew up in WA in the most isolated city in the world (and the most neglected in Australia as far as the big eve

[cfaussie] Re: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-10 Thread Joel Cass
WebDU looked pretty successful last year (?) ... I'm not really sure why everyone likes to hold big events in Sydney.. Though off the top of my head. the weather - which has been great lately the size - lots of places to do, things to go etc the location - central to the east coast cities the wo

[cfaussie] Re: regexp - keyboard characters

2006-10-04 Thread Joel Cass
You could try it the "old-school" way (at least it'll work on older versions): "[EMAIL PROTECTED]&\*\.\?\(\)\{\}\[\]\\|\:"";'<>,/]" Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Adam Chapman Sent: Thursday, 5 October 2006 10:28 AM To: cfauss

[cfaussie] Re: SMSC SMS providers in Australia

2006-09-26 Thread Joel Cass
For a gateway, you could try setting up Kannel http://www.kannel.org/ to send SMS messages. All you might need is an account with a phone provider, a 56k modem (or maybe a mobile - though telstra does offer SMS from landline on some phones), and a linux box.. And probably a bit of time stuff

[cfaussie] Re: Query picking up an odd value from somewhere

2006-09-26 Thread Joel Cass
My own take on it would be that there is an issue with your joins. You could either get rid of all the brackets and join each table sequentially,   IE.   SELECT FROM A INNER JOIN B ON A.ID = B.A_ID INNER JOIN C ON C.ID = B.C_ID   etc   OR grab tables and join in the where clause   S

[cfaussie] Re: Why buy into CF?

2006-09-13 Thread Joel Cass
Has anyone ever seen this? http://www.ignitefusion.com/ Or this http://www.railo.ch/en/index.cfm?treeID=105 Or this http://www.pcaonline.com/prod/index.cfm?loc=coral Lots of CF clones out there.. --~--~-~--~~~---~--~~ You received this message because you ar

[cfaussie] Re: Coldfusion Server problems

2006-09-11 Thread Joel Cass
There could be an issue with your connectors, since you can get non-cf pages You can try using the wsconfig (/bin/wsconfig.exe or /runtime/lib/wsconfig.jar) utility to remove and reinstall the connectors, just make sure IIS and CF are stopped first. -Original Message- From: cfaussie@goog

[cfaussie] Re: Coldfusion Server problems

2006-09-11 Thread Joel Cass
This looks like the generic page created by IE when a server cannopt be contacted Try accessing the site in a non-MS browser - you may get a different page Or try using telnet, or more easily wget to view the actual result We had this same issue but it turned out to be the cryptic 503 error men

[cfaussie] 503 error on IIS6

2006-09-11 Thread Joel Cass
Does anyone know what would cause a 503 error to appear on all CF pages? Does this sound familiar to anyone? We are using IIS6 and CF7 (standard) on a windows 2003 server. Looking at the resources, there was minimal processor activity and CF had only taken up about 70% of it's allocated memory. C

[cfaussie] Re: Why bother with sleep

2006-08-30 Thread Joel Cass
really what I am thinking about. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Chris Velevitch Sent: Thursday, 31 August 2006 2:52 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Why bother with sleep On 8/31/06, Joel Cass <[EM

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

2006-08-30 Thread Joel Cass
Ok, fair enough, I just don't think that it should be a function that is written into CF pages. As I mentioned before, it just seems to me like an easy way to make a CF server unavailable (if used unwisely). -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Beha

[cfaussie] Re: Why bother with sleep

2006-08-30 Thread Joel Cass
unction" within "CF".. I'm just taking the fundamentalist view on all this.. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Chris Velevitch Sent: Thursday, 31 August 2006 2:01 PM To: cfaussie@googlegroups.com Subject: [cfaussie]

[cfaussie] Re: SOT: Number of rows updated

2006-08-30 Thread Joel Cass
UPDATE. SELECT @@ROWCOUNT AS rows_updated -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Chris Silwedel Sent: Thursday, 31 August 2006 1:13 PM To: cfaussie@googlegroups.com Subject: [cfaussie] SOT: Number of rows updated Hi all, Is there a

[cfaussie] Re: Why bother

2006-08-30 Thread Joel Cass
;t see any here. I also disagree that thread.sleep() is not "what CF is made to do", but I can't really argue with your logic because you haven't really outlined why you feel this way. ...but each to his own. On 8/31/06, Joel Cass <[EMAIL PROTECTED]> wrote: > > A met

[cfaussie] Re: Why bother

2006-08-30 Thread Joel Cass
this process at any time without any significant impact on users. Just one example.. On 8/31/06, Joel Cass <[EMAIL PROTECTED]> wrote: > > Why are you using "sleep functionality"? All it does is lock up valuable > threads. I would seriously consider leaving the CF realm if a

[cfaussie] Re: Why bother

2006-08-30 Thread Joel Cass
Why are you using "sleep functionality"? All it does is lock up valuable threads. I would seriously consider leaving the CF realm if adobe ever went down the path of creating such tags to please the community.. What's next? or ? I guess these would be useful for load testing, but they can be done

[cfaussie] Re: Why buy into CF?

2006-08-29 Thread Joel Cass
Can someone please correct me if I am wrong, but.. I played around with RonR a few weekends ago and while it was quick to get a blog going, it seemed like it would be difficult to build a more complex application. Basically as far as I could see, RonR is good for getting raw data (yes, I know you

[cfaussie] Re: Session variable strangeness

2006-08-23 Thread Joel Cass
I am a little "old-school".. I jumped from CF 4.5 to MX a couple of years back and still have some old conventions lurking under the hood (kind of like an australian made vehicle).. But that's not the full picture Personally I find it cleaner to get variables like session and app/server variables

[cfaussie] Re: Web Service Stub Wierdness

2006-08-23 Thread Joel Cass
Yes I know it's slow. Supplied that you don't have to restart the server / application too often, it's not that much of an issue. It's a bit of a compromise, just to ensure that services are loaded before they are called. I still think adobe should have gone to the effort to create a web services

[cfaussie] Re: Web Service Stub Wierdness

2006-08-22 Thread Joel Cass
You could try putting this in your application.cfc/cfm to reload the apps on first launch: factory = CreateObject('JAVA', "coldfusion.server.ServiceFactory"); RpcService = factory.XmlRpcService; Mappings = RpcService.getMappings(); for (m in Mappings) {

[cfaussie] Re: CFECLIPSE search

2006-08-22 Thread Joel Cass
Well yes, actually it does.. Select "Working Set", click the "choose" button and create a new set. Choose your site folder to be included and optionally any other files (ie. components, settings files etc).. After the search is complete, you will be prompted to replace changes. Just click "repla

[cfaussie] Re: Session variable strangeness

2006-08-22 Thread Joel Cass
You should clear up your syntax, ie. A) use structkeyexists() for better speed and avoid using not as it creates ambiguity when more than one statement involved: show an error B) Avoid re-using session variables throughout the page: ...show an error ... -Or

[cfaussie] Re: CFECLIPSE search

2006-08-17 Thread Joel Cass
I just hold down CTRL-SHIFT-F and then enter in a string to replace ..Or am I just having another blond moment? Just in case I've understood what you're looking for: You can configure it by going to Window menu >> Preferences item >> General tree >>

[cfaussie] Re: Application.cfc and roles

2006-08-16 Thread Joel Cass
Oops.. Yes, I was replying to your gzip question.. I need a coffee.. or two Sorry everyone for the confusion.. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Andrew Scott Sent: Thursday, 17 August 2006 2:45 PM To: cfaussie@googlegroups.com Subject

[cfaussie] Re: Application.cfc and roles

2006-08-16 Thread Joel Cass
you're very busy or having a blonde moment? I think it is a blonde moment myself:-) 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 Joel

[cfaussie] Re: Application.cfc and roles

2006-08-16 Thread Joel Cass
s.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Cass Sent: Thursday, 17 August 2006 1:33 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Application.cfc and roles Oops.. there's a line that shouldn't be there.. see below --~--~-~--~~~-

[cfaussie] Re: Application.cfc and roles

2006-08-16 Thread Joel Cass
Oops.. there's a line that shouldn't be there.. see below -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Joel Cass Sent: Thursday, 17 August 2006 1:26 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Application.cfc and roles

[cfaussie] Re: Application.cfc and roles

2006-08-16 Thread Joel Cass
I just wrote this out of curiosity, based on Sun's docos: http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/Deflater.html I cannot get the unzip function working.. I think the way I am decoding strings is not the right way (I'm no java expert).. But it definately seems possible.. It's in Ja

[cfaussie] Re: OT: UML for eclipse

2006-08-16 Thread Joel Cass
t is good. Comes as a standalone program as well.On 15/08/06, Chris Velevitch <[EMAIL PROTECTED] > wrote:>> On 8/15/06, Joel Cass <[EMAIL PROTECTED]> wrote:> > Does anyone know of a really good UML IDE for eclipse? I've tried a few but> > am s

[cfaussie] Re: Getting Rid of FTP

2006-08-14 Thread Joel Cass
If they're text files you could compress them using gzip or java.util.zip (if you can get it working), and then send them using cfhttp post or better still, web services (CFC-based of course) But you need to write a lot of code to handle the files and you may have to deal with security issues and

[cfaussie] OT: UML for eclipse

2006-08-14 Thread Joel Cass
On the subject..   Does anyone know of a really good UML IDE for eclipse? I've tried a few but am still leaning towards using the offerings from MS in their visual studio package.. It would be good to find a good IDE that fits better with the UML standards..   Joel -Original Message-

[cfaussie] Re: Getting a list of tables in access

2006-08-10 Thread Joel Cass
iest thing in the world. Chad On 8/11/06, Joel Cass <[EMAIL PROTECTED]> wrote: > > Thanks.. > > Actually the transferring of data part is taken care of.. We have a system > where public users may want to upload their internal data in access format, > which is then transferred

[cfaussie] Re: Getting a list of tables in access

2006-08-10 Thread Joel Cass
to finish, including creating the queries. Chad On 8/11/06, Joel Cass <[EMAIL PROTECTED]> wrote: > > The documentation in MS access seems quite vague about this area. I want to > get a list of tables from an access database to import into our own custom > data store. I ha

[cfaussie] Getting a list of tables in access

2006-08-10 Thread Joel Cass
The documentation in MS access seems quite vague about this area. I want to get a list of tables from an access database to import into our own custom data store. I have fiddled around and have come to the conclusion that this is the query that must be run: SELECT MSysObjects.* FROM MSysObjects

[cfaussie] Re: Financial Year and Leap Year

2006-08-09 Thread Joel Cass
Shouldn't it be MOD 4 EQ 0 or % 4 = 0 I've taken note of the irregularity in case someone generates financial forecasts for the next 100 years and asks me why 1 cent is missing (And please don't take the present value of 1 cent in a hundred years time into account). -Original Mess

[cfaussie] Re: Chart Library

2006-08-08 Thread Joel Cass
Try jCharts: http://jcharts.sourceforge.net/ It's made for JSP but I am sure you could use some of their sample code to make a wrapper tag easily enough or use cfimport? hmm.. maybe. Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Dale Frase

[cfaussie] Re: OT: Video Streaming

2006-08-07 Thread Joel Cass
Have a look at this: http://www.coffeecup.com/video-player/ It will convert your movies to flash without you needing to get the entire flash suite and spend half a day mucking around.. Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Steve Onn

[cfaussie] Re: OT

2006-08-04 Thread Joel Cass
It sounds like it could easily be done in CF, or if you have a copy of VB handy, the FileStream object allows you to do this, it wouldn't take much time to write a little app. Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Scott Thornton Sent:

[cfaussie] Re: more rumours

2006-08-03 Thread Joel Cass
Yeah they're still about 10 years behind everyone else   Optus still use vignette.. ew.. -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf Of grantSent: Friday, 4 August 2006 3:18 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] more

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Joel Cass
 Ahh.. Now I know what you're doing.. I apologise.. You can set your return type to the component name/path..        -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf Of Dale FraserSent: Friday, 28 July 2006 3:08 PMTo: cfaussie@googleg

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Joel Cass
Try using a cfreturn tag..                     OR (with your component)     You should have a look at cfdocs and try a few things out before posting.. That's my opinion anyway     -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf

[cfaussie] Re: CF to ASP programmer wanted

2006-07-26 Thread Joel Cass
I think a lot of people on this list come from non-CF backgrounds and have a lot of experience in other languages. Before CF I loved making Java applets and MSAccess apps (it was a while ago), but CF is just easier, and in many ways more profitable to work with. You don't have to be "limited" to

[cfaussie] Re: CFLOCATION Issue

2006-07-26 Thread Joel Cass
o different servers being tested against? /charlie http://www.carehart.org/blog/client/ -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Cass Sent: Wednesday, July 26, 2006 7:12 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFLOCATION Is

[cfaussie] Re: CFLOCATION Issue

2006-07-26 Thread Joel Cass
to track down these sort of problems to make sure that all variants are accounted for. Perhaps you have. Just thought I'd throw this in there. /charlie http://www.carehart.org/blog/client/ -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel

[cfaussie] Re: CFLOCATION Issue

2006-07-26 Thread Joel Cass
No, there's no cfflush's anywhere However, there are some HTMLHead's in there - Still happens even after they are removed, however :( I'm starting to delve into issues with the ISAPI - It's on IIS6 and I am starting to think that may be a problem. However I have not found much at this stage. I

[cfaussie] CFLOCATION Issue

2006-07-25 Thread Joel Cass
I have never seen this issue before so I am putting it out there to see if anyone knows what might be happening.. It seems to be an issue with the tag. One computer follows it and the other does not. Two computers, Windows XP, same version of Internet Explorer (6.0.2900.2180.xpsp2_gdr.050301

  1   2   >