<!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;"> </p><p>=== jboss-wsse-server.xml ======</p><p><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>"  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>  <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>"></p><p>   <key-store-file>WEB-INF/wsse.keystore</key-store-file></p><p>   <key-store-password>jbossws</key-store-password></p><p>   <trust-store-file>WEB-INF/wsse.truststore</trust-store-file></p><p>   <trust-store-password>jbossws</trust-store-password></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>   <config></p><p>     <sign type="x509v3" alias="wsse"/></p><p>     <requires></p><p>       <signature/></p><p>     </requires></p><p>   </config></p><p></jboss-ws-security></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>and, </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>@WebService</p><p>@EndpointConfig(configName = "Standard WSSecurity Endpoint")</p><p>public class HelloJavaBean</p><p>{</p><p>   .....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </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;"> </p><p><subsystem xmlns="urn:jboss:domain:webservices:1.1"></p><p>   <modify-wsdl-address>true</modify-wsdl-address></p><p>   <wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host></p><p>   </p><p>   <endpoint-config name="Standard-Endpoint-Config"/></p><p>   <endpoint-config name="Recording-Endpoint-Config"></p><p>       <pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM"></p><p>          <handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/></p><p>       </pre-handler-chain></p><p>    </endpoint-config></p><p>    <strong><endpoint-config name="Custom-Endpoint-Config"> <!-- I think element would be like this format, just guess!--></strong></p><p><strong>          <property name="key-store-file" value="WEB-INF/wsse.keystore"/></strong></p><p><strong>          <property name="key-store-password" value="jbossws"/></strong></p><p><strong>     </endpoint-config></strong></p><p></subsystem></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>@WebService</p><p>@EndpointConfig(configName = <strong>"Custom-Endpoint-Config"</strong>></p><p>public class HelloJavaBean</p><p>{</p><p>.....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </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>