Thursday, April 10, 2008

AMP Goes Live!

 

Announcing the new Adobe Media Player!

 

Adobe Media Player (AMP) is a next-generation desktop media player and management application. It provides high quality video playback of streamed, downloaded, or locally stored Internet TV shows and video podcasts.

 

Users can subscribe to Internet television shows and other online video content, have them download automatically in the background, and later view them on demand. AMP's user interface optimizes the user experience, allowing users to easily enjoy finding and viewing their favorite shows.

 

Download AMP today, play with it, and then tell your friends about this exciting new product.

 

 

Below are some of the key things that you and your friends and family will enjoy:

 

- All of your favorite content, all in one place. Create your own personalized catalog of television shows, movies, podcasts – even include videos from your local hard drive.

- Discover new content. Adobe Media Player features a broad catalog of shows from the leading media companies and networks, as well as independent producers.

- Watch what you want, when you want – anytime, anywhere. Adobe Media Player supports both online and offline viewing.

- High-quality audio and video. HD-quality video is supported in Adobe Media Player, even at full-screen resolutions.

- Simple user interface. Adobe Media Player is designed to be intuitive and easy to use.

- Let content come to you.  Adobe Media Player automatically downloads new episodes of shows or podcasts that you subscribe to.

 

http://get.adobe.com/amp/ 

 

  

Friday, April 4, 2008

ColdFusion 8.0.1 is out!

The ColdFusion 8.0.1 bits are live. The updater codenamed as "Gemini" can be downloaded immediately from
 
 
ColdFusion 8 Update 1 (CF 8.0.1) has some minor bug fixes and it also adds support for new operating systems(including 64bit) and some extended functionality (attributeCollection).
 
 
 
 

Monday, February 18, 2008

what is flex?

A simple definition to "what is flex" would be: Flex is a way to make/create SWF files!
 
Flex is a way to create SWF files that run in Adobe Flash Player. It is a development paradigm that compiles to SWF. It really is that simple but often we make the definition much harder. Just like Flash can create SWF files, so can Flex, but the way you develop is completely different.
 
Flex is built for developers and not for animators; it has been written for software developers and the paradigm matches the development methodology you already know. If you know Java, C, C++, C#, Delphi, VB, PHP, ColdFusion, Python, Ruby, you can learn Flex with little effort. The goal when Flex was created was to make a development paradigm that developers could learn easily matching the methodology they already know yet create SWF files for Flash Player (and now AIR). Flex has classes, components, a compiler, a debugger, class libraries, and uses XML (MXML) for declarative markup of components. The ActionScript programming language is based on ECMAScript 4 (the language standard behind JavaScript) and has full support for the ECMA XML scripting standard E4X. It also has most of the UI components that you already use ( like button, list, datagrid, combobox, and tree) but it also supports containers like HBox, VBox, TabNavigator, TitleWindow and many others. If you have written software before you can learn Flex easily. Better still is that Flex is compatible with all HTTP servers, version control systems, and any server side programming language, so the knowledge you have of servlets, php, ASP.net, or JSP is really handy. Flex just lets you program the client side in a paradigm you already know and understand.
 
Flex is built for making applications... rich client side application behavior. It has not been built for making web pages, banner ads, or server side logic it has been built for creating client-side applications that run over the Internet talking to remote servers. Flex has been used to make some really great apps like Buzzword (Document Editor like Microsoft Word but in the web), Picnik (Photo Editor/Manager for touching up your best snapshots), Oracle Sales Prospector (An enterprise ERP application.) The real key is that these examples provide an application experience just like desktop software that run on the web (Adobe Flash Player) and on the desktop (Adobe AIR)

In summary, Flex is a development paradigm that allows you to write software for the web and desktop that many people can use compatibly today. It leverages the tools, servers, and development models that you already know and allows you to write the next generation of software compatibly.
 
Another definition would be: A development platform that is revolutionizing how the world writes and deploys software!

PDF output in XML format

Using ColdFusion 8 you can extract data from a PDF form and in XML format.

 

To get the output of a PDF file to an XML format, you can use the “read” action of the cfpdfform tag, as shown in the following example:

 

<cfset sourcefile = "#ExpandPath('../formsamples/UpdatedApplication.pdf')#">
<cfpdfform source="#sourcefile#" action="read" xmldata="mydata">
</cfpdfform>
<cfdump var = "#mydata#">

 

Advantages: To save disk space, you can delete the PDF file and maintain the data in a XML data file.

 

Keep the blank PDF form of the source file, you can use the populate action to regenerate the PDF file.

 

 

Tuesday, February 5, 2008

ColdFusion 9 Survey

Hi,
 
As a part of the research for Centaur (ColdFusion 9) , we have created these two surveys . 
 
Adobe ColdFusion Survey
 
Platform and Vendor Support
 
Please take some time out to fill up the surveys.
 
 
Thanks,
-ahamad 
 

Monday, December 3, 2007

ColdFusion 8 Cumulative Hot Fix 2 Available

The  second ColdFusion 8 cumulative hot fix pack has been released. This hot fix contains the 7 fixes from hot fix 1, plus 14 additional fixes.
 

Tuesday, October 2, 2007

Live update from Max by prayank

Prayank is doing some live blogging, putting up lot of pics, check it out here...

http://prayank.net/flexblog/

 

Friday, September 21, 2007

Using DDX for PDF manipulation in ColdFusion 8

While DDX is nothing new to Adobe, it is new to ColdFusion with the latest release of Adobe ColdFusion 8. DDX is an XML document definition that was originally created for Adobe LiveCycle Assembler and is used to describe documents.  DDX elements are used to represent PDF pages, comments, bookmarks, and styled text.

ColdFusion 8 ships with a scaled-down edition of the LiveCycle Assembler that can process a subset of the total DDX definition. In this article, we will look at some of the possibilities with DDX and how its addition to ColdFusion has given developers new tools and capabilities for creating and manipulating PDF documents....

Read the complete tutorial here...

http://www.stage.adobe.com/devnet/coldfusion/articles/ddx_pdf.html

 

Monday, September 17, 2007

Simple TOC example

I am posting here a simple Table Of Contents(TOC) example using cfpdf.
 
The DDX File
==========================
<?xml version="1.0" encoding="UTF-8"?>
<DDX xmlns="http://ns.adobe.com/DDX/1.0/"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd">
   <PDF result="Out1">
      <TableOfContents maxBookmarkLevel="infinite" bookmarkTitle="Table of Contents" includeInTOC="true">
      </TableOfContents>
      <PDF source="Doc1"/>
      <PDF source="Doc2"/>
   </PDF>
</DDX>
 
The CFM File
==========================
<cfset ddxfile = ExpandPath('ddxfiles/toc.ddx')>
<cfset sourcefile1 = ExpandPath('inputfiles/ddx_test1.pdf')>
<cfset sourcefile2 = ExpandPath('inputfiles/ddx_test2.pdf')>
<cfset destinationfile = ExpandPath('results/ddx_result-toc.pdf')>
 
<cfset inputStruct=StructNew()>
<cfset inputStruct.Doc1="#sourcefile1#">
<cfset inputStruct.Doc2="#sourcefile2#">
 
<cfset outputStruct=StructNew()>
<cfset outputStruct.Out1="#destinationfile#">
 
<cfpdf action="processddx" ddxfile="#ddxfile#" inputfiles="#inputStruct#" outputfiles="#outputStruct#" name="ddxVar">
 
<cfoutput>#ddxVar.Out1#</cfoutput>

Tuesday, September 11, 2007

CF8 Chf1 and CFMX 7.02 CHF3 are now available

 
The first hotfix for CF8 is out. 
 

CHF8000001 - http://www.adobe.com/go/kb402466

 

 

Also out is the  CFMX 7.02 CHF3

 

CHF7020003 - http://www.adobe.com/go/kb402465

 

 

Check it out...

 

Friday, September 7, 2007

JRun 4 Updater(beta)

Adobe is recruiting CF Customers for the beta program for the new JRun 4 Updater (updater 7).

Sign up here

https://prerelease.adobe.com/callout/default.html?callid=%7b046DAD6A-D2F3-47E5-A745-E1C9F38570DA%7d

This updater has

- hotfixes released since U6

- synchronizes with changes made in JRun for the ColdFusion 8 release.(updates to wsconfig to support 64-bit Solaris)

etc...

 

Thursday, August 23, 2007

CF 8 livedocs

Here is a link to CF 8 livedocs on the adobe home page.
 
 
 

Tuesday, August 7, 2007

Delete a file after cfpdf flatten...

Sometime back we had seen this post...
---------------------------------------
I've just downloaded ColdFusion 8 beta and have been playing with the cfpdf tag.
I've been using it to populate some interactive .pdfs and then "flatten" them so they're read-only.
The code looks something like this:
   
    <cfpdf action="write" source="#sourcefile#" destination="#destinationfile#" flatten="yes">

It all works fine except it appears that ColdFusion locks the destination file
and it can't be deleted or changed in any way until I restart the CF8
application server service.  Anyone have any experience working with cdpdf? 
Thanks in advance.
Clint
---------------------------------------
 
This has been fixed and the lock on the file has been released.

 
 

Creating PDF Forms eSeminar on August 9 - Free

This is a free seminar on Creating PDF Forms.
 
If you are interested...  Please register. 
 

Monday, August 6, 2007

toBinary Support for cfpdf var

toBinary(ob) now supports CFPDF variables too. It will return byte[] of the underline pdf.
 
Use case: If the user wants to save pdf in db as blob from the memory variable of CFPDF and needs byte[] out of the name variable.
 
Here is an example showing how it can be used.
 
<cfpdf action="read" source="source1.pdf" name="mypdf">
 
<!---
Convert to binary Data.
--->
<cfset binaryData = toBinary(mypdf)>
 
<cfdump var="#binaryData#">
 
<!---
Should still be able to Perform actions on original data.
--->
<cfpdf action="deletepages" pages="3" source="mypdf" name="newmypdf">
 
<cfpdf action="write" source="newmypdf" destination="desti.pdf" overwrite="yes">
 
<!---
code to write into the database and get it back.
--->
<!---
Convert the variable which you have got from the database back the binary to pdf file.
--->
<cfpdf action="write" source="binaryData" destination="desti-fromBinary.pdf" overwrite="yes">
 
<!---
Should be able to Perform actions on binary data.
--->
<cfpdf action="deletepages" pages="1-10" source="binaryData" name="newBinarymypdf">
 
<cfpdf action="write" source="newBinarymypdf" destination="desti-newBinary.pdf" overwrite="yes">
 
<cfoutput><br><br><br>Done...</cfoutput>

Thursday, August 2, 2007

Continuing ColdFusion 8 Ship Coverage - 2

 

 

News Articles

1. Adobe Serves Up ColdFusion 8 - SD Times [Full Text]

 

2. Adobe Releases ColdFusion 8 – Application Development Trends [Full Text]

 

Additional Postings:

- ENT News: http://entmag.com/news/article.asp?EditorialsID=8892

- Redmond Developer News: http://reddevnews.com/news/article.aspx?editorialsid=8892

 Redmond Magazine: http://redmondmag.com/news/article.asp?EditorialsID=8892

 

3. Round-Up of Adobe Announcements Last Week - ZDNet Blogs [Full Text]

 

4. Adobe ColdFusion 8 Released – Techwhack India [Full Text]

 

5. Adobe Ships ColdFusion 8 for Web Developers – Digital Arts [Full Text]

 

Additional Posting:

- Reseller News: http://reseller.co.nz/reseller.nsf/news/BFA1B5970A19CEC6CC257328007E667D

 

6. Adobe Ships ColdFusion 8 – ITBusiness.ca [Full Text]

 

7. Adobe ColdFusion Links to AIR – PC World (InfoWorld reprint) [Full Text]

 

8. Adobe ColdFusion Links to AIR – Computerworld (InfoWorld reprint) [Full Text]

 

9. Adobe ColdFusion Links to AIR – ARNnet (InfoWorld reprint) [Full Text]

 

10. Adobe Ships ColdFusion 8 – ZDNet Asia (ZDNet UK reprint) [Full Text]

 

11. Adobe ColdFusion 8 ships in the UK – PC Advisor UK (Macworld UK reprint) [Full Text]

 

_______________________________________________

 

Full Text of Articles

 

_______________________________________________

1. Adobe Serves Up ColdFusion 8

SD Times

Date: July 30, 2007

Byline: Jeff Feinman

http://www.sdtimes.com/article/LatestNews-20070715-45.html

 

In the middle of the summertime heat, Adobe Systems is offering a way for developers to cool down with today's announcement of the general availability of Adobe ColdFusion 8, a tool for building dynamic Web sites and Internet applications.

 

ColdFusion 8 allows developers to integrate ColdFusion applications with other Adobe technologies such as Flex, PDF, Adobe Integrated Runtime and Adobe LiveCycle. The new version supports .NET, Windows Vista and JBoss integration. It also uses AJAX-based components to design and deploy applications.

 

Adobe officials said that since May, more than 14,000 developers have participated in the ColdFusion 8 public beta.

 

_______________________________________________

2. Adobe Releases ColdFusion 8

Application Development Trends

Date: July 30, 2007

Byline: John K. Waters

http://www.adtmag.com/article.aspx?id=21049

 

Adobe Systems is set to release a new version of its ColdFusion software development environment today (July 30). ColdFusion 8 provides an expanded set of tools and technologies aimed at developers building dynamic Web sites and rich Internet applications (RIAs).

 

ColdFusion 8 (code named "Scorpio") is the first release of the 12-year-old solution as an Adobe product, and there's a lot of interest in it among the installed customer base. Adobe acquired the technology when it purchased Macromedia in 2005. The public beta of the product has been available on the Adobe Labs Web site for several months, and the San Jose, Calif.-based company is reporting more than 14,000 downloads since May.

 

"This release is about Adobe's DNA being injected into a tested and proven way of building Web apps," said Tim Bruntel, senior product marketing manager for ColdFusion. "Traditionally, people relied on ColdFusion to build applications with static HTML front ends. In version 8, we've introduced the idea of a richer user experience of the content created by a ColdFusion application."

 

ColdFusion combines an application server with a rapid application development environment designed to integrate databases and Web pages. It employs its own scripting language, the ColdFusion Markup Language (CFML), which is similar to JavaServer Pages, C#, and PHP, and uses tag-based syntax like HTML.

 

This release introduces a slew of new features to the product, but the loudest buzz is being generated by its .NET integration. As a Java-based solution, ColdFusion has long allowed developers to invoke Java objects natively; the new version adds the ability to invoke .NET objects natively.

 

ColdFusion 8 includes a new Server Monitor feature, which lets developers identify bottlenecks and tune the server for better performance. It supports seamless integration of ColdFusion apps with other Adobe technologies, such as Flex, PDF, Adobe Integrated Runtime (AIR) and Adobe LiveCycle. Also, this release uses AJAX-based components to allow developers to design and deploy applications by integrating complex environments into intuitive interfaces.

 

This release also provides expanded support for the leading Java EE application servers, including IBM WebSphere, BEA WebLogic and JBoss.

 

"ColdFusion is a classic example of a niche tool," observed Gartner analyst Mark Driver. "The existing market is very entrenched, and it plateaued several years ago. But there's a lot of code written in ColdFusion (CFML), and companies don't have a good reason to rewrite it. Plus, many organizations have a lot of ColdFusion skills in-house, and they don't want to retrain their people."

 

Driver expects the new release to generate a spike in ColdFusion licensing revenue from existing customers, but he doubts that new users will flock to the solution.

 

"I haven't talked with anyone thinking about trying ColdFusion for the first time in the past three years," he said.

 

Nevertheless, he feels that ColdFusion will continue to be a solid offering, especially in Java shops that need to write quick and dirty applications.

 

"ColdFusion is a perfect way to augment the Java skills of a certain class of developers," he said. "It's not necessarily going to be the principle development platform moving forward, but it's a great tool to have in the tool chest."

 

Looking into the product's future, Driver has a suggestion for Adobe: open source it.

 

"No one has told me that there are any plans to do it, but I wouldn't be shocked if, in the next year or so, we see Adobe open source a significant portion of ColdFusion," he said. "It worked well with Flash, and I think it would be a good move for the company to get the proprietary stench off the product, to compete more strongly with technologies like PHP and Ruby on Rails. That would be my recommendation to Adobe; it could flush the entrenched leaders out of their comfortable market niches by changing the dynamics of the game."

 

ColdFusion 8 is available now in two commercial editions. ColdFusion 8 Enterprise Edition is a high-performance solution for delivering multiple Web sites and applications on one or more servers or on existing Java EE application server installations. The other commercial edition is ColdFusion 8 Standard, an easy-to-manage configuration for single applications, aimed at small-to-medium-size businesses. There's also a free Developer Edition, which is a full-featured server for development use only.

 

_______________________________________________

3. Round Up of Adobe Announcements Last Week

ZDNet Blogs

Date: July 31, 2007

Byline: Ryan Stewart

http://blogs.zdnet.com/Stewart/?p=475

 

Adobe made a bunch of announcements yesterday that I couldn't do justice because I was at OSCON. A lot of them are from Kevin Lynch's keynote speech at the Ajax Experience but we also had a couple of others. Ajaxian had a great writeup of Kevin's keynote that is well worth checking out.

 

Video in Ajax and the new Ajax Dev Center

Adobe is really embracing Ajax and is doing a lot to help that community. Kevin announced the availability of the Flash Ajax Video Component (FAVideo) which is now on labs and is an open source component that you can drop into an Ajax application to add Flash video. What's great is that the component makes all of the controls and design side available so that you can customize the look and feel of the player using only HTML and JavaScript. Essentially you don't need to know anything about Flash to give your site a branded video experience. We've also created an Ajax Developer center that provides a lot of resources for Ajax developers who want to work with Adobe technologies. I think it's going to be a great bridge between the Flash world and the Ajax world.

 

Standardization of crossdomain.xml

Also at the Ajax Experience we announced that we're going to try and make our cross-domain policy files a standard. Flash uses these files to check whether or not the player is allowed to access the content on the server. It gives the people hosting data the ability to make certain contents off limit. With the swell of mashups and more and more data being made available, we wanted to step up and provide our solution. More can be found on the cross-domain file here.

 

The SWF and FLV File Format Specification Available

We also released the spec for version 9 of SWF and FLV last week. People have been wanting this for a while and in the blog post Emmy promised that we're going to try hard to make the next version available much closer to the player release. Hopefully we'll see more external support for creating Flash 9 content now that this has been released.

 

ColdFusion 8 Released

Today we announced that ColdFusion 8 is available. It's been a lot of fun watching this product evolve this year. I came from a ColdFusion background and I think 8 is a great release. We've put in a lot of support for Ajax in this release and also support for closer integration to Flex. I think it's a big jump in functionality and I hope it's well received by the web developer community.

 

_______________________________________________

4. Adobe ColdFusion 8 Released

Techwhack India

Date: July 31, 2007

Byline: Staff

http://stuff.techwhack.com/archives/2007/07/31/adobe-coldfusion-8/

 

Software giant Adobe has announced the launch of ColdFusion 8. This is the latest major release of this Internet application development software.

 

It is available for both Mac and Windows platform. Adobe announced two packages Standard and Enterprise.

 

These two would sell for $1,299 and $7,499 per two-CPU license, respectively. Adobe also announced a free Developer Edition.

 

This edition was earlier released by the company as a public beta version in May this year.

 

Adobe said that the final edition ships with Server Monitor, which helps developers identify bottlenecks in their code and tune the server for better performance.

 

It also comes with better support for PDF format.

 

_______________________________________________

5. Adobe Ships ColdFusion 8 for Web Developers

Digital Arts Online UK

Date: July 31, 2007

Byline: Staff

http://www.digitalartsonline.co.uk/news/index.cfm?NewsID=8410

 

Adobe has releasd ColdFusion, a development tool for building dynamic Web sites and Internet applications. The company says that since May 2007, more than 14,000 developers have actively participated in the ColdFusion 8 public beta.

 

ColdFusion 8 Server Monitor lets developers swiftly identify bottlenecks and tune the server for better performance.

 

"The server monitoring capabilities in ColdFusion 8 are outstanding, offering granular-level access to identify slow requests and terminate runaway processes," said Nick Walters, programming manager, Lightyear Network Solutions. "We can now receive actual detail as to which requests are taking the longest and which objects within a page are performing poorly. Server monitoring with ColdFusion 8 is leaps ahead of third-party applications on the market."

 

ColdFusion 8 enables developers to integrate their ColdFusion applications with other Adobe technologies such as Flex, PDF, Adobe Integrated Runtime (AIR), and Adobe LiveCycle. ColdFusion 8 also uses Ajax-based components, enabling developers to design and deploy engaging applications by integrating complex environments into intuitive interfaces.

 

ColdFusion 8 offers expanded support such as .NET integration, Windows Vista and JBoss support, and integration with the latest version of enterprise databases, giving organisations enhanced efficiency, interoperability, and scalability.

 

ColdFusion 8 is available in two editions: ColdFusion 8 Enterprise Edition is a high-performance solution for delivering multiple Web sites and applications on one or more servers, or on existing J2EE application server installations. ColdFusion 8 Standard is an easy-to-manage configuration for single applications that is designed for small to medium-sized businesses.

 

Enterprise Edition is available for £3,706 plus VAT per 2-CPUs, and Standard Edition is available for £641.95 plus VAT per 2-CPUs. ColdFusion may also be used for development at no cost with the free Developer Edition, a full-featured server for development use only. Special upgrade pricing is available to owners of valid ColdFusion MX 6 and 7 licenses.

 

 

_______________________________________________

6. Adobe Ships ColdFusion 8

ITBusiness.ca

Date: July 30, 2007

Byline: Staff

http://www.itbusiness.ca/it/client/en/home/News.asp?id=44515

 

Adobe Systems Inc. announced the immediate availability of Adobe ColdFusion 8 software. ColdFusion 8, a tool for building dynamic Web sites and Internet applications integrates with complex enterprise environments.

 

ColdFusion 8 enables developers to integrate their ColdFusion applications with other Adobe technologies such as Adobe Flex, PDF, Adobe Integrated Runtime (AIR), and Adobe LiveCycle. ColdFusion 8 also uses Ajax-based components, enabling developers to design and deploy engaging applications by integrating complex environments into intuitive interfaces.

 

ColdFusion 8 is available in two editions: ColdFusion 8 Enterprise Edition is a solution for delivering multiple Web sites and applications on one or more servers, or on existing J2EE application server installations; ColdFusion 8 Standard is a configuration for single applications that are ideal for small to medium-sized businesses. Enterprise Edition is available for US$7499 per 2-CPUs, and Standard Edition is available for US$1299 per 2-CPUs. ColdFusion may also be used for development at no cost with the free Developer Edition, a full-featured server for development use only. Special upgrade pricing is available to owners of valid ColdFusion MX 6 and 7 licenses. ColdFusion 8 is immediately available for purchase online from the Adobe Store, directly from Adobe, and through Adobe's network of partners and resellers.

 

 

_______________________________________________

7. Adobe ColdFusion Links to AIR

PC World AU

Date: July 31, 2007

Byline: Paul Krill

http://www.pcworld.idg.com.au/index.php/id;1577818540

 

Adobe is now shipping the ColdFusion 8 application development platform, offering faster performance and basic linkages to Adobe's AIR (Adobe Integrated Runtime) technology.

 

ColdFusion is a server technology for building Internet applications. AIR, which is Adobe's planned software for deploying Internet applications on the desktop, can use ColdFusion as a server component. AIR applications can connect to ColdFusion for enterprise data and services, said Tim Buntel, Adobe senior product marketing manager for ColdFusion. AIR had been known as Apollo and is only available in a beta form at this point; general availability is expected later this year.

 

Although ColdFusion 7.0.2, released last year, could offer basic data exchange with AIR, version 8 improves data synchronization and performance significantly, according Adobe. Future versions of ColdFusion could expand connectivity to AIR, Buntel said. For example, development tools could be built for this purpose.

 

Also highlighted in version 8 of ColdFusion is multithreaded support within the ColdFusion language. "It allows developers to run individual parts of their application in separate threads in the application server, so the processing of your application can efficiently use the resources of the server," Buntel said.

 

Another feature is a Server Monitor capability, which is a rich Internet application that gauges metrics like memory usage and page response times.

 

Adobe received far greater response than expected to the public beta program launched in late-May. Anticipating that 5,000 developers would download the product, Adobe instead had nearly 14,000 downloads, Buntel said.

 

A beta user cited the product's speed compared to previous versions. "I've seen, depending on what we're doing, at least two times faster [response times] and in many cases [it has been] up to four or five times faster," said Terry Ryan, IT director at the Wharton School of Business at the University of Pennsylvania.

 

The school's student portal application is being written entirely in ColdFusion 8, Ryan said. ColdFusion 8's Server Monitor, meanwhile, has saved the school from having to write its own monitoring tools, he said.

 

ColdFusion competitors most commonly are PHP (Hypertext Preprocessor), ASP.Net, and Ruby on Rails, Buntel said. But these technologies have a more limited reach than ColdFusion, he said.

 

"Their emphasis is primarily on traditional Web-based applications and being part of Adobe, we're going beyond just HTML," with capabilities for PDF, Flex, and Air as well as connectivity across Java and .Net, Buntel said.

 

Version 8 enables invoking of .Net objects and generation of PDF documents. Interactive debugging is offered based on the Eclipse IDE.

 

The enterprise version of ColdFusion 8 costs US$7,499. It enables deployments with a J2EE application server. The standard edition, for smaller installations, costs US$1,299.

 

 

_______________________________________________

8. Adobe ColdFusion Links to AIR

Computerworld AU

Date: July 31, 2007

Byline: Paul Krill

http://www.computerworld.com.au/index.php/id;1577818540;fp;2;fpid;1

 

Adobe is now shipping the ColdFusion 8 application development platform, offering faster performance and basic linkages to Adobe's AIR (Adobe Integrated Runtime) technology.

 

ColdFusion is a server technology for building Internet applications. AIR, which is Adobe's planned software for deploying Internet applications on the desktop, can use ColdFusion as a server component. AIR applications can connect to ColdFusion for enterprise data and services, said Tim Buntel, Adobe senior product marketing manager for ColdFusion. AIR had been known as Apollo and is only available in a beta form at this point; general availability is expected later this year.

 

Although ColdFusion 7.0.2, released last year, could offer basic data exchange with AIR, version 8 improves data synchronization and performance significantly, according Adobe. Future versions of ColdFusion could expand connectivity to AIR, Buntel said. For example, development tools could be built for this purpose.

 

Also highlighted in version 8 of ColdFusion is multithreaded support within the ColdFusion language. "It allows developers to run individual parts of their application in separate threads in the application server, so the processing of your application can efficiently use the resources of the server," Buntel said.

 

Another feature is a Server Monitor capability, which is a rich Internet application that gauges metrics like memory usage and page response times.

 

Adobe received far greater response than expected to the public beta program launched in late-May. Anticipating that 5,000 developers would download the product, Adobe instead had nearly 14,000 downloads, Buntel said.

 

A beta user cited the product's speed compared to previous versions. "I've seen, depending on what we're doing, at least two times faster [response times] and in many cases [it has been] up to four or five times faster," said Terry Ryan, IT director at the Wharton School of Business at the University of Pennsylvania.

 

The school's student portal application is being written entirely in ColdFusion 8, Ryan said. ColdFusion 8's Server Monitor, meanwhile, has saved the school from having to write its own monitoring tools, he said.

 

ColdFusion competitors most commonly are PHP (Hypertext Preprocessor), ASP.Net, and Ruby on Rails, Buntel said. But these technologies have a more limited reach than ColdFusion, he said.

 

"Their emphasis is primarily on traditional Web-based applications and being part of Adobe, we're going beyond just HTML," with capabilities for PDF, Flex, and Air as well as connectivity across Java and .Net, Buntel said.

 

Version 8 enables invoking of .Net objects and generation of PDF documents. Interactive debugging is offered based on the Eclipse IDE.

 

The enterprise version of ColdFusion 8 costs US$7,499. It enables deployments with a J2EE application server. The standard edition, for smaller installations, costs US$1,299.

 

 

_______________________________________________

9. Adobe ColdFusion Links to AIR

ARNnet

Date: July 31, 2007

Byline: Paul Krill

http://www.arnnet.com.au/index.php/id;1577818540;fp;4194304;fpid;1

 

Adobe is now shipping the ColdFusion 8 application development platform, offering faster performance and basic linkages to Adobe's AIR (Adobe Integrated Runtime) technology.

 

ColdFusion is a server technology for building Internet applications. AIR, which is Adobe's planned software for deploying Internet applications on the desktop, can use ColdFusion as a server component. AIR applications can connect to ColdFusion for enterprise data and services, said Tim Buntel, Adobe senior product marketing manager for ColdFusion. AIR had been known as Apollo and is only available in a beta form at this point; general availability is expected later this year.

 

Although ColdFusion 7.0.2, released last year, could offer basic data exchange with AIR, version 8 improves data synchronization and performance significantly, according Adobe. Future versions of ColdFusion could expand connectivity to AIR, Buntel said. For example, development tools could be built for this purpose.

 

Also highlighted in version 8 of ColdFusion is multithreaded support within the ColdFusion language. "It allows developers to run individual parts of their application in separate threads in the application server, so the processing of your application can efficiently use the resources of the server," Buntel said.

 

Another feature is a Server Monitor capability, which is a rich Internet application that gauges metrics like memory usage and page response times.

 

Adobe received far greater response than expected to the public beta program launched in late-May. Anticipating that 5,000 developers would download the product, Adobe instead had nearly 14,000 downloads, Buntel said.

 

A beta user cited the product's speed compared to previous versions. "I've seen, depending on what we're doing, at least two times faster [response times] and in many cases [it has been] up to four or five times faster," said Terry Ryan, IT director at the Wharton School of Business at the University of Pennsylvania.

 

The school's student portal application is being written entirely in ColdFusion 8, Ryan said. ColdFusion 8's Server Monitor, meanwhile, has saved the school from having to write its own monitoring tools, he said.

 

ColdFusion competitors most commonly are PHP (Hypertext Preprocessor), ASP.Net, and Ruby on Rails, Buntel said. But these technologies have a more limited reach than ColdFusion, he said.

 

"Their emphasis is primarily on traditional Web-based applications and being part of Adobe, we're going beyond just HTML," with capabilities for PDF, Flex, and Air as well as connectivity across Java and .Net, Buntel said.

 

Version 8 enables invoking of .Net objects and generation of PDF documents. Interactive debugging is offered based on the Eclipse IDE.

 

The enterprise version of ColdFusion 8 costs US$7,499. It enables deployments with a J2EE application server. The standard edition, for smaller installations, costs US$1,299.

 

 

_______________________________________________

10. Adobe Ships ColdFusion 8

ZDNet Asia

Date: July 31, 2007

Byline: Adrian Bridgewater

http://www.zdnetasia.com/news/software/0,39044164,62029841,00.htm

 

Adobe has released its ColdFusion 8 development tool for building dynamic Web sites and rich Internet applications.

 

The new release is designed to increase developer productivity by integrating with complex enterprise environments and identifying bottlenecks to tune the server for better performance. Improved server-monitoring capabilities allow ColdFusion 8 to provide granular reports on which requests are taking the longest and which objects within a page are performing poorly.

 

Built with the help of over 14,000 public beta program developers, ColdFusion 8 uses Ajax-based components, enabling users to design and deploy engaging applications with more intuitive interfaces. This release offers expanded .Net integration, along with better Windows Vista and JBoss support, to provide enhanced efficiency, interoperability between disparate systems, and scalability.

 

The new version, which is available in two editions, enables developers to integrate their ColdFusion applications with other Adobe technologies, including Adobe Flex, PDF, Adobe Integrated Runtime (AIR) and Adobe LiveCycle.

 

ColdFusion 8 Enterprise Edition is designed for delivering multiple websites and applications on one or more servers, and costs £3,706 (US$7,644) per two CPUs.

 

ColdFusion 8 Standard Edition is designed for single applications at the small- to medium-sized business level and costs £642 (US$1,324) per two CPUs.

 

There is also a free, full-featured Developer Edition for development use only.

 

 

_______________________________________________

11. Adobe ColdFusion 8 ships in the UK

PC Advisor UK

Date: July 31, 2007

Byline: Jonny Evans

http://www.pcadvisor.co.uk/news/index.cfm?newsid=10248

 

Adobe has released the latest version of its ColdFusion tool for building dynamic websites and internet applications.

 

The company says the focus of Coldfusion 8 has been to increase developer productivity and to make the software integrate with complex enterprise environments.

 

Adobe also confirmed that over 14,000 developers have taken part in the ColdFusion public beta test, which launched in May.

 

There's a variety of new features, including ColdFusion 8 Server Monitor which lets developers swiftly identify bottlenecks and tune the server for better performance.

 

"The server monitoring capabilities in ColdFusion 8 are outstanding, offering granular-level access to identify slow requests and terminate runaway processes," said Nick Walters, programming manager, Lightyear Network Solutions.

 

The software integrates with other Adobe technologies, including Flex, PDF, and more. It uses Ajax-based components, enabling developers to design and deploy engaging applications by integrating complex environments into intuitive interfaces.

 

While still not available for Mac OS X, ColdFusion 8 offers expanded support for .NET, Windows Vista and JBoss alongside integration with the latest version of enterprise databases.

 

ColdFusion 8 is available in two editions: ColdFusion 8 Enterprise Edition costs £3,706 per two computers and is a high-performance solution for delivering multiple websites and applications on one or more servers, or on existing J2EE application server installations. ColdFusion 8 Standard costs £641.95 and is for single applications.

 

ColdFusion may also be used for development at no cost with the free Developer Edition.

 

 

Wednesday, August 1, 2007

CF8 "Getting Started" Online.

Check out the CF8 Getting Started...  check the code snippets explorer.