Author: buildbot
Date: Wed Sep 13 14:57:26 2017
New Revision: 1018110
Log:
Production update by buildbot for cxf
Modified:
websites/production/cxf/content/cache/docs.pageCache
websites/production/cxf/content/cache/main.pageCache
websites/production/cxf/content/docs/31-migration-guide.html
websites/production/cxf/content/docs/32-migration-guide.html
websites/production/cxf/content/index.html
Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/docs/31-migration-guide.html
==============================================================================
--- websites/production/cxf/content/docs/31-migration-guide.html (original)
+++ websites/production/cxf/content/docs/31-migration-guide.html Wed Sep 13
14:57:26 2017
@@ -117,13 +117,13 @@ Apache CXF -- 3.1 Migration Guide
<!-- Content -->
<div class="wiki-content">
<div id="ConfluenceContent"><h3 id="id-3.1MigrationGuide-MajorNotes">Major
Notes</h3><ul><li>CXF 3.1 no longer supports Java 6.   You must use Java 7
or Java 8.</li><li>The JAX-WS/Simple frontend ServerFactoryBean will
automatically call reset at the end of the create() call.   This allows
resources to be cleaned up and garbage collected sooner.  However, it also
prevents multiple calls to create() from sharing the same
ServerInfo/EndpointInfo/etc... objects like they would we 3.0.x.   That
sharing has caused many problems in the past due to sharing of properties (like
token caches) that are stored on those objects so the new behavior is more
"correct", but it is different than previous versions so care must be taken
while upgrading.</li><li>The Karaf features.xml file for CXF 3.1 no longer will
install spring or spring-dm when installing the "cxf" feature.  If you
require spring/spring-dm, you will need to install those features prior to
installing the CXF
feature.</li></ul><h3 id="id-3.1MigrationGuide-Securitychanges">Security
changes</h3><ul><li>The STS (Security Token Service) now issues tokens using
the RSA-SHA256 signature algorithm by default (previously RSA-SHA1), and the
SHA-256 digest algorithm (previously SHA-1).</li><li>Some security
configuration tags have been renamed from "ws-security.*" to "security.*", as
they are now shared with (some of) the JAX-RS stack. The old tags will continue
to work as before however without any change. See the <a shape="rect"
href="security-configuration.html">Security Configuration </a>page for more
information.</li><li>The SAML/XACML functionality previously available in the
cxf-rt-security module is now in the cxf-rt-security-saml module.</li><li>If
you are explicitly specifying the SAML version in a SAML CallbackHandler, then
this is changed in CXF 3.1 due to the migration to use OpenSAML 3.1. The
version is now set on the SAMLCallback using a
org.apache.wss4j.common.saml.bean.Version cla
ss. Previously there was a dependency on OpenSAML's SAMLVersion
class.</li><li>It is now possible to "plug in" custom WS-SecurityPolicy
validators if you wish to change the default validation logic for a particular
policy.</li></ul><h3 id="id-3.1MigrationGuide-NewFeatures">New
Features</h3><ul><li>The CXF JAX-WS code generator has a new option "seiSuper"
that can be used to specify additional super interfaces for the SEI.  This
makes the code nonportable to other JAX-WS containers.   The primary use
would be to add AutoCloseable to the interface to allow use of the clients in
Java7 try with resource blocks.</li><li>New Metrics feature for collecting
metrics about a CXF services.   Codahale/DropWizard based collector
included.</li><li>New Throttling feature for easily throttling CXF services.
 Sample included that uses the Metrics component to help make the
throttling decisions.</li><li>New Logging feature for more advanced logging
than the logging available in cx
f-core</li><li>New Metadata service for SAML SSO to allow you to publish SAML
SSO metadata for your service provider.</li><li><p>The "cxf" frontend to the
JAX-WS code generator (-fe cxf) now generates code that is a bit more "Java7"
friendly as the return type of the getPort(...) calls is a sub-interface of the
SEI that also implements AutoCloseable, BindingProvider, and Client.  
Code that used to look like:</p><div class="code panel pdl"
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence"
style="font-size:12px;">(AddNumbersPortType port = service.getAddNumbersPort();
+<pre class="brush: java; gutter: false; theme: Default"
style="font-size:12px;">(AddNumbersPortType port = service.getAddNumbersPort();
((BindingProvider)port).getRequestContext()
.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, address);
port.addNumbers3(-1, 2);
((Closeable)port).close();</pre>
</div></div><p>can be replaced with:</p><div class="code panel pdl"
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence"
style="font-size:12px;">try (AddNumbersPortTypeProxy port =
service.getAddNumbersPort()) {
+<pre class="brush: java; gutter: false; theme: Default"
style="font-size:12px;">try (AddNumbersPortTypeProxy port =
service.getAddNumbersPort()) {
port.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
address);
port.addNumbers3(-1, 2);
}</pre>
Modified: websites/production/cxf/content/docs/32-migration-guide.html
==============================================================================
--- websites/production/cxf/content/docs/32-migration-guide.html (original)
+++ websites/production/cxf/content/docs/32-migration-guide.html Wed Sep 13
14:57:26 2017
@@ -107,7 +107,7 @@ Apache CXF -- 3.2 Migration Guide
<td height="100%">
<!-- Content -->
<div class="wiki-content">
-<div id="ConfluenceContent"><h3 id="id-3.2MigrationGuide-MajorChanges:">Major
Changes:</h3><ul><li>CXF 3.2.x now requires Java 8.  Support for previous
versions of Java has been dropped.</li><li>Jetty has been upgraded to
9.4.x.</li><li>Woodstox has been updated to 5.0.x which is in a different group
id and has a different artifactId.  It's possible that you may pull in
multiple versions of woodstox via other dependencies.</li><li>Swagger 1.x
(package com.wordnik) is no longer supported, please update to Swagger 2
(package io.swagger).</li><li>New java2swagger Maven plugin</li><li>JAX-RS
support updated to latest 2.1 spec</li><li>New WS-Transfer
implementation</li><li>Old management-web module removed</li><li>jibx, sdo, and
xmlbeans databindings removed</li><li>"object binding" removed (coloc binding
handles most of these use cases)</li><li>Enhanced tracing support<br
clear="none"> </li></ul><p> </p></div>
+<div id="ConfluenceContent"><h3 id="id-3.2MigrationGuide-MajorNotes:">Major
Notes:</h3><ul><li>CXF 3.2.x now requires Java 8.  Support for previous
versions of Java has been dropped</li><li>Old management-web module
removed</li><li>jibx, sdo, and xmlbeans databindings removed</li><li>"object
binding" removed (coloc binding handles most of these use cases)</li></ul><h3
id="id-3.2MigrationGuide-NewFeatures:">New Features:</h3><ul><li>JAX-RS support
updated to latest 2.1 spec</li><li>New java2swagger Maven plugin</li><li>New
WS-Transfer implementation</li><li>Enhanced tracing support with
Brave</li><li>Support for Spring Boot 2.x</li><li>JAX-WS - support for
per-operation schema validation configuration</li><li>New http-undertow
transport</li></ul><h3 id="id-3.2MigrationGuide-Majordependencychanges:">Major
dependency changes:</h3><ul><li>Jetty has been upgraded to 9.4.x.  Support
for Jetty 9.1 and earlier has been removed</li><li>Woodstox has been updated to
5.0.x which is in
a different group id and has a different artifactId.  It's possible that
you may pull in multiple versions of woodstox via other
dependencies.</li><li>Swagger 1.x (package com.wordnik) is no longer supported,
please update to Swagger 2 (package io.swagger).</li></ul></div>
</div>
<!-- Content -->
</td>
Modified: websites/production/cxf/content/index.html
==============================================================================
--- websites/production/cxf/content/index.html (original)
+++ websites/production/cxf/content/index.html Wed Sep 13 14:57:26 2017
@@ -99,7 +99,7 @@ Apache CXF -- Index
<td height="100%">
<!-- Content -->
<div class="wiki-content">
-<div id="ConfluenceContent"><h1
id="Index-ApacheCXF™:AnOpen-SourceServicesFramework">Apache CXF™:
An Open-Source Services Framework</h1><h2
id="Index-Overview">Overview</h2><p>Apache CXF™ is an open source
services framework. CXF helps you build and develop services using frontend
programming APIs, like JAX-WS and JAX-RS. These services can speak a variety of
protocols such as SOAP, XML/HTTP, RESTful HTTP, or CORBA and work over a
variety of transports such as HTTP, JMS or JBI.</p><h2
id="Index-News">News</h2><h3
id="Index-August3,2017-ApacheCXF2.6.17released!">August 3, 2017 - Apache CXF
2.6.17 released!</h3><div>Apache CXF 2.6.17 has been released. This is a
once-off release to fix some security advisories that have been fixed in more
recent versions of CXF. CXF users should try as much as possible to upgrade to
a more recent and supported version of CXF.</div><p>The <a shape="rect"
href="security-advisories.html">advisories</a> fixed in this release are as
follo
ws:</p><p> - CVE-2014-3577 <br clear="none"> - CVE-2014-3623 <br
clear="none"> - CVE-2015-5253 <br clear="none"> - CVE-2016-8739 <br
clear="none"> - CVE-2016-6812 <br clear="none"> -
CVE-2017-5656</p><h3
id="Index-June29,2017-ApacheCXF3.1.12/3.0.14released!">June 29, 2017 - Apache
CXF 3.1.12/3.0.14 released!</h3><p>The Apache CXF team is proud to announce the
availability of the latest patch releases. Over 55 JIRA issues were fixed for
3.1.12 which many of those fixes back ported to 3.0.14.</p><p>This is mostly a
patch release to fix problems and issues that users have encountered.
  Downloads are available <a shape="rect"
href="download.html">here</a>.</p><h3
id="Index-April10,2017-ApacheCXF3.1.11/3.0.13released!">April 10, 2017 - Apache
CXF 3.1.11/3.0.13 released!</h3><p>The Apache CXF team is proud to announce the
availability of the latest patch releases. Over 100 JIRA issues were fixed for
3.1.11 which many of those fixes back ported
to 3.0.13.</p><p>This is mostly a patch release to fix problems and issues
that users have encountered.   Downloads are available <a
shape="rect" href="download.html">here</a>.</p><h3
id="Index-Features">Features</h3><p>CXF includes a broad feature set, but it is
primarily focused on the following areas:</p><ul><li><strong>Web Services
Standards Support:</strong> CXF supports a variety of web service standards
including SOAP, the WS-I Basic Profile, WSDL, WS-Addressing, WS-Policy,
WS-ReliableMessaging, WS-Security, WS-SecurityPolicy, WS-SecureConverstation,
and WS-Trust (partial).</li><li><strong>Frontends:</strong> CXF supports a
variety of "frontend" programming models.</li></ul><p>CXF implements the JAX-WS
APIs. CXF JAX-WS support includes some extensions to the standard that make it
significantly easier to use, compared to the reference implementation: It will
automatically generate code for request and response bean classes, and does not
require a WSDL for simpl
e cases.</p><p>It also includes a "simple frontend" which allows creation of
clients and endpoints without annotations. CXF supports both contract first
development with WSDL and code first development starting from Java.</p><p>For
REST, CXF also supports a JAX-RS frontend.</p><ul><li><strong>Ease of
use:</strong> CXF is designed to be intuitive and easy to use. There are simple
APIs to quickly build code-first services, Maven plug-ins to make tooling
integration easy, JAX-WS API support, Spring 2.x XML support to make
configuration a snap, and much more.</li><li><strong>Binary and Legacy Protocol
Support:</strong> CXF has been designed to provide a pluggable architecture
that supports not only XML but also non-XML type bindings, such as JSON and
CORBA, in combination with any type of transport.</li></ul><p>To get started
using CXF, check out the <a shape="rect" href="download.html">downloads</a>,
the <a shape="rect" href="http://cxf.apache.org/docs/index.html">user's
guide</a>, or
the <a shape="rect" href="mailing-lists.html">mailing lists</a> to get more
information!</p><h2 id="Index-Goals">Goals</h2><h3
id="Index-General">General</h3><ul><li>High
Performance</li><li>Extensible</li><li>Intuitive & Easy to Use</li></ul><h3
id="Index-SupportforStandards">Support for Standards</h3><h5
id="Index-JSRSupport">JSR Support</h5><ul><li>JAX-WS - Java API for XML-Based
Web Services (JAX-WS) 2.0 - <a shape="rect" class="external-link"
href="http://jcp.org/en/jsr/detail?id=224"
rel="nofollow">JSR-224</a></li><li>Web Services Metadata for the Java Platform
- <a shape="rect" class="external-link"
href="http://jcp.org/en/jsr/detail?id=181"
rel="nofollow">JSR-181</a></li><li>JAX-RS - The Java API for RESTful Web
Services - <a shape="rect" class="external-link"
href="http://jcp.org/en/jsr/detail?id=311"
rel="nofollow">JSR-311</a></li><li>SAAJ - SOAP with Attachments API for Java
(SAAJ) - <a shape="rect" class="external-link"
href="http://jcp.org/aboutJava/communityprocess
/mrel/jsr067/index3.html" rel="nofollow">JSR-67</a></li></ul><h5
id="Index-WS-*andrelatedSpecificationsSupport">WS-* and related Specifications
Support</h5><ul><li>Basic support: WS-I Basic Profile 1.1</li><li>Quality of
Service: WS-Reliable Messaging</li><li>Metadata: WS-Policy, WSDL 1.1 - Web
Service Definition Language</li><li>Communication Security: WS-Security,
WS-SecurityPolicy, WS-SecureConversation, WS-Trust (partial
support)</li><li>Messaging Support: WS-Addressing, SOAP 1.1, SOAP 1.2, Message
Transmission Optimization Mechanism (MTOM)</li></ul><h3
id="Index-MultipleTransports,ProtocolBindings,DataBindings,andFormats">Multiple
Transports, Protocol Bindings, Data Bindings, and
Formats</h3><ul><li>Transports: HTTP, Servlet, JMS, In-VM and many others via
the <a shape="rect" class="external-link"
href="http://camel.apache.org/camel-transport-for-cxf.html">Camel transport for
CXF</a> such as SMTP/POP3, TCP and Jabber</li><li>Protocol Bindings: SOAP,
REST/HTTP, pure XML</li><li>
Data bindings: JAXB 2.x, Aegis, Apache XMLBeans, Service Data Objects (SDO),
JiBX</li><li>Formats: XML Textual, JSON, FastInfoset</li><li>Extensibility API
allows additional bindings for CXF, enabling additional message format support
such as CORBA/IIOP</li></ul><h3 id="Index-FlexibleDeployment">Flexible
Deployment</h3><ul><li>Lightweight containers: deploy services in Jetty, Tomcat
or Spring-based containers</li><li>JBI integration: deploy as a service engine
in a JBI container such as ServiceMix, OpenESB or Petals</li><li>Java EE
integration: deploy services in Java EE application servers such as Apache
Geronimo, JOnAS, Redhat JBoss, OC4J, Oracle WebLogic, and IBM
WebSphere</li><li>Standalone Java client/server</li></ul><h3
id="Index-SupportforMultipleProgrammingLanguages">Support for Multiple
Programming Languages</h3><ul><li>Full support for JAX-WS 2.x client/server
programming model</li><li>JAX-WS 2.x synchronous, asynchronous and one-way
API's</li><li>JAX-WS 2.x Dynamic Invoca
tion Interface (DII) API</li><li>JAX-RS for RESTful clients</li><li>Support
for wrapped and non-wrapped styles</li><li>XML messaging API</li><li>Support
for JavaScript and ECMAScript 4 XML (E4X) - both client and
server</li><li>Support for CORBA</li><li>Support for JBI with
ServiceMix</li></ul><h3 id="Index-Tooling">Tooling</h3><ul><li>Generating Code:
WSDL to Java, WSDL to JavaScript, Java to JavaScript</li><li>Generating WSDL:
Java to WSDL, XSD to WSDL, IDL to WSDL, WSDL to XML</li><li>Adding Endpoints:
WSDL to SOAP, WSDL to CORBA, WSDL to service</li><li>Generating Support Files:
WSDL to IDL</li><li>Validating Files: WSDL Validation</li></ul><h2
id="Index-GettingInvolved">Getting Involved</h2><p>Apache CXF is currently
under heavy development. To get involved you can <a shape="rect"
href="mailing-lists.html">subscribe to the mailing lists</a>. You can also grab
the code from the <a shape="rect" href="source-repository.html">Source
Repository</a>. You also need to read about <a sh
ape="rect" href="building.html">Building</a> CXF. For Eclipse users, you
should read about <a shape="rect" href="setting-up-eclipse.html">Setting up
Eclipse</a>.</p></div>
+<div id="ConfluenceContent"><h1
id="Index-ApacheCXF™:AnOpen-SourceServicesFramework">Apache CXF™:
An Open-Source Services Framework</h1><h2
id="Index-Overview">Overview</h2><p>Apache CXF™ is an open source
services framework. CXF helps you build and develop services using frontend
programming APIs, like JAX-WS and JAX-RS. These services can speak a variety of
protocols such as SOAP, XML/HTTP, RESTful HTTP, or CORBA and work over a
variety of transports such as HTTP, JMS or JBI.</p><h2
id="Index-News">News</h2><h3
id="Index-September13,2017-ApacheCXF3.2.0released!">September 13, 2017 - Apache
CXF 3.2.0 released!</h3><p>The Apache CXF team is proud to announce the
availability of the latest major version of CXF: 3.2.0.   3.2.0
contains several new features including full JAX-RS 2.1 support, updated
Swagger support, enhanced tracing support, WS-Transfer support, and much
more. </p><p>Downloads are available <a shape="rect"
href="download.html">here
</a>.</p><p> </p><h3
id="Index-September13,2017-ApacheCXF3.1.13/3.0.15released!">September 13, 2017
- Apache CXF 3.1.13/3.0.15 released!</h3><p>The Apache CXF team is proud to
announce the availability of the latest patch releases. Over 35 JIRA issues
were fixed for 3.1.13 which many of those fixes back ported to
3.0.15.</p><p>This is mostly a patch release to fix problems and issues that
users have encountered.   Downloads are available <a
shape="rect" href="download.html">here</a>.</p><div
class="confluence-information-macro confluence-information-macro-warning"><span
class="aui-icon aui-icon-small aui-iconfont-error
confluence-information-macro-icon"></span><div
class="confluence-information-macro-body"><p>3.0.15 is the last planned release
for the 3.0.x branch of CXF. Users are HIGHLY encouraged to upgrade to a newer
version as soon as possible.</p></div></div><h3
id="Index-August3,2017-ApacheCXF2.6.17released!">August 3, 2017 - Apache CXF
2.6.17 released!</h
3><div>Apache CXF 2.6.17 has been released. This is a once-off release to fix
some security advisories that have been fixed in more recent versions of CXF.
CXF users should try as much as possible to upgrade to a more recent and
supported version of CXF.</div><p>The <a shape="rect"
href="security-advisories.html">advisories</a> fixed in this release are as
follows:</p><p> - CVE-2014-3577 <br clear="none"> - CVE-2014-3623 <br
clear="none"> - CVE-2015-5253 <br clear="none"> - CVE-2016-8739 <br
clear="none"> - CVE-2016-6812 <br clear="none"> -
CVE-2017-5656</p><h3
id="Index-June29,2017-ApacheCXF3.1.12/3.0.14released!">June 29, 2017 - Apache
CXF 3.1.12/3.0.14 released!</h3><p>The Apache CXF team is proud to announce the
availability of the latest patch releases. Over 55 JIRA issues were fixed for
3.1.12 which many of those fixes back ported to 3.0.14.</p><p>This is mostly a
patch release to fix problems and issues that users have encountered.
  Do
wnloads are available <a shape="rect"
href="download.html">here</a>.</p><h3
id="Index-April10,2017-ApacheCXF3.1.11/3.0.13released!">April 10, 2017 - Apache
CXF 3.1.11/3.0.13 released!</h3><p>The Apache CXF team is proud to announce the
availability of the latest patch releases. Over 100 JIRA issues were fixed for
3.1.11 which many of those fixes back ported to 3.0.13.</p><p>This is mostly a
patch release to fix problems and issues that users have encountered.
  Downloads are available <a shape="rect"
href="download.html">here</a>.</p><h3 id="Index-Features">Features</h3><p>CXF
includes a broad feature set, but it is primarily focused on the following
areas:</p><ul><li><strong>Web Services Standards Support:</strong> CXF supports
a variety of web service standards including SOAP, the WS-I Basic Profile,
WSDL, WS-Addressing, WS-Policy, WS-ReliableMessaging, WS-Security,
WS-SecurityPolicy, WS-SecureConverstation, and WS-Trust
(partial).</li><li><strong>Frontends:</s
trong> CXF supports a variety of "frontend" programming
models.</li></ul><p>CXF implements the JAX-WS APIs. CXF JAX-WS support includes
some extensions to the standard that make it significantly easier to use,
compared to the reference implementation: It will automatically generate code
for request and response bean classes, and does not require a WSDL for simple
cases.</p><p>It also includes a "simple frontend" which allows creation of
clients and endpoints without annotations. CXF supports both contract first
development with WSDL and code first development starting from Java.</p><p>For
REST, CXF also supports a JAX-RS frontend.</p><ul><li><strong>Ease of
use:</strong> CXF is designed to be intuitive and easy to use. There are simple
APIs to quickly build code-first services, Maven plug-ins to make tooling
integration easy, JAX-WS API support, Spring 2.x XML support to make
configuration a snap, and much more.</li><li><strong>Binary and Legacy Protocol
Support:</strong> CXF has be
en designed to provide a pluggable architecture that supports not only XML but
also non-XML type bindings, such as JSON and CORBA, in combination with any
type of transport.</li></ul><p>To get started using CXF, check out the <a
shape="rect" href="download.html">downloads</a>, the <a shape="rect"
href="http://cxf.apache.org/docs/index.html">user's guide</a>, or the <a
shape="rect" href="mailing-lists.html">mailing lists</a> to get more
information!</p><h2 id="Index-Goals">Goals</h2><h3
id="Index-General">General</h3><ul><li>High
Performance</li><li>Extensible</li><li>Intuitive & Easy to Use</li></ul><h3
id="Index-SupportforStandards">Support for Standards</h3><h5
id="Index-JSRSupport">JSR Support</h5><ul><li>JAX-WS - Java API for XML-Based
Web Services (JAX-WS) 2.0 - <a shape="rect" class="external-link"
href="http://jcp.org/en/jsr/detail?id=224"
rel="nofollow">JSR-224</a></li><li>Web Services Metadata for the Java Platform
- <a shape="rect" class="external-link" href="http://jc
p.org/en/jsr/detail?id=181" rel="nofollow">JSR-181</a></li><li>JAX-RS - The
Java API for RESTful Web Services - <a shape="rect" class="external-link"
href="http://jcp.org/en/jsr/detail?id=311"
rel="nofollow">JSR-311</a></li><li>SAAJ - SOAP with Attachments API for Java
(SAAJ) - <a shape="rect" class="external-link"
href="http://jcp.org/aboutJava/communityprocess/mrel/jsr067/index3.html"
rel="nofollow">JSR-67</a></li></ul><h5
id="Index-WS-*andrelatedSpecificationsSupport">WS-* and related Specifications
Support</h5><ul><li>Basic support: WS-I Basic Profile 1.1</li><li>Quality of
Service: WS-Reliable Messaging</li><li>Metadata: WS-Policy, WSDL 1.1 - Web
Service Definition Language</li><li>Communication Security: WS-Security,
WS-SecurityPolicy, WS-SecureConversation, WS-Trust (partial
support)</li><li>Messaging Support: WS-Addressing, SOAP 1.1, SOAP 1.2, Message
Transmission Optimization Mechanism (MTOM)</li></ul><h3
id="Index-MultipleTransports,ProtocolBindings,DataBindings,andFormats
">Multiple Transports, Protocol Bindings, Data Bindings, and
Formats</h3><ul><li>Transports: HTTP, Servlet, JMS, In-VM and many others via
the <a shape="rect" class="external-link"
href="http://camel.apache.org/camel-transport-for-cxf.html">Camel transport for
CXF</a> such as SMTP/POP3, TCP and Jabber</li><li>Protocol Bindings: SOAP,
REST/HTTP, pure XML</li><li>Data bindings: JAXB 2.x, Aegis, Apache XMLBeans,
Service Data Objects (SDO), JiBX</li><li>Formats: XML Textual, JSON,
FastInfoset</li><li>Extensibility API allows additional bindings for CXF,
enabling additional message format support such as CORBA/IIOP</li></ul><h3
id="Index-FlexibleDeployment">Flexible Deployment</h3><ul><li>Lightweight
containers: deploy services in Jetty, Tomcat or Spring-based
containers</li><li>JBI integration: deploy as a service engine in a JBI
container such as ServiceMix, OpenESB or Petals</li><li>Java EE integration:
deploy services in Java EE application servers such as Apache Geronimo, JOnAS,
Red
hat JBoss, OC4J, Oracle WebLogic, and IBM WebSphere</li><li>Standalone Java
client/server</li></ul><h3
id="Index-SupportforMultipleProgrammingLanguages">Support for Multiple
Programming Languages</h3><ul><li>Full support for JAX-WS 2.x client/server
programming model</li><li>JAX-WS 2.x synchronous, asynchronous and one-way
API's</li><li>JAX-WS 2.x Dynamic Invocation Interface (DII) API</li><li>JAX-RS
for RESTful clients</li><li>Support for wrapped and non-wrapped
styles</li><li>XML messaging API</li><li>Support for JavaScript and ECMAScript
4 XML (E4X) - both client and server</li><li>Support for CORBA</li><li>Support
for JBI with ServiceMix</li></ul><h3
id="Index-Tooling">Tooling</h3><ul><li>Generating Code: WSDL to Java, WSDL to
JavaScript, Java to JavaScript</li><li>Generating WSDL: Java to WSDL, XSD to
WSDL, IDL to WSDL, WSDL to XML</li><li>Adding Endpoints: WSDL to SOAP, WSDL to
CORBA, WSDL to service</li><li>Generating Support Files: WSDL to
IDL</li><li>Validating Files: WSDL
Validation</li></ul><h2 id="Index-GettingInvolved">Getting
Involved</h2><p>Apache CXF is currently under heavy development. To get
involved you can <a shape="rect" href="mailing-lists.html">subscribe to the
mailing lists</a>. You can also grab the code from the <a shape="rect"
href="source-repository.html">Source Repository</a>. You also need to read
about <a shape="rect" href="building.html">Building</a> CXF. For Eclipse users,
you should read about <a shape="rect" href="setting-up-eclipse.html">Setting up
Eclipse</a>.</p></div>
</div>
<!-- Content -->
</td>