Author: buildbot
Date: Wed Feb 27 15:48:31 2013
New Revision: 852242

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/jax-rs-redirection.html
    websites/production/cxf/content/docs/security.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/jax-rs-redirection.html
==============================================================================
--- websites/production/cxf/content/docs/jax-rs-redirection.html (original)
+++ websites/production/cxf/content/docs/jax-rs-redirection.html Wed Feb 27 
15:48:31 2013
@@ -347,6 +347,9 @@ http://www.springframework.org/schema/ut
 
 <p>For example, given a simple class name such as "BookInfo", 
RequestDispatcherProvider will check if a "/WEB-INF/bookInfo.jsp" handler is 
available or not. The provider will likely be extended to check few more 
locations as needed.  </p>
 
+<p>RequestDispatcherProvider also checks a "redirect.resource.path" property 
on the outbound message. If this property is set then it will try to find a 
RequestDispatcher available on a given path.</p>
+
+
 <p>Finally, a 'servletContextPath' property can be used to have some other 
ServletContext (as opposed to the current one) be used for RequestDispatcher 
look-ups. If set then the current ServletContext.getContext(servletContextPath) 
will be used to get the needed ServletContext.</p>
 
 <h2><a shape="rect" name="JAX-RSRedirection-Loggingredirects"></a>Logging 
redirects</h2>

Modified: websites/production/cxf/content/docs/security.html
==============================================================================
--- websites/production/cxf/content/docs/security.html (original)
+++ websites/production/cxf/content/docs/security.html Wed Feb 27 15:48:31 2013
@@ -226,10 +226,13 @@ Apache CXF -- Security
 <span class="code-tag">&lt;bean id=<span 
class="code-quote">"authorizationInterceptor"</span> class=<span 
class="code-quote">"org.apache.cxf.interceptor.security.SimpleAuthorizingInterceptor"</span>&gt;</span>
    <span class="code-tag">&lt;property name=<span 
class="code-quote">"methodRolesMap"</span>&gt;</span>
       <span class="code-tag">&lt;map&gt;</span>
+        <span class="code-tag"><span class="code-comment">&lt;!-- no wildcard 
support, names need to match exactly --&gt;</span></span>
         <span class="code-tag">&lt;entry key=<span 
class="code-quote">"addNumbers"</span> value=<span 
class="code-quote">"ROLE_USER ROLE_ADMIN"</span>/&gt;</span>
         <span class="code-tag">&lt;entry key=<span 
class="code-quote">"divideNumbers"</span> value=<span 
class="code-quote">"ROLE_ADMIN"</span>/&gt;</span>
       <span class="code-tag">&lt;/map&gt;</span>
    <span class="code-tag">&lt;/property&gt;</span>
+   <span class="code-tag"><span class="code-comment">&lt;!-- its possible to 
define global roles that apply to all WSDL operations not listed above 
--&gt;</span></span>
+   <span class="code-tag">&lt;property name=<span 
class="code-quote">"globalRoles"</span> value=<span 
class="code-quote">"ROLE_ADMIN"</span>/&gt;</span>
 <span class="code-tag">&lt;/bean&gt;</span>
 
 <span class="code-tag">&lt;jaxws:endpoint id=<span 
class="code-quote">"endpoint2"</span> address=<span 
class="code-quote">"/soapService2"</span> implementor=<span 
class="code-quote">"#secureBean"</span>&gt;</span>


Reply via email to