BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News Project Tango - WCF And Java Interop

Project Tango - WCF And Java Interop

Bookmarks

Sun Microsystems has launched the open source initiative called Project Tango.  Windows Communications Foundation Engineers are working together with Java Web Services Engineers on the interoperability of enterprise features.

Project Tango focuses on five key functional areas of interoperability. 

Bootstrapping Communincation

wsimport from JAX-WS uses WS-Transfer and WS-MetadataExchange to retrieve the WSDL for a WCF service and create the consumer proxies that will be used to communicate with the service.  Using wsimport spares the developer from having to know how the metadata is used to implement the proxies. 

Optimizing Communication

Also built into the JAX-WS platform are MTOM and XOP.  This enables binary encoding of the XML content.  Content can be encoded as MIME body parts or ecapsulated in as binary-encoded XML within HTTP packets.  The net result is reduced XML size which helps to speed communication.

WS-SecureConversation is employed to establish a shared security context at the beginning of a multiple message exchange.  This reduces the security communication overhead during complex interactions that require several message exchanges.

Enabling Reliability

The WS-ReliableMessaging specification allows the underlying system to handle the recovery of message failures and removes that responsibility from application code.  Enabling reliability in a Project Tango web service is as simple as checking a checkbox in a reliability panel in NetBeans.

Enabling Atom Transactions

Project Tango implements the WS-Coordination and WS-AtomicTranscations specifications for interoperable atomic transaction support.

Securing Communications

Project Tango goes a step further than transport-based security such as SSL by implementing WS-Security to provide message security even if the message must pass through an intermediary.  WS-Trust is also implemented for the management of security tokens and establish broker trust relationships.

Rate this Article

Adoption
Style

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • WCF & Java Interop tutorial series

    by Kevin Gao,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    I am writing a WCF & Java Interop tutorial series. The series covers different data types between Java & WCF, session management, WCF ASP.NET compatibility, SSL, Asynchronous Polling, data compression , MTOM and so on.

    These articles are based on my real world development experience of SCM Anywhere (www.scmsoftwareconfigurationmanagement.com), a SCM tool with integrated version control, bug tracking and build automation.

    The series has not been finished, but I am adding articles several times per week. Please check back for the latest articles.

    The URL of the series is:
    www.kevingao.net/wcf-java-interop

    Thanks a lot.

    -----------------------------------------------------------------
    Kevin Gao, MCSD MCDBA
    www.kevingao.net
    www.dynamsoft.com

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT