Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Peter Boughton
Try both, see which one you prefer. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Duane Boudreau
My suggestion would be .Net. If you go the c# route the code is pretty much identical to java. I'm not sure what your local market is like but on most job boards I have been on, the ASP.Net jobs seem to outnumber the java ones. In order to learn ASP.Net try taking one of the CF Apps you've

Records set in CFStruct

2009-08-12 Thread Matthew Allen
Can someone please point me to the right direction. I am returning two result sets from a single query (stored proc). When I CFDUMP query as in cfdump var=#returnStruct# i get the two record sets displayed below. The question is how do I use cfoutput to display the record set below; Thanks

RE: Records set in CFStruct

2009-08-12 Thread Adrian Lynch
cfset bothQueries = fnc_navigation(args go here) cfset thisIsOneQuery = bothQueries.rs_navsFrontEnd cfset thisIsTheOtherQuery = bothQueries.rs_navsAdmin cfdump var=#thisIsOneQuery# cfdump var=#thisIsTheOtherQuery# cfoutput query=thisIsOneQuery ... /cfoutput There are other ways, but

Re: Records set in CFStruct

2009-08-12 Thread Matthew Allen
Thanks Adrian works like a charm... cfset bothQueries = fnc_navigation(args go here) cfset thisIsOneQuery = bothQueries.rs_navsFrontEnd cfset thisIsTheOtherQuery = bothQueries.rs_navsAdmin cfdump var=#thisIsOneQuery# cfdump var=#thisIsTheOtherQuery# cfoutput query=thisIsOneQuery ...

Re: jQuery question

2009-08-12 Thread Dominic Watson
jQuery was not the problem here. CF knowing what to do with your post variables was. My personal preference is not to hit cfc's directly. Instead, I use a framework (ModelGlue, Fusebox, etc) for *every* request, be it an ajax one or anything else. My cfc method just knows that it gets given a

Re: jQuery question

2009-08-12 Thread Dominic Watson
That's not saying you should do what I do or that hitting the cfc directly is bad - just saying how I solve the problem you are having... However, is it absolutely neccessary for the cfc method to take a struct as its single argument? Could you define no arguments at all and use the arguments

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Peter Boughton
My suggestion would be .Net. If you go the c# route the code is pretty much identical to java. Uh... and if he goes the Java route the code is pretty much identical to C#. Although I wouldn't actually use identical; they're very similar but there *are* differences. Again, the best thing is

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Duane Boudreau
Sorry I was under the impression Chris was looking for opinions. -Original Message- From: Peter Boughton [mailto:bought...@gmail.com] Sent: Wednesday, August 12, 2009 10:06 AM To: cf-talk Subject: Re: .NET or JAVA? Which is a more natural step for a CF Developer My suggestion would

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jason Fisher
Actually, I run SQL 2005 Express on my Vista box at home for dev work, and it's actually been fine. SQL Express has its own problems (what do you mean I can't move data with it??), but that's not a Vista issue. ~| Want to

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Peter Boughton
Sorry I was under the impression Chris was looking for opinions. Well he was, but mine is that he probably shouldn't be - not unless he can verify that it is an objective and balanced opinion from someone with good experience of both. (Not wanting any of this to come across as offensive/etc)

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Mike Chabot
Both technologies would be substantial shifts from what a CF programmer is used to. Both .NET and Java benefit from having a college education in engineering / computer science, or the equivalent years of experience, since both are have high learning curves. Another technology to learn is Adobe

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Dominic Watson
One advantage of choosing Java will be a deeper understanding of CF - increasing your value as a CF developer at well as giving you a second language. Dominic 2009/8/12 Chris Johnson u...@askugg.com With the economy and market as it is, and with current employment's stability starting to

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Gerald Guido
+1 to what Peter Said. I recently converted a VB.net app to CF and I must say that I really took a shine to it. MS has an amazing tool set (as does Java for that matter) and I got comfortable in the environment rather quickly. ASP.net reminded me a lot of CF in some respects. The Code Behind

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Dave l
Lots of jobs doesn't = good paying jobs. Markets flooded with .net php devers don't pay crap and why should they when they have plenty of people who will take next to nothing. I was talking the other day with the head of a php shop and I think he sh*t himself when he looked through a few cfm

Re: jQuery question

2009-08-12 Thread Dave l
you can hit the cfc directly just fine and you did the right thing by setting the returntype in the call instead of in the cfc so you can reuse the cfc without returning just json. Are you sending a form or hard coded info? BTW~ jquery doesn't handle json very much, they have a getJson tag

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Phillip Vector
I'm watching this convo and I'm convinced that I need to learn some Flex. But I went to the adobe site and saw only Flex Builder and it's only good for 60 days. No developer edition that I could find. Is there something I am missing? Is there a way to install flex on my desktop and play around

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jochem van Dieten
On Wed, Aug 12, 2009 at 5:19 AM, Don L wrote: Mysql, sql lite, h2, derby = no install sql lite is eliminated for it's not a dbms but a c library for a dbm.  of the remaining 3, which one is most compatiable with ms sql server 2005 syntax and feature-wise? PostgreSQL. Supports silent

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Will Swain
AFAIK, Flex is free, and the it's the flex builder ide that costs. You could theoretically build your flex apps in a free ide and use the free compiler to compile them. I'm sure if that's wrong someone will correct me. Will -Original Message- From: Phillip Vector

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Phillip Vector
Any idea where I can find the free compiler? On Wed, Aug 12, 2009 at 7:44 AM, Will Swainw...@hothorse.com wrote: AFAIK, Flex is free, and the it's the flex builder ide that costs. You could theoretically build your flex apps in a free ide and use the free compiler to compile them. I'm sure

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Jake Churchill
If you are out of a job, Adobe is (or at least was) giving away flex builder for free. It's for learning purposes only so you can't actually use it for anything work related. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread C. Hatton Humphrey
I was curious what the group's thoughts were on the two above technologies and which would be easier/more natural to move into. First and foremost, a lot of the answer depends on the other language(s) you are familiar and comfortable with. If you cut your teeth on CF alone I don't know that

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Rob Parkhill
Flex SDK : http://www.adobe.com/products/flex/ http://www.adobe.com/products/flex/Rob On Wed, Aug 12, 2009 at 10:48 AM, Phillip Vector vec...@mostdeadlygame.comwrote: Any idea where I can find the free compiler? On Wed, Aug 12, 2009 at 7:44 AM, Will Swainw...@hothorse.com wrote: AFAIK,

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Jake Churchill
The SDK includes a compiler. You have to run it through the command line though. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent:

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Phillip Vector
If you can point me to where that is (or if you have the install file for it), it would be appricated because everywhere on the site that I am looking, it says that it is only for 60 days and I can't seem to find a developers version anywhere. On Wed, Aug 12, 2009 at 7:53 AM, Jake

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Jake Churchill
Here's a link to what and how you can get flex free from Adobe: https://freeriatools.adobe.com/ Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: Rob Parkhill [mailto:robert.parkh...@gmail.com]

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Phillip Vector
Ah. Didn't know it had a compiler. :) Thanks. On Wed, Aug 12, 2009 at 7:56 AM, Jake Churchillj...@cfwebtools.com wrote: The SDK includes a compiler.  You have to run it through the command line though. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE  68154

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Rob Parkhill
http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdktakes you to the SDK download. And yes, you have to compile through the command line. Rob On Wed, Aug 12, 2009 at 10:54 AM, Phillip Vector vec...@mostdeadlygame.comwrote:

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Phillip Vector
AWSOME! Thank you. :) On Wed, Aug 12, 2009 at 7:59 AM, Jake Churchillj...@cfwebtools.com wrote: Here's a link to what and how you can get flex free from Adobe: https://freeriatools.adobe.com/ Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE  68154

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Dave Watts
If you can point me to where that is (or if you have the install file for it), it would be appricated because everywhere on the site that I am looking, it says that it is only for 60 days and I can't seem to find a developers version anywhere. It's the first link on this page:

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Jake Churchill
I second this. I couldn't imagine learning flex without the tools flexbuilder provides. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday,

Re: coldfusion.sql.QueryTable error in CF8

2009-08-12 Thread Leigh
query recordset to a cf query. It is still working in cf7 but fails with: An exception occurred when instantiating a Java object. The class must not be an interface or an abstract class. the code used is cfset queryTable = CreateObject(java, coldfusion.sql.QueryTable).init( rs ) in

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
Actually, I run SQL 2005 Express on my Vista box at home for dev work, and it's actually been fine. SQL Express has its own problems (what do you mean I can't move data with it??), but that's not a Vista issue. Could you look up Windows Installer version from registry on your Vista box for

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Gerald Guido
There are other alternatives to Flex Builder 3 Flash Builder 4 (was Flex builder) is in Beta. It will probably drop during Max in Oct. http://labs.adobe.com/technologies/flashbuilder4/ There is a flexible at riaforge. http://flexible.riaforge.org/ There is another tool I ran into was

RE: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Will Swain
Thirded. Bear in mind the flash builder 4 beta is in labs: http://labs.adobe.com/technologies/flashbuilder4/ and might be for more than another 60 days! Will -Original Message- From: Jake Churchill [mailto:j...@cfwebtools.com] Sent: 12 August 2009 16:07 To: cf-talk Subject: RE: .NET

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Dave Watts
I was curious what the group's thoughts were on the two above technologies and which would be easier/more natural to move into. Well, they're actually pretty similar, so I'm not sure either would be easier or more natural than the other. If you use Java, that does have direct relevance to CF,

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Chris Johnson
Try both, see which one you prefer. I wish I had the time, money, and mental energy to do that, but I imagine getting my head around one new language/technology will be challenging enough :) I'm a bit of a slow learner, so I'm trying to pace myself and focus on this :)

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Dave Watts
I wish I had the time, money, and mental energy to do that, but I imagine getting my head around one new language/technology will be challenging enough :) Well, actually, I think you'll be pleasantly surprised by the similarity between C# and Java (and AS3, if you look at that too). The

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Chris Johnson
I suppose another factor is that I've never dealt with anything other than MS-related products on the operating system and server level. Always been on a Windows PC working with code running on IIS servers. IIRC, when I first investigated JAVA, one of the issues was my level of inexperience

Java Out Log

2009-08-12 Thread Rob O'Brien
I think I'm overlooking a setting somewhere. I'm running a Java library that I'm trying to debug. I've set the library to log this debugging information. All is well on my local machine, but not on the test box. Now, the output is done using Java's System.out.println() and on my local

RE: Java Out Log

2009-08-12 Thread Rob O'Brien
Remember that time I was 99% sure I was looking in the right place? Me either. I found the output in the ColdFusion log /coldfusion8/logs/cfserver.log Strange that the behavior (read; location) is different between boxes (Win/Linux?) Rob _ From: Rob O'Brien Sent:

RE: Java Out Log

2009-08-12 Thread brad
Strange that the behavior (read; location) is different between boxes (Win/Linux?) -- yeah, I don't know why it is different per OS. Mark Kruger has a good blog post on all the different log locations. http://www.coldfusionmuse.com/index.cfm/2005/6/23/coldfusion_logs

Re: ListLast equivalent in MS SQL

2009-08-12 Thread Richard Dillman
SELECT substring(email, charindex('@', email)+1, 255) as Domain FROM users Should get you there. On Fri, May 29, 2009 at 3:47 PM, Barney Boisvert bboisv...@gmail.comwrote: check the reverse, locate, and left functions. reverse it, find the delimiter, and then use left to strip off the

CF Based Calendar?

2009-08-12 Thread Paul Henderson
I have a client requesting an online calendar and since the portal I'm building them is entirely CF I'd like to provide a CF calendar as well (or one that integrates well with CF). Does anyone have any suggestions? The best one I've found so far is Ben Nadel's Kinky Calendar

Re: CF Based Calendar?

2009-08-12 Thread Tony Bentley
I would use google calendar and setup a form to collect the data and send it to google via the web service API. This way you don't need to build anything but the data collection form. The Jedi Master wrote the CFC for you already. Use the force

Re: CF Based Calendar?

2009-08-12 Thread John M Bliss
Other possibilities...? http://calendarinfusion.riaforge.org http://kalendar.riaforge.org http://tmt_calendar.riaforge.org On Wed, Aug 12, 2009 at 3:59 PM, Tony Bentley t...@tonybentley.com wrote: I would use google calendar and setup a form to collect the data and send it to google via the

RE: CF Based Calendar?

2009-08-12 Thread Nick Gleason
Hi there. We provide one (www.citysoft.com) but the calendar is a module within a larger enterprise suite. So, it would probably be hard to pull out that module without using some of the rest of the platform. N .

jquery grid problem

2009-08-12 Thread Rick Root
So I'm trying to use a grid component - either jqGrid of flexigrid. Both seem very nice. But both expect the JSON data to be returned in a specific format.. Example... flexigrid is looking for an object containing page total and rows where rows is an array. So my cfc does this: cfset

cftable query

2009-08-12 Thread vidya yegnaraman
Hi, I am a newbie to coldfusion. I have a code that has to write some data to an excel sheet. Below is the code snippet for it. CFHEADER NAME=Content-Disposition VALUE=attachment; FILENAME=test.xls CFCONTENT TYPE=application/msexcel cftable query = sql startRow = 1 colSpacing = 3 colheaders

RE: cftable query

2009-08-12 Thread Mark Kruger
I suspect you won't get much help with this. I've never seen CFTABLE used to produce Excel content - although under the hood it produces HTML so I guess why not. Still, I think most of us (myself included) would suggest a different method with more control over formatting ... Like creating HTML

Re: jquery grid problem

2009-08-12 Thread Dominic Watson
You can use array notation for your structure keys here. So: cfset LOCAL.retVal.page = 1 Becomes: cfset LOCAL.retVal['page'] = 1 Using array notation in this only way AFAIK to force the case of your keys (CF will uppercase them otherwise). Dominic 2009/8/12 Rick Root

Re: jquery grid problem

2009-08-12 Thread Dominic Watson
Also, and this is kind of redundant, there is a mime type for json: application/json. So, if you're feeling particularly anal, you can do: cfcontent type=application/json reset=yes... Dominic 2009/8/12 Dominic Watson watson.domi...@googlemail.com You can use array notation for your structure

Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Jose Diaz
Hi Chris I had a similar issue a while back and went down the C# route, I also started a site which I have to admit I have let slip somewhat that compares CF syntax to C#.net http://www.cfdot.net Hope this helps. Jose Diaz On Wed, Aug 12, 2009 at 5:21 PM, Chris Johnson u...@askugg.com wrote:

Re: cftable query

2009-08-12 Thread Dave l
The only person I could think of to help you out here would be Will T. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cftable query

2009-08-12 Thread vidya yegnaraman
Thanks Mark, I used html table and that worked I suspect you won't get much help with this. I've never seen CFTABLE used to produce Excel content - although under the hood it produces HTML so I guess why not. Still, I think most of us (myself included) would suggest a different method with more

Re: CF Based Calendar?

2009-08-12 Thread Larry Lyons
I have a client requesting an online calendar and since the portal I'm building them is entirely CF I'd like to provide a CF calendar as well (or one that integrates well with CF). Does anyone have any suggestions? The best one I've found so far is Ben Nadel's Kinky Calendar

RE: cftable query

2009-08-12 Thread Mark Kruger
Cool...glad I could help. -Mark -Original Message- From: vidya yegnaraman [mailto:viduka...@gmail.com] Sent: Wednesday, August 12, 2009 4:45 PM To: cf-talk Subject: Re: cftable query Thanks Mark, I used html table and that worked I suspect you won't get much help with this. I've

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Jason Fisher
Looks like it's still Vista SP1, Home Premium Edition. No clue what version of the Installer is in place. There are no entries in those keys that are specific to the installer itself, at least not on my OS. ~| Want to reach

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
Looks like it's still Vista SP1, Home Premium Edition. No clue what version of the Installer is in place. There are no entries in those keys that are specific to the installer itself, at least not on my OS. Good to know, thanks. Those two registry branches are pretty standard for XP

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
On Wed, Aug 12, 2009 at 5:19 AM, Don L wrote: Mysql, sql lite, h2, derby = no install sql lite is eliminated for it's not a dbms but a c library for a dbm.  of the remaining 3, which one is most compatiable with ms sql server 2005 syntax and feature-wise? PostgreSQL. Supports

Re: jquery grid problem

2009-08-12 Thread Rick Root
On Wed, Aug 12, 2009 at 5:07 PM, Dominic Watsonwatson.domi...@googlemail.com wrote: Also, and this is kind of redundant, there is a mime type for json: application/json. So, if you're feeling particularly anal, you can do: cfcontent type=application/json reset=yes... Ah, see, my

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Emmit Larson
Out of curiosity, after all the problems you have had with MSSQL Express and all the alternatives that have been offered. Are you going to continue to use MSSQL Express? Or will you try using one of the alternatives? Best Regards. Emmit On Wed, Aug 12, 2009 at 6:27 PM, Don L do...@yahoo.com

Re: (ot) sql server 2005 express sp3 installation onto vista os

2009-08-12 Thread Don L
FYI, a) Project deadline is days away. One should probably not to change horse while crossing a river (of course another could argue should you really need to cross the river?) b) The randomly reported error may not accurately reflect sql server 2005 express sp3 installation success or

RE: CF Based Calendar?

2009-08-12 Thread Paul Henderson
As far as I know the only calendar control CF8 has is cfcalendar which allows you to select and input a date into a form. I'm looking to output a calendar display. If there are other built-in calendar functions that I'm unaware of, that would be great?!? Thanks for all the suggestions. what