|
Comments
Did you read today's front page stories & breaking news?
SYS-CON.TV
|
Feature Beyond SOA & Web Services - ColdFusion / .NET Integration
As both a .NET programmer and ColdFusion developer, I always wondered how I could leverage the world of .NET in ColdFusion
By: Catalin Sandu
May. 16, 2007 01:00 PM
As both a .NET programmer and ColdFusion developer, I always wondered how I could leverage the world of .NET in ColdFusion. Both platforms come with powerful features and using them together might be a wonderful friendship, if one could only make them cooperate. There are two worlds out there and none of them is an island.
The promise of the next version of ColdFusion (code named "Scorpio" and due out later this year) is that it will support .NET natively. This also means that access to this platform will be of interest to ColdFusion developers, in the future anyway. Still, apart from the ability to use .NET objects directly from CFML, there are other ways of making ColdFusion and the .NET Framework talk to each other. Here we're going to explore some of these methods. This article assumes a basic knowledge of event gateways and how to use external objects from ColdFusion (Web services and COM objects), as well as a fair understanding of the .NET architecture. On the one hand, there's your world, ColdFusion. On the other side is .NET. So what are our bridging options?
Consuming Web Services For example, the class that will implement the methods exposed by a Web service doesn't even need to be derived from the Web Service class found in .NET, although doing so will provide the service with direct access to different common ASP.NET objects (session state, application state, request context, and so on). On the other hand, the methods that should be public for the Web service must be decorated with the WebMethod attribute. Not all methods should be decorated this way, effectively making those methods private to the implementation of the component. Consuming a .NET Web service from ColdFusion is just a matter of using CFOBJECT or CreateObject, depending on the developer's preferences. Care should be taken when defining method parameters and return values so that both platforms understand each other (for example, you can't pass a ColdFusion structure to .NET as is). Anyway, this road of Web services has already been taken and discussed in many articles about ColdFusion and .NET. I won't go further than that and start exploring other interoperability options.
Talking .NET 3.0: Windows Communication Framework Services There are many technologies that are meant for making two applications talk to each other. Depending on the project requirements, one can choose between named pipes, message queue-based communication, peer-to-peer protocols, and so on, including Web services. The rationale behind WCF is to provide a unifying programming model for all existent communication technologies, at the same time offering the possibility of defining your own custom transport protocol. Instead of trying to learn multiple technologies, a programmer would have to know WCF. All components written according to the WCF model can easily talk to applications exposing their functionality through any protocol. To expose a class to the outside world through WCF, one must define an interface and decorate it with the ServiceContract attribute, while the methods defined for that interface should be decorated with an OperationContract attribute (the ones that aren't decorated as such won't be exposed at all). The C# example below defines an interface (in WCF speak, a contract) exposing a single operation:
[ServiceContract] The actual implementation must be provided in a class that derives from this interface. To start the service, several other steps must be followed, such as configuring the service (that is, informing the WCF system about the address where the service will be exposed; the configuration is done in a special XML file called app.config), and hosting it (meaning, running the application - there are also several options here, such as compiling the service as a console application, running it inside IIS, implementing it as a Windows service, and so on). The good news for a ColdFusion developer is that the WCF components can be configured to act as Web services. From a ColdFusion point-of-view, such a WCF object is just another Web service exposing its functionality via WSDL, thus being accessible through CFOBJECT/CreateObject. I have provided a full sample on how to define and consume a WCF service from ColdFusion. It includes both the source code for the contract (see Listing 1) and the configuration XML file (see Listing 2), as well as explanatory comments for the relevant lines of code. The service has been implemented as a simple console application so you can see what is happening when it's invoked: every time an operation is called from ColdFusion, the service will print a log message. Note that you should first start the service before consuming it from ColdFusion. The sample will run on localhost on port 4500. You can access it through http://localhost:4500/<WCFServiceName>?WSDL. Of course, console applications may not be the best choice for hosting a service; a better scenario would be to host it in IIS (as a regular Web service), or simply as a Windows Service. But this also depends on the project type you're working on. Reader Feedback: Page 1 of 1
Latest Cloud Developer Stories
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
|
SYS-CON Featured Whitepapers
Most Read This Week
Breaking Cloud Computing News
|
|||||||||||||||||||||||||||||||||||||||||||||||||