DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Low-Code Development: Leverage low and no code to streamline your workflow so that you can focus on higher priorities.

DZone Security Research: Tell us your top security strategies in 2024, influence our research, and enter for a chance to win $!

Launch your software development career: Dive head first into the SDLC and learn how to build high-quality software and teams.

Open Source Migration Practices and Patterns: Explore key traits of migrating open-source software and its impact on software development.

Related

  • Remote Pair Programming with IntelliJ, Eclipse and VS Code
  • Understanding and Learning NoSQL Databases With Java: Three Key Benefits
  • Achieving Inheritance in NoSQL Databases With Java Using Eclipse JNoSQL
  • Exploring the New Eclipse JNoSQL Version 1.1.0: A Dive Into Oracle NoSQL

Trending

  • From JSON to FlatBuffers: Enhancing Performance in Data Serialization
  • Phased Approach to Data Warehouse Modernization
  • How a Project Manager Can Increase Software Quality With Agile Practices
  • Javac and Java Katas, Part 2: Module Path
  1. DZone
  2. Culture and Methodologies
  3. Career Development
  4. Eclipse Indigo Highlights: Five Reasons to Check Out ECF

Eclipse Indigo Highlights: Five Reasons to Check Out ECF

By 
James Sugrue user avatar
James Sugrue
DZone Core CORE ·
Jun. 22, 11 · Interview
Like (0)
Save
Tweet
Share
14.7K Views

Join the DZone community and get the full member experience.

Join For Free

The Eclipse Communication Framework has been a steady participant in the Eclipse release trains, continuously adding to its impressive list of features. This year’s inclusion of ECF 3.5 in the Indigo release train is no exception. In this article, I'll take a look at five key features of the release:

OSGi 4.2 Remote Services/RSA Standards Support

ECF Indigo implements two recently-completed OSGi standards:  OSGi remote services and OSGi Remote Service Admin (RSA).  The OSGi Remote Services spec provides a simple, standardized way to expose OSGi services for network discovery and remote access. 

ECF Indigo also implements the Enterprise specification for remote services management known as Remote Services Admin (RSA).  The RSA specification defines a management agent to allow for enterprise-application control of the discovery and distribution of remote services via a standardized API.  Also included in the RSA specification is a standardized format for communicating meta-data about remote services, advanced handling of security, discovery and distribution event notification, and advanced handling of remote service versioning.

ECF has run its implementation of RS/RSA through the  OSGi Test Compatability Kit to ensure that it is compliant with the OSGi specification.

Extensibility through Provider Architecture

ECF has a provider architecture, that allows major components of the OSGi remote services/RSA implementation to be extended, enhanced, or replaced as needed.  For example, for interoperability with existing services and applications, it’s frequently desirable to be able to substitute the wire protocol/transport to one that is already being used.   With the ECF provider architecture, it’s possible to substitute the underlying protocol...and use other frameworks based upon REST, SOAP, JMS, XML-RPC, XMPP, and/or others. If you wish, you can even define and use a proprietary provider and use it to expose your remote services.   Or you can use one provider for remote services development and testing, and another for deployment.

Asynchronous Proxies

ECF has support for remote service access via asynchronous proxies.  This allows client consumers of remote services to avoid the reliability problems that are frequent when synchronous proxies are used over a relatively slow and unreliable network.  The choice of whether to use synchronous or asynchronous proxies is up to the programmer, and can be made at runtime.  Here is more information about this feature of ECF’s remote services implementation.

XML-RPC provider

ECF Indigo has an XML-RPC-based provider, which implements the remote services API. Remote Service invocation through a proxy and/or async proxy is supported too.   In addition to being usable for interoperability with existing XML-RPC-based services, it can also be used as an example of how to easily use an existing framework to create a remote service provider.

Google wave provider

Although discontinued by Google, Wave is an open protocol with an open source implementation of the Wave server available.  This means you can still build applications that take advantage of the real time shared editing functionality from within your Eclipse environment using this provider.

Already, ECF provides real time shared editing using cola. This is limited to two users on a a document at a time - using the Wave provider, you could have multiple authors collaborating on the same document.

Mustafa and Sebastian created a multiplayer Android phone game for EclipseCon this year, using the Wave protocol for concurrency control. Take a look at the results in the video below.

ECF on Other OSGi Frameworks

You're not limited to running ECF on Equinox anymore: ECF4Felix allows ECF to run on the Felix OSGi framework. So far testing has only been done on Felix. But if you are willing to help with testing ECF Remote Services/RSA on another framework, please send an email to the ecf-dev mailing list.

ECF Documentation Project

ECF recently started the ECF Documentation Project. This project is an approach to improve the amount and quality of the ECF documentation with the help of the committer, contributor, and consumer communities. It also aims to use of ECF for new and existing consumers. Currently this includes a Users Guide  and an Integrators Guide.

As a user of ECF, the documentation effort is a huge help in getting ECF to work right within your application. Great credit is due to the ECF team for this, and all other features listed here. 

 

  1. ECF wiki:  http://wiki.eclipse.org/ECF
  2. Remote services section of ECF wiki:  http://wiki.eclipse.org/ECF#OSGi_Remote_Services
  3. OSGi compendium specification (Chap 13 is Remote Services):  http://www.osgi.org/download/r4v42/r4.cmpn.pdf
  4. OSGi Enterprise Specification (Chap 122 is RSA):  http://www.osgi.org/download/r4v42/r4.enterprise.pdf
  5. RSA wiki pages:  http://wiki.eclipse.org/Remote_Services_Admin
  6. Getting Started with Remote Services:  http://wiki.eclipse.org/EIG:Getting_Started_with_OSGi_Remote_Services
  7. Asynchronous Proxies (examples):  http://wiki.eclipse.org/Asynchronous_Proxies_for_Remote_Services
  8. ECF Builder:  https://build.ecf-project.org/jenkins/
  9. ECF Github site (other providers, examples, Wave, and Newsreader) :  https://github.com/ECF
  10.  ECF4Felix:  https://github.com/ECF/ECF4Felix
workplace Eclipse

Opinions expressed by DZone contributors are their own.

Related

  • Remote Pair Programming with IntelliJ, Eclipse and VS Code
  • Understanding and Learning NoSQL Databases With Java: Three Key Benefits
  • Achieving Inheritance in NoSQL Databases With Java Using Eclipse JNoSQL
  • Exploring the New Eclipse JNoSQL Version 1.1.0: A Dive Into Oracle NoSQL

Partner Resources


Comments

ABOUT US

  • About DZone
  • Send feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: