Feb 28 at 6:00pm EST.
I think anyone can join the Acrobat Connect Room(from anywhere in the
world)
and the session will also be recorded so you can watch again.
http://tjordahl.blogspot.com/2008/02/blazeds-presentation-feb-28-2008.ht
ml
Ahamad
Blog to discuss about ColdFusion 8
http://tjordahl.blogspot.com/2008/02/blazeds-presentation-feb-28-2008.ht
ml
Ahamad
http://www.siia.net/codies/2008/finalists.asp
Best Web Services Solution
• Adobe ColdFusion 8, Adobe Systems, Inc.
• Bluewolf Integrator , Bluewolf
• Force.com, Salesforce.com
• Workbench, SOA Software, Inc.
• WebLayers Center, WebLayers, Inc.
In case there is a need to switch from an external web server to the built-in ColdFusion web server, you can acheive this without reinstalling.
Switch from an external web server to the built-in web server
This file is in the cf_root\runtime\servers\default\SERVER-INF directory in Windows, and in the cf_root/runtime/servers/default/SERVER-INF directory in UNIX.
<service class="jrun.servlet.http.WebService" name="WebService"> <attribute name="port">8500</attribute> <attribute name="interface">*</attribute> <attribute name="deactivated">false</attribute> ... </service>
<service class="jrun.servlet.jrpp.JRunProxyService" name="ProxyService"> <attribute name="activeHandlerThreads">8</attribute> <attribute name="minHandlerThreads">1</attribute> <attribute name="maxHandlerThreads">1000</attribute> <attribute name="mapCheck">0</attribute> <attribute name="threadWaitTimeout">20</attribute> <attribute name="backlog">500</attribute> <attribute name="deactivated">true</attribute> ...
This is a new function added in CF8, this function determines whether an array element is defined. This returns true, if the array element is defined (exists); false, otherwise.
ArrayIsDefiend(array,elementIndex)
| Parameter | Description |
|---|---|
| array | Name of a one dimensional array, or the array name and indexes into higher-order dimensions of a multidimensional array. |
| elementIndex | Index of the element in a one dimensional array, or the index of the element in the final dimension of a multidimensional array. |
To test the existence of an element in a multidimensional array, specify all but the last dimension of the array in the first parameter. For example, the following line tests the existence of element MyArray[2][4][1]:
ArrayIsDefined(MyArray[2][4], 1)
<h3>ArrayIsDefined Example</h3> <!--- Create a sparse new array. ---> <cfset MyArray = ArrayNew(1)> <!--- Populate an element or two. ---> <cfset MyArray[1] = "Test"> <cfset MyArray[3] = "Other Test"> <cfoutput> <!--- Display the contents of the array. ---> <p>Your array contents are: <cfdump var="#MyArray#"></p> <!--- Check if an existing element is defined. ---> <p>Does element 3 exist?: #ArrayIsDefined(MyArray, 3)#</p> <!--- Check if a non-existent element is defined. ---> <p>Does element 2 exist? #ArrayIsDefined(MyArray, 2)# </cfoutput>
More details and how to get your ColdFusion server updated can be found on this link:
http://www.adobe.com/support/security/bulletins/apsb07-19.htmlYou can now purchase the hardcopies of CF8 doc set on the Adobe store
The docs are also available online at free sources .