Author: buildbot
Date: Tue Nov 20 17:48:02 2012
New Revision: 838950
Log:
Production update by buildbot for cxf
Modified:
websites/production/cxf/content/cache/docs.pageCache
websites/production/cxf/content/docs/jax-rs-advanced-features.html
websites/production/cxf/content/docs/schemas-and-namespaces.html
Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/docs/jax-rs-advanced-features.html
==============================================================================
--- websites/production/cxf/content/docs/jax-rs-advanced-features.html
(original)
+++ websites/production/cxf/content/docs/jax-rs-advanced-features.html Tue Nov
20 17:48:02 2012
@@ -905,7 +905,7 @@ server = sf.create();
</span>
<span class="code-comment">// or instead of registering
SQLPrinterVisitor, register JPA2TypedQueryVisitor
</span> <span class="code-comment">// (see section on JPA2) and <span
class="code-keyword">do</span>
-</span> TypedQuery<Book> query =
searchContext.getConvertedExpression(expression);
+</span> TypedQuery<Book> query =
searchContext.getConvertedExpression(expression, Book.class, TypedQuery.class);
<span class="code-keyword">return</span> query.getResultList();
}
}
Modified: websites/production/cxf/content/docs/schemas-and-namespaces.html
==============================================================================
--- websites/production/cxf/content/docs/schemas-and-namespaces.html (original)
+++ websites/production/cxf/content/docs/schemas-and-namespaces.html Tue Nov 20
17:48:02 2012
@@ -123,25 +123,35 @@ Apache CXF -- Schemas and Namespaces
<div class="wiki-content">
<div id="ConfluenceContent"><h1><a shape="rect"
name="SchemasandNamespaces-UseofSchemasandNamespaces"></a>Use of Schemas and
Namespaces</h1>
-<p>CXF uses XML schemas extensively in the runtime: Its core includes the JAXB
mappings of standard schemas such as <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/wsdl/"
rel="nofollow">http://schemas.xmlsoap.org/wsdl/</a> and <a shape="rect"
class="external-link" href="http://www.w3.org/2006/03/addressing/ws-addr.xsd"
rel="nofollow">http://www.w3.org/2006/03/addressing/ws-addr.xsd</a>. CXF also
defines its own schemas for WSDL extensions such as the jms-address element in
namespace <a shape="rect"
href="http://cxf.apache.org/transports/jms">http://cxf.apache.org/transports/jms</a>,
and schemas for Spring configuration, for example the <a shape="rect"
href="http://cxf.apache.org/jaxws">http://cxf.apache.org/jaxws</a>
namespace.</p>
+<p>CXF uses XML schemas extensively in the runtime: Its core includes the JAXB
mappings of standard schemas such as <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/wsdl/"
rel="nofollow">http://schemas.xmlsoap.org/wsdl/</a> and <a shape="rect"
class="external-link" href="http://www.w3.org/2006/03/addressing/ws-addr.xsd"
rel="nofollow">http://www.w3.org/2006/03/addressing/ws-addr.xsd</a>. CXF also
defines its own schemas for WSDL extensions such as the jms-address element in
namespace <a shape="rect"
href="http://cxf.apache.org/transports/jms">http://cxf.apache.org/transports/jms</a>,
and schemas for both Spring and Blueprint (OSGi) configuration, for example
the <a shape="rect"
href="http://cxf.apache.org/jaxws">http://cxf.apache.org/jaxws</a> and <a
shape="rect"
href="http://cxf.apache.org/blueprint/jaxws">http://cxf.apache.org/blueprint/jaxws</a>
namespaces.</p>
-<p>To avoid accessing resources over the network during a build, CXF maintains
local copies of these schemas. Logically however, third party as well as CXF
schemas, are as well as the CXF schemas, are referred to by their public URIs
in schemaLocation attributes and similar places. The CXF code generators use
catalog files to map them to their actual location in the trunk, see the
pom.xml file in the api module for an example.</p>
+<p>To avoid accessing resources over the network during a build, CXF maintains
local copies of these schemas. Logically however, third party as well as CXF
schemas are referred to by their public URIs in schemaLocation attributes and
similar places. The CXF code generators use catalog files to map them to their
actual location in the trunk, see the pom.xml file in the api module for an
example.</p>
-<p>Spring uses a similar way to map URIs to locations on the classpath
(spring.schemas files), and that way validates your Spring configuration files.
Validation is extremely helpful in diagnosing errors in CXF configurations, but
it is also very expensive at runtime. Once you have got your application
working, you can disable validation by setting a system property:
<tt>org.apache.cxf.spring.validation.mode</tt> (in 2.1) or
<tt>spring.validation.mode</tt> (in 2.0.x). Set it as follows to disable
validation:</p>
+<p>Note if you're using Spring it will validate your Spring configuration
files, using information in each JAR's META-INF/spring.schemas file (an example
<a shape="rect" class="external-link"
href="http://svn.apache.org/viewvc/cxf/trunk/rt/ws/policy/src/main/resources/META-INF/spring.schemas?view=markup">here</a>).
Validation is extremely helpful in diagnosing errors in CXF configurations,
but it is also expensive at runtime. Once you have got your application
working, you can disable validation by setting a system property:
<tt>-Dorg.apache.spring.validation.mode=VALIDATION_NONE</tt></p>
-<p><tt>-Dorg.apache.spring.validation.mode=VALIDATION_NONE</tt></p>
+<p>The table below includes the URIs for the CXF configuration schemas that
you need to specify in your Spring configuration file's schemaLocation
attribute so that Spring's validating parser can validate the file. In theory
you need not be concerned with the actual location of the files: Spring can
normally detect their location from the classpath. And if you want to check the
content of a schema file (in a binary distribution), you should be able to do
so using its URI. You can also use the classpath location in the table below to
find the original version of the schema in the trunk.</p>
-<p>The table below lists the URIs for the CXF configuration schemas that you
need to specify in your Spring configuration file's schemaLocation attribute so
that Spring's validating parse can validate the file.<br clear="none">
-In theory you need not be concerned with the actual location of the files:
Spring knows about their location on the classpath. And if you want to check
the content of a schema file (in a binary distribution), you should be able to
do so using its URI. At the moment this is not possible, however CXF aims at
publishing its schemas in the future. In the meantime, you can use the
classpath location in the table below to find the original version of the
schema in the trunk.</p>
-
-<p><b>Configuration Schemas</b></p>
+<p><b>Configuration Schemas common to both Spring and Blueprint</b></p>
<div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1"
class="confluenceTh"> URI </th><th colspan="1" rowspan="1"
class="confluenceTh"> Target Namespace </th><th colspan="1" rowspan="1"
class="confluenceTh"> Classpath Resource </th><th colspan="1" rowspan="1"
class="confluenceTh"> Module </th></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/core.xsd">http://cxf.apache.org/schemas/core.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/core">http://cxf.apache.org/core</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/core.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-core </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/http-conf.xsd">http://cxf.apache.org/schemas/configuration/http-conf.xsd</a>
</td><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/http/configuration">http://cxf.apache.org/transports/http/configuration</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/http-conf.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-http </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/http-jetty.xsd">http://cxf.apache.org/schemas/configuration/http-jetty.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/http-jetty/configuration">http://cxf.apache.org/transports/http-jetty/configuration</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/http-jetty.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-http-jetty </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" hr
ef="http://cxf.apache.org/schemas/configuration/jms.xsd">http://cxf.apache.org/schemas/configuration/jms.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/jms">http://cxf.apache.org/transports/jms</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/jms.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-jms </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/security.xsd">http://cxf.apache.org/schemas/configuration/security.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/configuration/security">http://cxf.apache.org/configuration/security</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/security.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-common-schemas </td></tr><tr><
td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/soap.xsd">http://cxf.apache.org/schemas/configuration/soap.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/bindings/soap">http://cxf.apache.org/bindings/soap</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/soap.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-bindings-soap </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/jaxws.xsd">http://cxf.apache.org/schemas/jaxws.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/jaxws">http://cxf.apache.org/jaxws</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/jaxws.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-jaxws
</td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/simple.xsd">http://cxf.apache.org/schemas/simple.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/simple">http://cxf.apache.org/simple</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/simple.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-simple
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/ws-addr-conf.xsd">http://cxf.apache.org/schemas/ws-addr-conf.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/addressing">http://cxf.apache.org/ws/addressing</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/ws-addr-conf.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-addr </td></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd">
<a shape="rect"
href="http://cxf.apache.org/schemas/configuration/wsrm-manager-types.xsd">http://cxf.apache.org/schemas/configuration/wsrm-manager-types.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/rm/manager">http://cxf.apache.org/ws/rm/manager</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/wsrm-manager-types.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-rm </td></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd">http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/rm/manager">http://cxf.apache.org/ws/rm/manager</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/wsrm-manager.xsd * </td><td colspan="1" rowspan="1"
class="
confluenceTd"> cxf-rt-ws-rm </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1"
class="confluenceTh"> URI </th><th colspan="1" rowspan="1"
class="confluenceTh"> Target Namespace </th><th colspan="1" rowspan="1"
class="confluenceTh"> Classpath Resource </th><th colspan="1" rowspan="1"
class="confluenceTh"> Module </th></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/http-conf.xsd">http://cxf.apache.org/schemas/configuration/http-conf.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/http/configuration">http://cxf.apache.org/transports/http/configuration</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/http-conf.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-http </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/config
uration/http-jetty.xsd">http://cxf.apache.org/schemas/configuration/http-jetty.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/http-jetty/configuration">http://cxf.apache.org/transports/http-jetty/configuration</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/http-jetty.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-http-jetty </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/jms.xsd">http://cxf.apache.org/schemas/configuration/jms.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/jms">http://cxf.apache.org/transports/jms</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/jms.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-jms </td></tr><tr
><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
>href="http://cxf.apache.org/schemas/configuration/security.xsd">http://cxf.apache.org/schemas/configuration/security.xsd</a>
> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
>href="http://cxf.apache.org/configuration/security">http://cxf.apache.org/configuration/security</a>
> </td><td colspan="1" rowspan="1" class="confluenceTd">
>/schemas/configuration/security.xsd </td><td colspan="1" rowspan="1"
>class="confluenceTd"> cxf-common-schemas </td></tr><tr><td colspan="1"
>rowspan="1" class="confluenceTd"> <a shape="rect"
>href="http://cxf.apache.org/schemas/configuration/soap.xsd">http://cxf.apache.org/schemas/configuration/soap.xsd</a>
> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
>href="http://cxf.apache.org/bindings/soap">http://cxf.apache.org/bindings/soap</a>
> </td><td colspan="1" rowspan="1" class="confluenceTd">
>/schemas/configuration/soap.xsd </td><td colspan="1" r
owspan="1" class="confluenceTd"> cxf-rt-bindings-soap </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/ws-addr-conf.xsd">http://cxf.apache.org/schemas/ws-addr-conf.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/addressing">http://cxf.apache.org/ws/addressing</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/ws-addr-conf.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-addr </td></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/wsrm-manager-types.xsd">http://cxf.apache.org/schemas/configuration/wsrm-manager-types.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/rm/manager">http://cxf.apache.org/ws/rm/manager</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> /schemas/co
nfiguration/wsrm-manager-types.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-rm </td></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd">http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/ws/rm/manager">http://cxf.apache.org/ws/rm/manager</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/wsrm-manager.xsd * </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-rm </td></tr></tbody></table>
</div>
<p>* wsrm-manager.xsd does an "xsd:include" on wsrm-manager-types.xsd as they
are in the same namespace. As such, the user just needs to reference
wsrm-manager.xsd to use both.</p>
+<p><b>Spring-only Schemas</b></p>
+<div class="table-wrap">
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1"
class="confluenceTh"> URI </th><th colspan="1" rowspan="1"
class="confluenceTh"> Target Namespace </th><th colspan="1" rowspan="1"
class="confluenceTh"> Classpath Resource </th><th colspan="1" rowspan="1"
class="confluenceTh"> Module </th></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/core.xsd">http://cxf.apache.org/schemas/core.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/core">http://cxf.apache.org/core</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/core.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-core </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/jaxrs.xsd">http://cxf.apache.org/schemas/jaxrs.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect
" href="http://cxf.apache.org/jaxrs">http://cxf.apache.org/jaxrs</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/jaxrs.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-jaxrs
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/jaxws.xsd">http://cxf.apache.org/schemas/jaxws.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/jaxws">http://cxf.apache.org/jaxws</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/jaxws.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-jaxws
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/policy.xsd">http://cxf.apache.org/schemas/policy.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/policy">http://cxf.apache.org/policy<
/a> </td><td colspan="1" rowspan="1" class="confluenceTd"> /schemas/policy.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-ws-policy
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/simple.xsd">http://cxf.apache.org/schemas/simple.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/simple">http://cxf.apache.org/simple</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/simple.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-simple
</td></tr></tbody></table>
+</div>
+
+
+<p><b>Blueprint-only Schemas</b></p>
+<div class="table-wrap">
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1"
class="confluenceTh"> URI </th><th colspan="1" rowspan="1"
class="confluenceTh"> Target Namespace </th><th colspan="1" rowspan="1"
class="confluenceTh"> Classpath Resource </th><th colspan="1" rowspan="1"
class="confluenceTh"> Module </th></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/blueprint/core.xsd">http://cxf.apache.org/schemas/blueprint/core.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/core">http://cxf.apache.org/core</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/blueprint/core.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-core
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/blueprint/jaxrs.xsd">http://cxf.apache.org/schemas/blueprint/jaxrs.xsd</a>
</td><td colspan="1
" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/jaxrs">http://cxf.apache.org/jaxrs</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/blueprint/jaxrs.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-jaxrs
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/blueprint/jaxws.xsd">http://cxf.apache.org/schemas/blueprint/jaxws.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/jaxws">http://cxf.apache.org/jaxws</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/blueprint/jaxws.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-jaxws
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/blueprint/policy.xsd">http://cxf.apache.org/schemas/blueprint/policy.xsd</a>
</td><td colspan="1" rowsp
an="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/policy">http://cxf.apache.org/policy</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/blueprint/policy.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-ws-policy
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/blueprint/simple.xsd">http://cxf.apache.org/schemas/blueprint/simple.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/simple">http://cxf.apache.org/simple</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/blueprint/simple.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-frontend-simple
</td></tr></tbody></table>
+</div>
+
+
+
<p><b>Example</b></p>
<p>The following is an example of a valid Spring configuration file. Using the
table above, there is no magic involved in setting the correct value for the
schemaLocation attribute!</p>
@@ -169,7 +179,8 @@ http://www.springframework.org/schema/be
</div></div>
<p><b>Other Schemas</b></p>
-<p>The following schemas are imported by the schemas above, directly or
indirectly. You may also find their classpath locations useful when you import
or include any of the schemas below in your own schema, and want to know hpw
you can access them locally (actually, it'd be cool if someone wrote a
CatalogResolver based on the URI - classpath location mappings that already
exist and get the CXF tools and/or xjc to use it).</p>
+<p>The following schemas are imported by one or more of the schemas above,
directly or indirectly. You may also find their classpath locations useful when
you import or include any of the schemas below in your own schema, and want to
know hpw you can access them locally.</p>
+
<div class="table-wrap">
<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1"
class="confluenceTh"> URI </th><th colspan="1" rowspan="1"
class="confluenceTh"> Target Namespace </th><th colspan="1" rowspan="1"
class="confluenceTh"> Classpath Resource </th><th colspan="1" rowspan="1"
class="confluenceTh"> Module </th></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd">http://cxf.apache.org/schemas/configuration/cxf-beans.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/configuration/beans">http://cxf.apache.org/configuration/beans</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/cxf-beans.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-common-utilities </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/wsdl/http-conf.xsd">http://c
xf.apache.org/schemas/wsdl/http-conf.xsd</a> </td><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/http/configuration">http://cxf.apache.org/transports/http/configuration</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/wsdl/http-conf.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-transports-http </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/schemas/wsdl/jms.xsd">http://cxf.apache.org/schemas/wsdl/jms.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
href="http://cxf.apache.org/transports/jms">http://cxf.apache.org/transports/jms</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> /schemas/wsdl/jms.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-transports-jms
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="ht
tp://www.w3.org/2010/soapjms"
rel="nofollow">http://www.w3.org/2010/soapjms</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"><a shape="rect" class="external-link"
href="http://www.w3.org/2010/soapjms"
rel="nofollow">http://www.w3.org/2010/soapjms</a></td><td colspan="1"
rowspan="1" class="confluenceTd"> /schemas/wsdl/spec/jms-spec-wsdl.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-transports-jms
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link"
href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
rel="nofollow">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link"
href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
rel="nofollow">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secex
t-1.0.xsd</a> </td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/oasis-200401-wss-wssecurity-secext-1.0.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-rt-ws-policy </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link"
href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
rel="nofollow">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link"
href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
rel="nofollow">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd">
/schemas/oasis-200401-wss-wssecurity-utility-1.0.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-rt-ws-policy </td></tr><tr><td
colspan="1" rowspan
="1" class="confluenceTd"> <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/ws/2004/08/addressing"
rel="nofollow">http://schemas.xmlsoap.org/ws/2004/08/addressing</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://schemas.xmlsoap.org/ws/2004/08/addressing"
rel="nofollow">http://schemas.xmlsoap.org/ws/2004/08/addressing</a> </td><td
colspan="1" rowspan="1" class="confluenceTd"> /schemas/wsdl/addressing.xsd
</td><td colspan="1" rowspan="1" class="confluenceTd"> cxf-common-schemas
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link"
href="http://schemas.xmlsoap.org/ws/2004/09/policy/ws-policy.xsd"
rel="nofollow">http://schemas.xmlsoap.org/ws/2004/09/policy/ws-policy.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://schemas.xmlsoap.org/ws/2004/09/policy"
rel="nofollow">http://schemas.xmls
oap.org/ws/2004/09/policy</a> </td><td colspan="1" rowspan="1"
class="confluenceTd"> /schemas/ws-policy-200409.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-rt-ws-rm </td></tr><tr><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm-policy.xsd"
rel="nofollow">http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm-policy.xsd</a>
</td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://schemas.xmlsoap.org/ws/2005/02/rm/policy"
rel="nofollow">http://schemas.xmlsoap.org/ws/2005/02/rm/policy</a> </td><td
colspan="1" rowspan="1" class="confluenceTd">
/schemas/configuration/wsrm-policy.xsd </td><td colspan="1" rowspan="1"
class="confluenceTd"> cxf-rt-ws-rm </td></tr><tr><td colspan="1" rowspan="1"
class="confluenceTd"> <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/wsdl/"
rel="nofollow">http://schemas.xmlsoap.org/wsd
l/</a> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://schemas.xmlsoap.org/wsdl/"
rel="nofollow">http://schemas.xmlsoap.org/wsdl/</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> /schemas/wsdl/wsdl.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-common-schemas </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://schemas.xmlsoap.org/wsdl/http/"
rel="nofollow">http://schemas.xmlsoap.org/wsdl/http/</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link"
href="http://schemas.xmlsoap.org/wsdl/http/"
rel="nofollow">http://schemas.xmlsoap.org/wsdl/http/</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> /schemas/wsdl/http.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-common-schemas </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="externa
l-link" href="http://www.w3.org/2001/xml.xsd"
rel="nofollow">http://www.w3.org/2001/xml.xsd</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link"
href="http://www.w3.org/XML/1998/namespace"
rel="nofollow">http://www.w3.org/XML/1998/namespace</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> /schemas/xml.xsd </td><td colspan="1"
rowspan="1" class="confluenceTd"> cxf-rt-ws-policy </td></tr><tr><td
colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect"
class="external-link" href="http://www.w3.org/2006/07/ws-policy.xsd"
rel="nofollow">http://www.w3.org/2006/07/ws-policy.xsd</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link"
href="http://www.w3.org/2006/07/ws-policy"
rel="nofollow">http://www.w3.org/2006/07/ws-policy</a> </td><td colspan="1"
rowspan="1" class="confluenceTd"> /schemas/ws-policy-200607.xsd </td><td
colspan="1" rowspan="1" class="confluenceTd"> cxf-rt-ws-policy
</td></tr></tbody></table>
</div>