TJ,
Personally, i haven't tried EJB with SSL on 4.2.2 (for that matter, on any versions of
JBoss). So i don't have much experience on this. But based on the exception stacktrace
(and based on another discussion that i saw in the forums) i guess, you could try changing
the following two configurations:
In your SSL-service.xml:
| <attribute
name="serverBindAddress">${jboss.bind.address}</attribute>
Change this to use the IP address of the server. Something like:
<attribute name="serverBindAddress">10.10.10.10</attribute>
In jboss.xml
anonymous wrote : <client-bind-url>sslsocket://0.0.0.0:3843</client-bind-url>
Change it to use the IP:
<client-bind-url>sslsocket://10.10.10.10:3843</client-bind-url>
And finally, if you are starting JBoss, using -b 0.0.0.0 then change it to use the IP
address -b 10.10.10.10
P.S: As i already mentioned, i don't have much experience on this. These suggestions
are based on what i saw in some other posts. So they may or may not work.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146398#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...