[cfaussie] Re: CFC extends attribute

2006-02-20 Thread Mark Mandel
I wrote this on my blog about different ways to deploy cfc's in a coldfusion app. Part of what it covers is hard coding typing and extends, you may find it useful: http://www.compoundtheory.com/?action="">However, to point, there is no 'real' way of making it more dynamic, as it currenty stands,

[cfaussie] Re: WebDu Who's going ?

2006-02-21 Thread Mark Mandel
I wish I was, but I'm not :o(MarkOn 22/02/06, M@ Bourke [EMAIL PROTECTED] wrote:It's one week till day zero, so who from the list is going this year? \m/(-_-)\m/-- E: [EMAIL PROTECTED]W: www.compoundtheory.comICQ: 3094740 --~--~-~--~~~---~--~~ You received this

[cfaussie] Re: Datasource to Oracle

2006-03-16 Thread Mark Mandel
Scott,That is totally the case.However you can hook up to Oracle using JDBC and/or ODBC drivers depending on what you need.http://www.compoundtheory.com/?action="" I wrote that ages ago, so it may be out of date, but it should give you the gist of what you need if you want to do it.MarkOn 3/17/06,

[cfaussie] Re: Call Java Class

2006-03-19 Thread Mark Mandel
URLClassLoader:http://weblogs.macromedia.com/cantrell/archives/2004/06/loading_class_f.cfmMark On 3/20/06, Dale Fraser [EMAIL PROTECTED] wrote: Doh,That's a pain, thanks Andrew.RegardsDale Fraser -Original Message- From: cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com] On

[cfaussie] Re: Call Java Class

2006-03-19 Thread Mark Mandel
Can we get the full error?MarkOn 3/20/06, Dale Fraser [EMAIL PROTECTED] wrote: Gets an error.The error occurred in D:\Tools\Web\test.cfm: line 2927 :28 :cfif NOT Arguments.isMetadata29 :cfset class = Arguments.Object.getClass()30 :cfelse 31 :cfset class = Arguments.Object-- E: [EMAIL PROTECTED]W:

[cfaussie] Re: Call Java Class

2006-03-20 Thread Mark Mandel
Can we see the Java Code?I'm running out of ideas why this isn't working for you...MarkOn 3/20/06, Dale Fraser [EMAIL PROTECTED] wrote:Error Occurred While Processing RequestIceKey The error occurred in D:\Tools\Web\test.cfm: line 2927 :28 :cfif NOT Arguments.isMetadata29 :cfset class =

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-20 Thread Mark Mandel
want to get it working for CF. The main three methodsSet Set KeyEncrypt Encrypt DataDecrypt Decrypt DataRegardsDale Fraser -Original Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Mark Mandel Sent: Tuesday, 21 March 2006 09:08 AM To: cfaussie

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-20 Thread Mark Mandel
to that effect.MarkOn 3/21/06, Dale Fraser [EMAIL PROTECTED] wrote: Hey,I'm no Java guru, but I don't see a constructor class or init method in thisfunction.RegardsDale Fraser -Original Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Mark Mandel Sent

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-20 Thread Mark Mandel
] On Behalf Of Mark Mandel Sent: Tuesday, 21 March 2006 15:50 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Call Java Class (Java Code Attached) You will need to do - createObject(java, IceKey).init(javaCast(1, init)); Which will insure the parameter passed to the constructor is an actual int

[cfaussie] Re: query of query error CF7

2006-03-29 Thread Mark Mandel
What sort of data is in the query?MarkOn 3/30/06, Gavin Cooney [EMAIL PROTECTED] wrote: I have some code that worked fine in CF 6.1 but doesn't work in CF7.I try to do a simple query of query like this cfquery name=qFilteredSpList dbtype=querySELECT *FROMqSpListWHEREcourse_type = cfqueryparam

[cfaussie] Re: CFUG Melbourne

2006-04-26 Thread Mark Mandel
I'm not so fussed if it's in St Kilda. Quite frankly, I'm not that fussed at to where CFUG melbourne really is, as long as it continues running, and provides quality content. There is a heap of free parking down on Blessington St if VTR is the option. Mark On 4/27/06, Steve Onnis [EMAIL

[cfaussie] Re: CFUG Melbourne

2006-04-26 Thread Mark Mandel
- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Mark Mandel Sent: Thursday, April 27, 2006 11:14 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFUG Melbourne I'm not so fussed if it's in St Kilda. Quite frankly, I'm not that fussed at to where CFUG

[cfaussie] Re: Where have all the CF developers gone?

2006-05-04 Thread Mark Mandel
Robin, I had no idea you had positions in melbourne? There doesn't seem to be a huge amount of opportunity in Melbourne as opposed to other cities (Sydney, Brisbane) for CF positions. When I was looking for a new job ~ 2-4 months ago, I was scrounging to find CF development positions. It was

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Mark Mandel
CF is just a syntax - I'd be more interested in application design sort of questions - Things like DB modelling, object handling (if you use OO), general use of MVC, etc. Questions like 'given problem A, how would you model it with maintenance in mind', 'if performance became a huge priority,

[cfaussie] Re: How do myQuery[columnName] ?

2006-05-21 Thread Mark Mandel
The only thing I'd be worried about here is certain JDBC drivers returning null from a getString(), which can cause a bit of havoc with CF variables if you aren't looking out for it. But a good technique never the less. Mark On 5/22/06, Patrick Branley [EMAIL PROTECTED] wrote: dunno. but

[cfaussie] Re: CFUG Melbourne Meetings

2006-05-23 Thread Mark Mandel
Apologies for the late response - Just wanted to have a check on who is coming down to the meeting on the 22nd of June (That is the right date isn't it Steve?) I'm going to be writing a presentation and small example app for Transfer, and show off some of it's bells and whistles for that night

[cfaussie] Re: CFUG Melbourne Meetings

2006-05-24 Thread Mark Mandel
... What is 'Transfer'? B) Mark Mandel wrote: Apologies for the late response - Just wanted to have a check on who is coming down to the meeting on the 22nd of June (That is the right date isn't it Steve?) I'm going to be writing a presentation and small example app for Transfer

[cfaussie] Re: javaCast string array

2006-06-05 Thread Mark Mandel
For creating Java typed arrays, java.lang.reflect.Array is your friend - http://java.sun.com/j2se/1.4.2/docs/api/java/lang/reflect/Array.html Enjoy. Mark On 6/6/06, Taco Fleur [EMAIL PROTECTED] wrote: Thanks, I gave that a go, but no luck, its expecting java.lang.String[] The ArrayList

[cfaussie] Re: javaCast string array

2006-06-05 Thread Mark Mandel
off the top of my head - stringClass = createObject(java , java.lang.Class).forName(java.lang.String); Array = createObject(java, java.lang.reflect.Array); stringArray = Array.newInstance(stringClass, 10); Array.set(stringArray, 0, mystring); //set first position Enjoy, Mark On 6/6/06, Rod

[cfaussie] Re: SQL Injection in CF

2006-06-07 Thread Mark Mandel
What issues have you hit with cfqueryparam Joel? I've also been using it since 4.5, and have never really hit a wall with it. I'm curious to know what your problems have been? Regards, Mark On 6/8/06, Joel Cass [EMAIL PROTECTED] wrote: Because there has been some issues with the

[cfaussie] Re: ZeroOne and Adobe Australia/Pacific: Developer Community talks via Breeze

2006-06-15 Thread Mark Mandel
Any chance to get more details on the presentation entitled: Leverage the power of Java in CF It sounds interesting. Regards, Mark On 6/16/06, Kai Koenig ( ZeroOne ) [EMAIL PROTECTED] wrote: Hi all, just slightly OT: ZeroOne in Wellington, NZ is hosting a series of community talks via

[cfaussie] Re: ZeroOne and Adobe Australia/Pacific: Developer Community talks via Breeze

2006-06-15 Thread Mark Mandel
. Cheers Kai -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Friday, 16 June 2006 12:58 p.m. To: cfaussie@googlegroups.com Subject: [cfaussie] Re: ZeroOne and Adobe Australia/Pacific: Developer Community talks via Breeze Any

[cfaussie] Re: Saving Images into Database

2006-06-20 Thread Mark Mandel
Save them to disk? Or does that sound too simple? :D Mark On 6/21/06, Scott Thornton [EMAIL PROTECTED] wrote: Hello, I use CFX_PUTIMAGE to save images into my database. I find it very slow. Is there any alternatives? -- E: [EMAIL PROTECTED] W: www.compoundtheory.com ICQ: 3094740

[cfaussie] Re: Enforcing Array Uniformity

2006-06-21 Thread Mark Mandel
If you want to do this, you should write a Collection.cfc for that specific CFC type. So if I wanted a collection of dogs, I would have a DogCollection.cfc, that had methods like: add(dog : DOG) remove(dog : DOG) has(dog : DOG) getArray() : Array etc Mark On 6/22/06, Scott Arbeitman [EMAIL

[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Mark Mandel
, the 22nd of June, at VTR Consulting starting at 7:00pm. VTR Consulting has moved and is now located at Level 2, 212 Barkly Street, St Kilda. Special guest presenter Mark Mandel, will be giving us all a run down on his open source project Transfer Object Relational Mapping library

[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Mark Mandel
I can't talk on behalf of Steve, but I would like to see this conversation kept going - a) Where is better location for you guys? Getting to St Kilda from the city is really not a huge deal I would have thought - take the Tram straight down St Kilda Rd to Carlisle St and a short walk from there.

[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Mark Mandel
To that point actually Darren, If you ever want me to do a presentation on Transfer, just let me know where and when. I'll probably have to get you to setup a Breeze type broadcast up to you guys, as I'm in Melbourne, and I don't tend to fly around too much ;o) Ditto goes for Sydney, and any

[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Mark Mandel
it was a good start and I hope to have such meetings on regular basis and might be contributing to it at some point. Best regards, Dmitry Yakhnov Web Developer http://www.yakhnov.info/ -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel

[cfaussie] Re: Billing question for contractors ...

2006-06-22 Thread Mark Mandel
I never charge for my lunch break, because in my mind I'm not working. So I'm totally with you on that one. It is a fair question tho' Mark On 6/23/06, Mike Kear [EMAIL PROTECTED] wrote: Question for those contracting on hourly rates do you bill your clients for lunchtime if you are

[cfaussie] Transfer presentation slides up

2006-06-22 Thread Mark Mandel
For anyone who is interested, I just put up the slides from my Transfer presentation I did last night at the Melbourne CFUG. Blog Post : http://www.compoundtheory.com/?action=displayPostID=127 Direct Link : http://www.compoundtheory.com/?action=transfer.presentation Hope you find them

[cfaussie] Re: Override CFMX mapping

2006-06-27 Thread Mark Mandel
Only on BlueDragon. Mark On 6/28/06, James Silva [EMAIL PROTECTED] wrote: Hi, Does anyone know if it's possible to override a CF mapping (for a specific app only)? cheers, James. -- E: [EMAIL PROTECTED] W: www.compoundtheory.com ICQ: 3094740

[cfaussie] Re: OT: - .NET sucking the life out of me

2006-07-03 Thread Mark Mandel
Time to move to Melbourne? They are really struggling down here to find quality ColdFusion expertise. I actually JUST got off the phone from a recruiter. Mark On 7/4/06, Joel Cass [EMAIL PROTECTED] wrote: Make coldfusion process .net files aswell as .cfm files, then rename all your .cfm

[cfaussie] Re: Victorian ColdFusion Design and Development User Group Meeting

2006-07-12 Thread Mark Mandel
Sounds like I'll finally get to meet you Chad and Dale - About time considering how often I've seen you both on CFAussie :oDSee you next week!MarkOn 7/13/06, Steve Onnis [EMAIL PROTECTED] wrote: Our next scheduled meeting for the Victorian ColdFusion Design and Development User Group will

[cfaussie] Re: Frames

2006-07-12 Thread Mark Mandel
Dude.. you're using Frames? That's so Web 1.0... ;o) (Sorry, someone had to say it) Mark On 7/13/06, Lindsay Evans [EMAIL PROTECTED] wrote: On 7/13/06, KNOTT, Brian [EMAIL PROTECTED] wrote: Does anyone know how to correctly use JavaScript to target frames within frames. I'm presently

[cfaussie] Re: SOT: Frameworks - cfsick

2006-07-13 Thread Mark Mandel
If you are going to get into ORM's - also take a peek at Transfer (mine) - http://www.compoundtheory.com/transfer/ ObjectBreeze - http://www.objectbreeze.com/ (Yeah I know, blatant plug... so sue me :o) ) Mark On 7/13/06, Barry Beattie [EMAIL PROTECTED] wrote: Hi Jeremy as you know,

[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-20 Thread Mark Mandel
Scott - Is there a way you could 'recycle' your objects? So you start with a pool of whatever you need, when you need one, you grab one out of the pool. When you are done, you reset the object back to its original state, and then recycle() it back into the pool for reuse. How does that idea

[cfaussie] Re: TONIGHT : Victorian ColdFusion Design and Development User Group Meeting

2006-07-20 Thread Mark Mandel
Just wanted to say - Great meeting last night guys!Great presentations from both Dale and Chad, and a good turnout.Can't wait till next month.Mark On 7/20/06, Steve Onnis [EMAIL PROTECTED] wrote: Our next scheduled meeting for the Victorian ColdFusion Design and Development User Group

[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-21 Thread Mark Mandel
Scott - Have you experimented with turning off the trusted cache via the ServiceFactory, or the CFAdmin API? When the user submits a new page with a cfinclude, you could turn off the trusted cache, hit the page with a CFHTTP to the page you changed, and then turn it back on. (You could do this

[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-21 Thread Mark Mandel
Then write scheduled task that looks for modified files every 15 minutes, and if it finds one, then it turns off the trusted cache, hits the page, and then turns it back on. It's a small overhead, and let your users know that updates occur every 15 minutes, due to caching - which provides a

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
Having a chat this morning, a good idea came up - Anyone got any connections to any Universities? Taking over a lecture hall for a few hours in the evening could be a nice possibility. This would be especially nice if the Uni is in the city. Just a thought, Mark On 7/28/06, George [EMAIL

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
say I do. It would bbe good if you guys can find a venue in the city. Personally I don't have any locations to use. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
Yeah, I figured that would be the case... So scrap that idea. I agree, CIty would be best. I can't believe nobody has an office we can take over for the evening... :/ Mark On 7/28/06, Dale Fraser [EMAIL PROTECTED] wrote: You could count me out. RMIT would be ideal, inner city location,

[cfaussie] Re: variables.instance

2006-07-27 Thread Mark Mandel
The only difference dale is that some people (myself included) like to place all their instance variables inside a struct found on the variables scope - more often than not variables.instance. This makes life easy when looking to push / pull a bunch of them on or off the object, as the variables

[cfaussie] Re: variables.instance

2006-07-27 Thread Mark Mandel
Exactly. Mark On 7/28/06, Dale Fraser [EMAIL PROTECTED] wrote: Ok, So just to clarify for everyone. Cause it wasn't clear to me. variables IS private to a CFC, it just contains other CFC object related into. Here's a sample that will make it easy to understand. Test.cfm

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Mark Mandel
Because init doesn't 'return this;' MarkOn 7/28/06, Dale Fraser [EMAIL PROTECTED] wrote: test.cfm cfset test = createObject(component, Test).init() / cfdump var=#test# / Test.cfc cfcomponent cffunction name=init access=public output=false cfset

[cfaussie] Re: Adobe website

2006-07-31 Thread Mark Mandel
Fine here too. Maybe it's time you got off the dialup Steve ;o) Mark On 8/1/06, Scott Barnes [EMAIL PROTECTED] wrote: Nope, it runs terrible as for some reason it won't allow me free access to all the software heh. Ummm, works fine by my standards - mind you, QR's proxy server is slow so

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
In theory, this could probably work, however you need to realise that CFC's are not 'regular' Java Objects, they may well be accepted by the code you are referring to, but I doubt they could pass across, at a Java Level, the complex state that they contain. You may have to write your own CFC -

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
Andrew, CFC's are not serialisable, so all you get back is a WDDX packet that describes the CFC, not its current state. Mark On 8/9/06, Andrew Scott [EMAIL PROTECTED] wrote: Mark, Thanks but the code I use also allows for wddx, so if it was to return this, it would be serialised as a wddx

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Wednesday, 9 August 2006 11:02 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Quick question Andrew, CFC's are not serialisable, so all you get back is a WDDX packet that describes

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Wednesday, 9 August 2006 11:11 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Quick question Exactly. I ran a quick test: This is the CFC I created: cffunction name=init hint

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
would be visible in the object. Regards Dale Fraser http://dale.fraser.id.au -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Wednesday, 9 August 2006 11:33 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Quick

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Wednesday, 9 August 2006 11:55 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Quick question No, He requested that 'this' be returned, i.e. the object itself. He said nothing

[cfaussie] Re: Quick question

2006-08-08 Thread Mark Mandel
calling methods didn't work so obj.getThing() throws a NullPointer, *but* #obj.thing# Does work... Mind you - in that case, why not just pass through a struct? Mark On 8/9/06, Andrew Scott [EMAIL PROTECTED] wrote: Mark, how did you try to get the property info? Senior Coldfusion

[cfaussie] Re: Coldfusion Actionscript

2006-08-09 Thread Mark Mandel
I think your blog software dropped the word 'cfscript' ;o) Mark On 8/10/06, Dale Fraser [EMAIL PROTECTED] wrote: Just posted a blog entry on using Actionscript with ColdFusion. http://dale.fraser.id.au/blog/index.cfm/2006/8/10/Coldfusion-Action-Script I'd be interested if people on

[cfaussie] Re: CFECLIPSE search

2006-08-22 Thread Mark Mandel
My other favourite is to do a search... then manually delete from the search the items you don't want, then hit the replace button - and do it that way. Mark On 8/23/06, Joel Cass [EMAIL PROTECTED] wrote: Well yes, actually it does.. Select Working Set, click the choose button and create a

[cfaussie] Re: Why buy into CF?

2006-08-29 Thread Mark Mandel
You know, something I was just thinking of now - Thinking 'corporate' style - the fact that CF is NOT open source means that if anything goes wrong with CF itself, you have somewhere to go where you are guarenteed service. Not the case with RoR. Or true of any OS software. Just a thought - but

[cfaussie] Re: Why buy into CF?

2006-08-30 Thread Mark Mandel
From what I'm reading Barry - your argument comes down to one simple question - If RonR can pretty much do everything CF can do, and it's free - why would a company pay the extra dollars? Would the be correct? Mark On 8/31/06, Barry Beattie [EMAIL PROTECTED] wrote: Barry, I was talking

[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Mark Mandel
Btw all - I got told today if we want to do CFUG meetings here (Raglan St, Sth Melbourne) Would people like tha as a venue? Mark On 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Yeah The next one we'll go hard into CF/Flex and then intro into FDS. FDS is really cool but complex.

[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread Mark Mandel
A.. always the party pooper with the logical standpoints and the factual evidence ;o) Yeah, that is a fair call... Maybe if we get it running, we can do a quick 'hey... check this out' at the end? (Sorry.. getting excited over new tech) Mark On 9/1/06, Dale Fraser [EMAIL PROTECTED]

[cfaussie] Re: Last nights usergroup meeting

2006-09-04 Thread Mark Mandel
I'm yet to hear approval from Steve Steve? Mark On 9/5/06, Dale Fraser [EMAIL PROTECTED] wrote: Steve / Mark? So is it a done deal? Regards Dale Fraser http://dale.fraser.id.au -- E: [EMAIL PROTECTED] W: www.compoundtheory.com

[cfaussie] Re: Code Counting

2006-09-05 Thread Mark Mandel
Sounds like you would need a specific coldfusion one... shouldn't be hard to write up with some regex's and the like. But no, I don't know anything in particular off the top of my head - sorry! Mark On 9/6/06, Dale Fraser [EMAIL PROTECTED] wrote: Number of lines of code Number of lines of

[cfaussie] Re: Using CFCProxy

2006-09-06 Thread Mark Mandel
How are you loading your test Java case? Is it in the CF Classpath? Mark On 9/6/06, Scott Arbeitman [EMAIL PROTECTED] wrote: I never thought I would need to do this, but I need to invoke ColdFusion components from inside Java (and I will invoke the Java code in ColdFusion). I've written

[cfaussie] Re: Why buy into CF?

2006-09-06 Thread Mark Mandel
For your SME clients - stupid cheap CF hosting - It is meant to be quite good too, if you do a google search on it - http://www.hostingatoz.com/ Just to throw that in. Mark On 9/7/06, Sean Bucklar [EMAIL PROTECTED] wrote: Forget your mega budget push from Microsoft, I'm still

[cfaussie] Re: OT: Best development laptop?

2006-09-07 Thread Mark Mandel
But you can write on it! and make it flat to read stuff on it... I tell you.. it's cool... (I feel like I'm not going to win this one) Mark On 9/8/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Man a 14.1 monitor, uuh, Programmer please,... I have never been a mac guy, But the idea of

[cfaussie] Re: Java and gzip

2006-09-08 Thread Mark Mandel
Andrew, If you want a Binary string - just use a java.io.ByteArrayOutputStream rather than a FileOutputString. http://java.sun.com/j2se/1.4.2/docs/api/java/io/ByteArrayOutputStream.html Mark On 9/8/06, Andrew Scott [EMAIL PROTECTED] wrote: This was posted awhile ago as a solution to

[cfaussie] Oracle Case Sensitive SQL?

2006-09-11 Thread Mark Mandel
I didn't think Oracle was, but it's the only thing that is making sense atm - I've got some unit tests for Transfer, and I'm trying to get it working with Oracle, and I can't work out why it isn't. I keep getting errors like: -- [Macromedia][Oracle JDBC Driver][Oracle]ORA-00942: table or view

[cfaussie] Re: Compressing the output to the browser via CF

2006-09-11 Thread Mark Mandel
Try something like this: cfcontent type=text/html variable=#fileout.toByteArray()# Not sure if text/html is right, but you want binary data, not string data. Mark On 9/12/06, Andrew Scott [EMAIL PROTECTED] wrote: Ok I thought I was onto a beginning here by getting coldfusion to

[cfaussie] Re: Compressing the output to the browser via CF

2006-09-12 Thread Mark Mandel
. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile : 0404 998 273 From: cfaussie@googlegroups.com [mailto: [EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Tuesday, 12 September 2006 3:05 PM To: cfaussie@googlegroups.com Subject

[cfaussie] Re: createobject() class not found

2006-09-13 Thread Mark Mandel
to demonstrate what JSch can do. Please refer to '/examples/README' file. Cheers, Adam -Original Message- From: Mark Mandel [mailto:[EMAIL PROTECTED] Sent: Thursday, 14 September 2006 11:55 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: createobject() class not found

[cfaussie] Re: Outputting to Excel - how to incorporate styles

2006-09-13 Thread Mark Mandel
I always thought you could use regular old CSS, as long as you embedded it in the document... I'm sure I did this before at a previous job... but now I can't remember... Mark On 9/14/06, Dale Fraser [EMAIL PROTECTED] wrote: Just use normal html I think Ie table border=1 tr

[cfaussie] Re: Multiple Level Inheritance

2006-09-18 Thread Mark Mandel
Barry - I don't think he's talking about multiple inheritence - which can't be done in CF. He's talking about a scenario where inheritence goes up more than one level. I just didn't want to get the issue confused. Regards, Mark On 9/19/06, Barry Beattie [EMAIL PROTECTED] wrote: yes Dale,

[cfaussie] Re: Help with a Oracle issue

2006-09-26 Thread Mark Mandel
()#' It all works fine. Something is holding onto a weird binding...? any ideas? Mark On 9/27/06, Mark Mandel [EMAIL PROTECTED] wrote: Hey all, Oracle is giving me a weird issue, and I thought I would try here.. as I know we have some Oracle users. The issue is providing some small

[cfaussie] Re: Help with a Oracle issue

2006-09-26 Thread Mark Mandel
WHERE sequence_name = '#arguments.object.getTable()#' It all works fine. Something is holding onto a weird binding...? any ideas? Mark On 9/27/06, Mark Mandel [EMAIL PROTECTED] wrote: Hey all, Oracle is giving me a weird issue

[cfaussie] Re: coldfusion class files

2006-09-27 Thread Mark Mandel
Grant, I'm sorry to say, it's just not that easy. The generated class files are only part of the whole picture - you still need the underlying ColdFusion engine to make them run. You can deploy a coldfusion application (including .cfm files) on a J2EEserver, as a war or a ear archive - which

[cfaussie] Re: coldfusion class files

2006-09-27 Thread Mark Mandel
http://www.adobe.com/support/coldfusion/j2ee/cfmx7j2ee_home.html Mark On 9/28/06, grant [EMAIL PROTECTED] wrote: ok, thanks Mark, are you saying I could dev in CF and then run the app from an war/ear - completely independently of the CF architecture? On 9/28/06, Mark Mandel [EMAIL PROTECTED

[cfaussie] Re: cfdebugger

2006-10-08 Thread Mark Mandel
Does anyone know if the FD supports mixins? Mark On 10/9/06, Charlie Arehart [EMAIL PROTECTED] wrote: Jeremy, there are known instances where breakpoints may not fire. The good news is that it's not a bug in the product, but either simply a setup issue or CF optimizing the code such that

[cfaussie] Re: Image Manipulation

2006-10-11 Thread Mark Mandel
I tend to roll my own with Java :D So I can feel 733+ Mark On 10/12/06, Dale Fraser [EMAIL PROTECTED] wrote: Alagad http://www.alagad.com/index.cfm/name-aic Regards Dale Fraser http://dale.fraser.id.au From: cfaussie@googlegroups.com

[cfaussie] Re: Image Manipulation

2006-10-12 Thread Mark Mandel
for HotJava, etc. but I'm still looking. Have you done something similiar before? On 10/12/06, Mark Mandel [EMAIL PROTECTED] wrote: In all honestly, I'm quite comfortable with Java that I can build pretty much anything I need out of it... it's 'Generic' for me as it is. Here are some

[cfaussie] Re: Image Manipulation

2006-10-12 Thread Mark Mandel
Its also a question of where your knowledge is at It takes me 10 minutes to roll my own Java image manipulations. If you have no knowledge of Java, then that $75 is going to be a very valuable investment in the case of your time. Mark On 10/12/06, Dale Fraser [EMAIL PROTECTED] wrote: For

[cfaussie] Re: VIC UG

2006-10-16 Thread Mark Mandel
Maybe Dale - when you come back - do a MAX conference roundup for us? That'd be cool! Mark On 10/16/06, George Lu [EMAIL PROTECTED] wrote: It'll be good if we can get Max update at the meeting :) On 16/10/06, Dale Fraser [EMAIL PROTECTED] wrote: Ahh Dam, At Max next

[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread Mark Mandel
Where is the 6) @m $up3r 733+ C0lfU$!n [EMAIL PROTECTED] I'm waiting for that one...before I even consider anwering any questions (and then I'm going to pick number 4) Mark On 10/17/06, Andrew Scott [EMAIL PROTECTED] wrote: Barry, I think 98% of us are going to answer number 5. Senior

[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread Mark Mandel
Well.. actually.. you are right.. http://www.google.com/trends?q=kittens%2C+Coldfusion%2C+OO%2C+off+shore+outsourcingctab=0geo=alldate=all Mark On 10/17/06, Darren Tracey [EMAIL PROTECTED] wrote: If you look at this one, you'll see that we should all get into these 'jobs' things. They seem

[cfaussie] Re: Et tu, Coldfusion

2006-10-17 Thread Mark Mandel
Dale, Still got the problem? I have no idea about JMS, but was curious to know if you fixed it. Mark On 10/17/06, Dale Fraser [EMAIL PROTECTED] wrote: Hi, Been banging my head on a brick wall trying to work out why some of our java applications stopped working, specifically due to

[cfaussie] Re: Et tu, Coldfusion

2006-10-17 Thread Mark Mandel
. Regards Dale Fraser http://dale.fraser.id.au -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Wednesday, 18 October 2006 09:21 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Et tu, Coldfusion Dale, Still got

[cfaussie] Re: Isn't Robin a girl?

2006-10-17 Thread Mark Mandel
No.. just merry. Mark On 10/18/06, Barry Beattie [EMAIL PROTECTED] wrote: wot? no comments of Robin H*, Men In Tights sheesh! everyone must be asleep. * Hood, Hilliard, you choose. On 10/18/06, Andrew Muller [EMAIL PROTECTED] wrote: Nah He's a bot... On 18/10/06, Dale

[cfaussie] Re: Colfusion Design and Development User Group Meeting : FLEX and MAX

2006-10-29 Thread Mark Mandel
. On arrival, if the doors are locked please call Mark Mandel on 0410528694 or Steve Onnis on 0401667996 and either one can let you in. Regards Steve Onnis Victorian CFUG Manager -- E: [EMAIL PROTECTED] W: www.compoundtheory.com

[cfaussie] Re: For anyone interested in Cairngorm

2006-11-02 Thread Mark Mandel
Thanks for that! Btw, great presentation last night! Mark On 11/3/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: A couple of useful links. http://labs.adobe.com/wiki/index.php/Cairngorm http://www.cairngormdocs.org/ ( catch my new blog series here ;) Regards, Bjorn

[cfaussie] Re: java classpaths etc etc

2006-11-29 Thread Mark Mandel
of CF7 Ciao Andrea skateboard.com.au wrote: Hey Mark Thanks, I'll give that a read and see how I go. cheers Drew -Original Message- From: Mark Mandel [EMAIL PROTECTED] To: cfaussie@googlegroups.com Date: Wed, 29 Nov 2006 16:12:10 +1100

[cfaussie] Re: java classpaths etc etc

2006-11-29 Thread Mark Mandel
a jar that uses a different version of log4j that cf uses. I do not have access to modify the package name it calls. cheers Drew -Original Message- From: Mark Mandel [EMAIL PROTECTED] To: cfaussie@googlegroups.com Date: Thu, 30 Nov 2006 09:33:44 +1100 Subject: [cfaussie] Re: java

[cfaussie] Re: java classpaths etc etc

2006-11-29 Thread Mark Mandel
Message- From: Mark Mandel [EMAIL PROTECTED] To: cfaussie@googlegroups.com Date: Thu, 30 Nov 2006 10:01:07 +1100 Subject: [cfaussie] Re: java classpaths etc etc Why not - Have you newer version of log4j.jar sitting where you want it, and then go - paths = ArrayNew(1); paths[1

[cfaussie] Re: java classpaths etc etc

2006-11-30 Thread Mark Mandel
their properties etc. The problem is that the API I load always goes to the coldfusionmx/lib directory to invoke org.apache.log4j.Logger. Not the one I load with your classloader. thanks anyway cheers Drew -Original Message- From: Mark Mandel [EMAIL PROTECTED

[cfaussie] Re: java classpaths etc etc

2006-12-03 Thread Mark Mandel
Andrea - What do you mean by 'loading all the java libraries' ? You will still have access to all the core java libraries with the workaround I have mentioned, all you are doing is removing access to the CF classpath, which is all the jars that are loaded with the CF install, and I can't see

[cfaussie] Re: Why XHTML?

2006-12-05 Thread Mark Mandel
Honestly - My main reason for using XHTML is because it is SO much easier to do any sort of Ajax/DHTML scripting with a nice clean DOM. Also with a cleaner document structure I find doing maintenance on the display layer a breeze, as opposed to the rigmarole I've gone through for regular ol'

[cfaussie] Re: large xml file problem

2006-12-05 Thread Mark Mandel
Have a look at StAX for situations like this: http://www.google.com.au/search?hl=ensafe=offq=java+staxbtnG=Searchmeta= Mark On 12/6/06, Toby Tremayne [EMAIL PROTECTED] wrote: Hi All, I have a problem reading a large file. It's an xml file which I need to be able to parse and

[cfaussie] Re: large xml file problem

2006-12-06 Thread Mark Mandel
like just what I need. I'm having some trouble getting it to work though, do you have any references to a working cf implementation? Toby On 06/12/2006, at 13:42 , Mark Mandel wrote: Have a look at StAX for situations like this: http://www.google.com.au/search?hl=ensafe=offq=java

[cfaussie] Re: large xml file problem

2006-12-06 Thread Mark Mandel
the woodstox project) it worked fine. Very handy tool. Toby On 07/12/2006, at 9:00 , Mark Mandel wrote: Sorry mate, I've never actually tried it.. I know there was a cfdj article on it, you could go hunting that out. If I can get hold of the author, I'll see if he has any code you can look

[cfaussie] Re: (shakes fist at) adobe.com

2006-12-06 Thread Mark Mandel
www.cfquickdocs.com On 12/7/06, Scott Thornton [EMAIL PROTECTED] wrote: Download the CFML reference in pdf format and never go back. I believe its called cfmx61_cfml_reference.zip Suppose there may be one for actionscript... [EMAIL PROTECTED] 07/12/2006 10:53:00 am For a company that

[cfaussie] Re: json in js code

2006-12-06 Thread Mark Mandel
I'm not totally up to speed on json, but doesn't it have to be eval() 'd ? Mark On 12/7/06, Mark Ireland [EMAIL PROTECTED] wrote: Can I use stuff from a json string like this? var s = 'something'; for (var j in myjson.RECORDCOUNT) { var id = myjson.DATA.MYVARIABLE[j]; chk =

[cfaussie] Re: json in js code

2006-12-06 Thread Mark Mandel
Oh okay... guess I wasn't be helpful then ;o) I'll go back to what I was doing :oD Mark On 12/7/06, Andrew Scott [EMAIL PROTECTED] wrote: Mark, It depends on the data, but usually it is something like this if an label value array? JSonData['Label'].value Andrew Scott

[cfaussie] Re: Melbourne CFUG Drinks

2006-12-06 Thread Mark Mandel
a different night? Mark On 12/7/06, Stephen Davey [EMAIL PROTECTED] wrote: Hi Steve, I have other xmas parties I have already committed to on those nights, so sorry I can not make it. Maybe next time. Thanks anyway. Stephen Davey. -Original Message- From:

  1   2   3   4   5   6   >