Bug 1262493

Summary: Typo in EJB3 SSL configuration example
Product: [JBoss] JBoss Enterprise Application Platform 5 Reporter: dereed
Component: doc-Security_Integration_User_GuideAssignee: Nobody <nobody>
Status: NEW --- QA Contact: Chuck Copello <ccopello>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 5.2.0   
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description dereed 2015-09-11 22:58:16 UTC
Document URL: 
https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/5/html/Security_Guide/RMI_SSL_EJB3.html

Section Number and Name: 
15.3. EJB3 RMI + SSL Configuration

Describe the issue: 
"Example 15.4. EJB3 Bean annotation for secure and unsecured invocation" contains:

    @RemoteBindings({
        @RemoteBinding(clientBindUrl="sslsocket://0.0.0.0:3843", jndiBinding="StatefulSSL")
        @RemoteBinding(jndiBinding="StatefulNormal")
    })

This will not compile, because there's a comma missing in between the @RemoteBinding annotations.

Suggestions for improvement: 
        @RemoteBinding(clientBindUrl="sslsocket://0.0.0.0:3843", jndiBinding="StatefulSSL"),

Additional information: