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
Please enter at least three characters to search
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

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • Remote Pair Programming with IntelliJ, Eclipse and VS Code
  • Building a Real-Time AI-Powered Workplace Safety System
  • Simplify NoSQL Database Integration in Java With Eclipse JNoSQL 1.1.3
  • Managing Conflicts in Teams: A Social Psychology Perspective

Trending

  • Scalability 101: How to Build, Measure, and Improve It
  • Setting Up Data Pipelines With Snowflake Dynamic Tables
  • How to Convert Between PDF and TIFF in Java
  • Start Coding With Google Cloud Workstations
  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
Likes (0)
Comment
Save
Tweet
Share
15.2K 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
  • Building a Real-Time AI-Powered Workplace Safety System
  • Simplify NoSQL Database Integration in Java With Eclipse JNoSQL 1.1.3
  • Managing Conflicts in Teams: A Social Psychology Perspective

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and 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:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!