ColdFusion MX - Nuts n Bolts

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default ColdFusion MX - Nuts n Bolts

    Hi guys,

    I'm trying to build a diagram of how Coldfusion works and it suddenly dawned
    on me that I'm not 100% sure. None of my doorstoppers (average size of a
    computer book these days is half a tree) have a model that explains it either.
    Anyway here is my erm ... best guess. Can you let me know if I'm way off base.

    Cheers Peter (aka lad4bear)

    1) Web use requests page
    2) Webserver checks the type of page being requested. If its a .cfm it passes
    the request to application server for processing
    3) Coldfusion checks to see if a compiled version of the page exists.
    4) If it does, Coldfusion execute the servlet (?)
    5) Coldfusion sends output to the webserver which in returns send the output
    to the web users browser.
    6) If it does not exist, Coldfusion parses the tags and uses this to write a
    servlet which is then compiled and executeed. Flow returns to 5

    Are Coldfusion and Application Server synonymous. I know the Markup language
    is a entity in its own right but is Coldfusion somehow independant of the
    Application server and if so, what is its role?

    Cheers, Peter (aka lad4bear)

    lad4bear Guest

  2. Similar Questions and Discussions

    1. Element Selection Going Nuts
      I just recently finished a 68 page catalog using ID CS V3.01. Job turned out great. Now the client wants to modify a few sections and create a new...
    2. HElp going nuts
      Ok, fairly new to flash, just made a pre loaded that seems to work just fine and dandy. My problem is that i'm trying to import my intro into the...
    3. Please help - this has been driving me nuts!
      Hi I am attempting to port a CDROM project to the web. The progress bar loads fine - and just before the movie kicks off - I get a dialog box...
    4. i'm going nuts
      hi, i'm new to php mysql and already have a problem with a simple routine $result=mysql_db_query(jcorp,"select count(*) as bar from users");...
    5. Driving me nuts
      tony kulik wrote: Just change if (!$modul == "") to if ($modul != "") ... operator precedence is probably causing some unexpected behavior there.
  3. #2

    Default Re: ColdFusion MX - Nuts n Bolts

    Your description is close enough for management use. :D

    Coldfusion can be considered an application server -- although technically
    it's not anymore. (Java is the server and CF is just a darn-useful meta
    language that sits on top of it).

    CF is slightly less than an app server and somewhat more than a good JSP
    library.

    Look in your CF docs. There are already diagrams available.

    -- MikeR

    MikerRoo Guest

  4. #3

    Default Re: ColdFusion MX - Nuts n Bolts

    Hi Mike,

    Thanks for getting back to me and your summary was very helpful.
    Apologies for the slow response but I don't check the boards so often
    these days.

    Thanks again and take care,

    Peter Hardy (aka lad4bear)

    lad4bear@hotmail.com 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