Coldfusion + .NET or J2EE

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Coldfusion + .NET or J2EE

    Since I have been reading the forums here I have often seen people post that
    Coldfusions new selling point is that it is a complement to .NET or J2EE. I am
    just starting to learn Coldfusion. I am a programmer with a descent amount of
    C++ experience and the object oriented aspects of .NET or J2EE appeal to me. To
    my question already... After I get Coldfusion down I would like to concentrate
    my efforts on learning .NET or J2EE. Obviously I would like the time that I
    have spent learning Coldfusion not to be a complete waste. So I am wondering
    what does CF complement better a .NET environment or a J2EE one?

    JakeFlynn Guest

  2. Similar Questions and Discussions

    1. ColdFusion in Oracle AS J2EE
      Platform: Linux (RHEL 3) I need help with deployment of ColdFusion as a J2EE app using an EAR file generated from the coldfusion-702-lin.bin...
    2. J2EE Enabled on ColdFusion Server
      I am trying to find an ISP that can host a ColdFusion MX 7 site on Win 2000 or Win 2003 The site needs J2EE Memory Variables enabled on the...
    3. coldfusion mx 7 for j2ee: tomcat won't stop
      Hi, I am running ColdFusion MX 7 for J2EE on Tomcat 5.0.28 on Red Hat Enterprise Linux 3 with Sun JVM 1.4.2_08. When I issue the shutdown...
    4. ColdFusion J2EE, serviceFactory goes away
      This is really winding me up, been fighting since Sunday. The symptom is that the site is fine for a few hours, and then all pages return a 500...
    5. How to use java (j2ee) classes with coldfusion
      Hi, I'm searching for information , examples about using java classes (jar, war, ear) with coldfusion (6 or 7). Is it very relevant using java...
  3. #2

    Default Re: Coldfusion + .NET or J2EE

    So I am wondering
    what does CF complement better a .NET environment or a J2EE one?

    Beyond doubt, a J2EE one.

    Obviously I would like the time that I
    > have spent learning Coldfusion not to be a complete waste
    It would not be if you go the j2ee route. CF runs atop a j2ee server and
    allows you to work interchanagbly with java code. You've heard of JSP and
    javaBeans, right? Well coldfusion, to me, is just an alternate (faster) way
    to write these parts of a j2ee application. Think of it like this, you have
    just written a java class that all sort so wonderful things, lets call it
    wonderfulThingDoer, here's how you can work in cf:

    <cfset wonderfulThing = createObject("java", "WonderfulThingDoer") >
    <cfset methodCallResult = wonderfulThing.someMethod() >

    Just a couple of lines of code (this could even be done in one line) and you
    have reached out into the land of j2ee/java. You can even use java tag
    libraries in cf pages, mix jsp with cf, forward to cf pages from servlets
    and have java variables available for use in said cf page, the list goes on
    and on. And that was in the last version of cf, I haven' even had chance to
    look at this versions java features.

    J2EE is made of many many API's (too many) - CF drastically simplifies a
    great deal of all this but does not in any way rule out access to any of it.









    "JakeFlynn" <webforumsuser@macromedia.com> wrote in message
    news:d0doct$8tc$1@forums.macromedia.com...
    > Since I have been reading the forums here I have often seen people post
    > that
    > Coldfusions new selling point is that it is a complement to .NET or J2EE.
    > I am
    > just starting to learn Coldfusion. I am a programmer with a descent amount
    > of
    > C++ experience and the object oriented aspects of .NET or J2EE appeal to
    > me. To
    > my question already... After I get Coldfusion down I would like to
    > concentrate
    > my efforts on learning .NET or J2EE. Obviously I would like the time that
    > I
    > have spent learning Coldfusion not to be a complete waste. So I am
    > wondering
    > what does CF complement better a .NET environment or a J2EE one?
    >

    gumshoe Guest

  4. #3

    Default Re: Coldfusion + .NET or J2EE

    Thanks for the reply!
    JakeFlynn Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139