<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    how to migrate jboss-wsse-server.xml setting of jboss 5 to jboss 7.1?
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/aupres">Joseph Hwang</a> in <i>JBoss Web Services</i> - <a href="https://community.jboss.org/message/819762#819762">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>As you know, ws-security in jboss 5 was implemented with jboss-wsse-server.xml like below :</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>=== jboss-wsse-server.xml ======</p><p>&lt;jboss-ws-security xmlns="<a class="jive-link-external-small" href="http://www.jboss.com/ws-security/config" rel="nofollow" target="_blank">http://www.jboss.com/ws-security/config</a>"&#160; xmlns:xsi="<a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a>"</p><p>xsi:schemaLocation="<a class="jive-link-external-small" href="http://www.jboss.com/ws-security/config" rel="nofollow" target="_blank">http://www.jboss.com/ws-security/config</a>&#160; <a class="jive-link-external-small" href="http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd" rel="nofollow" target="_blank">http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd</a>"&gt;</p><p>&#160;&#160; &lt;key-store-file&gt;WEB-INF/wsse.keystore&lt;/key-store-file&gt;</p><p>&#160;&#160; &lt;key-store-password&gt;jbossws&lt;/key-store-password&gt;</p><p>&#160;&#160; &lt;trust-store-file&gt;WEB-INF/wsse.truststore&lt;/trust-store-file&gt;</p><p>&#160;&#160; &lt;trust-store-password&gt;jbossws&lt;/trust-store-password&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;config&gt;</p><p>&#160;&#160;&#160;&#160; &lt;sign type="x509v3" alias="wsse"/&gt;</p><p>&#160;&#160;&#160;&#160; &lt;requires&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;signature/&gt;</p><p>&#160;&#160;&#160;&#160; &lt;/requires&gt;</p><p>&#160;&#160; &lt;/config&gt;</p><p>&lt;/jboss-ws-security&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>and, </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>@WebService</p><p>@EndpointConfig(configName = "Standard WSSecurity Endpoint")</p><p>public class HelloJavaBean</p><p>{</p><p>&#160;&#160; .....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I want to know how to migrate these jboss-5 ws-security settings to jboss 7. I guess 'endpoint-config' element of jboss-7 standalone.xml is related with these setting.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;subsystem xmlns="urn:jboss:domain:webservices:1.1"&gt;</p><p>&#160;&#160; &lt;modify-wsdl-address&gt;true&lt;/modify-wsdl-address&gt;</p><p>&#160;&#160; &lt;wsdl-host&gt;${jboss.bind.address:127.0.0.1}&lt;/wsdl-host&gt;</p><p>&#160;&#160; </p><p>&#160;&#160; &lt;endpoint-config name="Standard-Endpoint-Config"/&gt;</p><p>&#160;&#160; &lt;endpoint-config name="Recording-Endpoint-Config"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;/pre-handler-chain&gt;</p><p>&#160;&#160;&#160; &lt;/endpoint-config&gt;</p><p>&#160;&#160;&#160; <strong>&lt;endpoint-config name="Custom-Endpoint-Config"&gt; &lt;!-- I think element would be like this format, just guess!--&gt;</strong></p><p><strong>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="key-store-file" value="WEB-INF/wsse.keystore"/&gt;</strong></p><p><strong>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="key-store-password" value="jbossws"/&gt;</strong></p><p><strong>&#160;&#160;&#160;&#160; &lt;/endpoint-config&gt;</strong></p><p>&lt;/subsystem&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>@WebService</p><p>@EndpointConfig(configName = <strong>"Custom-Endpoint-Config"</strong>&gt;</p><p>public class HelloJavaBean</p><p>{</p><p>.....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>If you know any document or reference site, kindly inform me.</p><p>Best regards.</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/819762#819762">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Web Services at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2044">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>