Configure EJB3 beans for HTTPS transport

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3820

This topic has not yet been written. The content below is from the topic description.
Procedure 15.9. Configure EJB3 beans for HTTPS transport This procedure configures the EJB3 to bind to the HTTPS transport. Annotate the bean for RMI via HTTPS: Example 15.5. Annotating an EJB3 for RMI via HTTPS // RMI tunneled over HTTPS @Stateless @RemoteBinding(clientBindUrl = "https://0.0.0.0:8443/servlet-invoker/SSLServerInvokerServlet") @Remote(Calculator.class) @SecurityDomain("other") public class CalculatorHttpsBean implements Calculator { .... Result: The EJB3 is now available for remote invocation via HTTPS.