public static SecureInetTransport read(AbstractORB orb, InetAddress profile,
Version version, byte[] component_data, CompoundSecurityMechanism mechanism)
{
InputStream is = new EncapsulationInputStream(orb, component_data);
org.omg.SSLIOP.SSL ssl = org.omg.SSLIOP.SSLHelper.read(is);
InetSocketAddress addr = new InetSocketAddress(profile, ssl.port & 0xffff);
SSLSecureTransport trans = new SSLSecureTransport(version, addr,
ssl.target_requires, ssl.target_supports, mechanism);