alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (server.xml)

This example Apache CXF source code file (server.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

alice, alice, any, apache, asf, asf, license, license, of, scenario, scenario, see, version, you

The Apache CXF server.xml source code

<?xml version="1.0" encoding="UTF-8"?>
<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements. See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership. The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License. You may obtain a copy of the License at
 
 http://www.apache.org/licenses/LICENSE-2.0
 
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied. See the License for the
 specific language governing permissions and limitations
 under the License.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xmlns:http="http://cxf.apache.org/transports/http/configuration"
    xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration"
    xmlns:sec="http://cxf.apache.org/configuration/security"
    xmlns:security="http://schemas.iona.com/soa/security-config"
    xmlns:interop="http://InteropBaseAddress/interop"
    xmlns:cxf="http://cxf.apache.org/core"
    xmlns:p="http://cxf.apache.org/policy"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans                     http://www.springframework.org/schema/beans/spring-beans.xsd
        http://cxf.apache.org/jaxws                                     http://cxf.apache.org/schemas/jaxws.xsd
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
        http://cxf.apache.org/policy http://cxf.apache.org/schemas/policy.xsd
        http://cxf.apache.org/transports/http/configuration             http://cxf.apache.org/schemas/configuration/http-conf.xsd
        http://cxf.apache.org/transports/http-jetty/configuration       http://cxf.apache.org/schemas/configuration/http-jetty.xsd
        http://cxf.apache.org/configuration/security                    http://cxf.apache.org/schemas/configuration/security.xsd
        http://schemas.iona.com/soa/security-config                     http://schemas.iona.com/soa/security-config.xsd
    ">
    
    <cxf:bus>
        <cxf:features>
            <p:policies/>
            <cxf:logging/>
        </cxf:features>
    </cxf:bus>

    <!-- -->
    <!-- Any services listening on port 9001 must use the following -->
    <!-- Transport Layer Security (TLS) settings -->
    <!-- -->
    <httpj:engine-factory id="tls-settings">
        <httpj:engine port="9001">
            <httpj:tlsServerParameters>
                <sec:keyManagers keyPassword="password">
                    <sec:keyStore type="pkcs12" password="password" resource="certs/bob.pfx"/>
                </sec:keyManagers>
                <sec:trustManagers>
                    <sec:keyStore type="pkcs12" password="password" resource="certs/alice.pfx"/>
                </sec:trustManagers> 

                <!--
                <sec:cipherSuitesFilter>
                    <sec:include>.*_EXPORT_.*
                    <sec:include>.*_EXPORT1024_.*
                    <sec:include>.*_WITH_DES_.*
                    <sec:include>.*_WITH_NULL_.*
                    <sec:exclude>.*_DH_anon_.*
                </sec:cipherSuitesFilter>
                <sec:clientAuthentication want="true" required="true"/>
                -->
            </httpj:tlsServerParameters>
        </httpj:engine>
    </httpj:engine-factory>
    
    <!-- -->
    <!-- Scenario 3.1 -->
    <!-- -->
    <jaxws:endpoint 
       id="UserNameOverTransport"
       address="https://localhost:9001/UserNameOverTransport" 
       serviceName="interop:PingService10"
       endpointName="interop:UserNameOverTransport_IPingService"
       implementor="interop.server.UserNameOverTransport"
       depends-on="tls-settings">
        
       <jaxws:properties>
            <entry key="ws-security.username" value="Alice"/>
            <entry key="ws-security.callback-handler" value="interop.client.UTPasswordCallback"/>
        </jaxws:properties> 
     
    </jaxws:endpoint> 
    

    <!-- -->
    <!-- Scenario 3.3 -->
    <!-- -->
    <jaxws:endpoint 
       name="{http://InteropBaseAddress/interop}MutualCertificate10SignEncrypt_IPingService"
       id="MutualCertificate10SignEncrypt"
       address="http://localhost:9002/MutualCertificate10SignEncrypt" 
       serviceName="interop:PingService10"
       endpointName="interop:MutualCertificate10SignEncrypt_IPingService"
       implementor="interop.server.MutualCertificate10SignEncrypt">
        
        <jaxws:properties>
            <entry key="ws-security.username" value="Alice"/>
            <entry key="ws-security.signature.properties" value="etc/bob.properties"/>
            <entry key="ws-security.encryption.properties" value="etc/alice.properties"/>
            <entry key="ws-security.callback-handler" value="interop.server.KeystorePasswordCallback"/>
        </jaxws:properties> 

    </jaxws:endpoint> 
    

    <!-- -->
    <!-- Scenario 3.4 -->
    <!-- -->
    <jaxws:endpoint 
       name="{http://InteropBaseAddress/interop}MutualCertificate10SignEncryptRsa15TripleDes_IPingService"
       id="MutualCertificate10SignEncryptRsa15TripleDes"
       address="http://localhost:9000/MutualCertificate10SignEncryptRsa15TripleDes" 
       serviceName="interop:PingService10"
       endpointName="interop:MutualCertificate10SignEncryptRsa15TripleDes_IPingService"
       implementor="interop.server.MutualCertificate10SignEncryptRsa15TripleDes">
        
        <jaxws:properties>
            <entry key="ws-security.username" value="Alice"/>
            <entry key="ws-security.signature.properties" value="etc/bob.properties"/>
            <entry key="ws-security.encryption.properties" value="etc/alice.properties"/>
            <entry key="ws-security.callback-handler" value="interop.server.KeystorePasswordCallback"/>
        </jaxws:properties> 

    </jaxws:endpoint> 

    
</beans>

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF server.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.