Re: [flexcoders] Question

2006-06-07 Thread Nando




Offering an argument from the other end of the spectrum, Java is free,
but Java developers aren't, and development in Java often takes a *lot*
longer than in CF. And you don't necessarily need a CF Enterprise
license to develop in CF or to put an app in production. The Standard
license is much less, i believe something like $1200, Developer version
of CF is free, and there are plenty of hosting options available to fit
any budget.

In the long run, developing an app in Java can be MUCH more expensive
than doing it in CF. That $7000 can easily become a drop in the bucket,
so to speak, in certain circumstances. If you need the low level
capabilities of Java for something, you can always drop down into Java
to write them. When you don't, then CF development usually is much
faster for a developer with comparable skills, especially these days
with the set of frameworks that have been developed for CF ... Reactor,
ColdSpring, Model-Glue, Fusebox, etc.

Bottom line, depending on the application, you can use both Java and
ColdFusion on a CF server and reap the benefits of both. Rapid
development with CF, and low level functionality with Java on the
(mostly rare) occasions when you need it. 

Kelly @ Dekayd Media Inc. wrote:

  
  

  

  
  
  
  ColdFusion
compiles to Java and it doesn’t
offer all the features of Java.
   
  It also
costs about $7000 per enterprise
license (last time I checked).
   
   
  Java is free.
   
   
   
  As for any
of the other competitors I
cannot say.
   
   
   
   
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brendan Meutzner
  Sent: Wednesday, June
07, 2006
4:59 PM
  To: flexcoders@yahoogroups.com
  Subject: Re:
[flexcoders] Question
  
   
  
  
  
  So how about we take this off on a tangent a
bit...
why would I use Java instead of ColdFusion or vice versa?  The floor is
open...  My apologies if this has already been discussed, but I don't
remember seeing anything.
  
  
  
  
  On
6/7/06, Tracy
Spratt <[EMAIL PROTECTED]>
wrote:
  
  
  
  
  
  
  Yes.
  Tracy
   
  
  
  
  From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
  On Behalf Of [EMAIL PROTECTED]
  Sent: Wednesday, June
07, 2006
5:13 PM
  
  
  
  To: flexcoders@yahoogroups.com
  Subject:
[flexcoders]
Question
  
  
  
   
  
  
  
  
  Does Flex
and Java work
well together
  
  
  
  
  
  
  
  
  
  
  
   
  
  
  
  
  

  



-- 


Aria
Media Sagl
CP 234
6934 Bioggio
Switzerland
www.aria-media.com








Re: [flexcoders] grief with Flexbuilder2 CF FB extentions

2006-06-06 Thread Nando




Try unzipping the extensions and then point the installer to the
unzipped folder. That worked for me at least.

Barry Beattie wrote:

  ( flex plug-in 2.0.340 for existing eclipse 3.1 install )

installing the CF "super wizard"

following the instructions to install it from
http://www.dcooper.org/blog/client/index.cfm?mode=entry&entry=3A035639-4E22-1671-53EDEEE1CAA496A4

it breaks down between these two steps

7. Ensure that the ColdFusion Flex Builder feature is selected, and
then click Finish.
8. Select the check box next to "CF_FBExtensions_B3_0515.zip", and
then click Next.

"No features found on the selected site(s). Choose a different site or
site category"

and it stops.

any idea what might be wrong?

thanx


 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



  



-- 


Aria
Media Sagl
CP 234
6934 Bioggio
Switzerland
www.aria-media.com








Re: [flexcoders] Error - ColdFusion/Flex Application Wizard

2006-05-28 Thread Nando




Hi Bill,
thanks for responding.

> Are there any fields in the tables which are the basis for the
Users_MasterDetail object that are not numeric, date, or string in
nature? Can you tell me ... ?

Nope. It's a MySql 4.0 DB. 

CREATE TABLE `User` (
  `userId` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(20) default NULL,
  `password` varchar(20) default NULL,
  `firstName` varchar(20) default NULL,
  `lastName` varchar(20) default NULL,
  PRIMARY KEY  (`userId`)
) TYPE=MyISAM;

Now what i've done in the meantime is download the latest build of the
App Wizard ... i had one dated the 28th of April, now the zip is dated
15th May.

I got it to work against a few simple forms. I did have to touch the
UserDAO for some really odd reason, changing :

insert into User(username, password, firstName, lastName)
        values (

to :

insert into User(
    username, 
    password, 
    firstName, 
    lastName)               
        values (

Then it started working.

After i added a little complexity, more forms with ComboBoxes that had
selects driven from a query, it's not generating the app properly any
more again. :-(

I'm getting a 404 on main.html when i try and run it. 

I'm going to back up one step at a time and see if i can get it to work
again on a simpler version. I suspect the combo box queries, because
i've given it 2 attributes in the query, the id and the name, like you
would in an HTML select. I don't know if the generator is sophisticated
enough to know how to handle that.

Bill Sahlas wrote:

  
  


  
  
  First, it
means that the wizard didn’t
complete generating all the files needed for the application.  Even
though
there are references to the
“generated.views.masterdetail:Users_MasterDetail”
in the navigation.mxml file, it wasn’t created for some reason.  To
figure that out we can look at what tables and column data types are
being
referenced. Are there any fields in the tables which are the basis for
the
Users_MasterDetail object that are not numeric, date, or string in
nature? Can
you tell me what the data structures look like (generated sql scripts)?
   
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nando
  Sent: Saturday, May
27, 2006 3:46
PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders]
Error -
ColdFusion/Flex Application Wizard
  
   
  I keep
getting an error
when trying to use the app wizard in Beta 3:
  
Severity    Description   
Resource    In Folder   
Location    Creation 
Time    Id
2    Definition
com.com.generated.views.masterdetail:Users_MasterDetail 
could not be found.    navigation.mxml    
TimeTrax/src/com/generated/views/navigation    line
6    May 27, 2006 
9:30:41 PM    20
  
Can someone point me in the right direction?
  
thanx,
Nando
  
  
  
  

  
  



-- 


Aria
Media Sagl
CP 234
6934 Bioggio
Switzerland
www.aria-media.com








[flexcoders] Error - ColdFusion/Flex Application Wizard

2006-05-27 Thread Nando



I keep getting an error when trying to use the app wizard in Beta 3:

Severity    Description    Resource    In Folder    Location    Creation 
Time    Id
2    Definition com.com.generated.views.masterdetail:Users_MasterDetail 
could not be found.    navigation.mxml    
TimeTrax/src/com/generated/views/navigation    line 6    May 27, 2006 
9:30:41 PM    20

Can someone point me in the right direction?

thanx,
Nando









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.