Package org.jacorb.orb.iiop

Examples of org.jacorb.orb.iiop.IIOPProfile.addComponent()


                if (iiopProfile.version().minor == 0)
                {
                    logger.debug("patching GIOP 1.0 profile to contain " +
                                 "SSL information from the multiple components profile");
                    iiopProfile.addComponent(org.omg.SSLIOP.TAG_SSL_SEC_TRANS.value,
                                             ssl, SSLHelper.class);
                }
            }
        }
    }
View Full Code Here


       {
          // now add alternate addresses to primary profile
           for (Iterator<IIOPAddress> i = alternateAddresses.iterator(); i.hasNext();) {

             IIOPAddress addr = i.next();
             primaryProf.addComponent( TAG_ALTERNATE_IIOP_ADDRESS.value, addr.toCDR() );
          }

           // now add a secondary and third profile like used e.g. by
           // Visibroker 4.5
          for (Iterator<IIOPAddress> i = alternateAddresses.iterator(); i.hasNext();)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.