Examples of beginEncapsulatedArray()


Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

    public byte[] encode(Any data)
        throws InvalidTypeForEncoding
    {
        CDROutputStream out = new CDROutputStream(orb);

        out.beginEncapsulatedArray();
        out.write_any(data);

        /*
          closing must not be done, since it will patch the
          array with a size!
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

        throws InvalidTypeForEncoding
    {

        CDROutputStream out = new CDROutputStream(orb);

        out.beginEncapsulatedArray();
        data.write_value(out);

        /*
          closing must not be done, since it will patch the
          array with a size!
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

                CompoundSecMechList compoundSecMechList =
                    new CompoundSecMechList(useStateful, compoundSecMech);

                // export to tagged component
                CDROutputStream sasDataStream = new CDROutputStream( orb );
                sasDataStream.beginEncapsulatedArray();
                CompoundSecMechListHelper.write( sasDataStream , compoundSecMechList );
                tc = new TaggedComponent( TAG_CSI_SEC_MECH_LIST.value,
                                          sasDataStream.getBufferCopy() );

                sasDataStream.close ();
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

                "jacorb.security.ssl.corbaloc_ssliop.required_options";
            ssl.target_requires = get_ssl_options(propname);

            //create the tagged component containing the ssl struct
            CDROutputStream out = new CDROutputStream();
            out.beginEncapsulatedArray();
            SSLHelper.write( out, ssl );

            // TAG_SSL_SEC_TRANS must be disambiguated in case OpenORB-generated
            // OMG classes are in the classpath.
            components.addComponent
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

            throw new Error("We can only marshal big endian stylee profiles !!");
        }
       
        // Start a CDR encapsulation for the profile_data
        CDROutputStream profileDataStream = new CDROutputStream();
        profileDataStream.beginEncapsulatedArray();
       
        // Write the opaque AddressProfile bytes for this profile...
        writeAddressProfile(profileDataStream);
       
        // ... then the object key
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

    public abstract void write (CDROutputStream s);

    public byte [] toCDR ()
    {
      CDROutputStream out = new CDROutputStream();
      out.beginEncapsulatedArray();
      this.write(out);
      return out.getBufferCopy();
    }

    // this must be defined for each subclass.
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

    {
        // encapsulate context
        final CDROutputStream os = new CDROutputStream();
        try
        {
            os.beginEncapsulatedArray();
            CodeSetContextHelper.write( os, new CodeSetContext( tcs.getId(), tcsw.getId() ));

            return new ServiceContext( TAG_CODE_SETS.value, os.getBufferCopy() );
        }
        finally
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

                final CDROutputStream cdr_out = new CDROutputStream(orb);

                try
                {
                    cdr_out.beginEncapsulatedArray();
                    BiDirIIOPServiceContextHelper.write( cdr_out, b );

                    bidir_ctx = new ServiceContext( BI_DIR_IIOP.value,
                            cdr_out.getBufferCopy() );
                }
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

    {
        final CDROutputStream out = new CDROutputStream();

        try
        {
            out.beginEncapsulatedArray();
            PolicyValueSeqHelper.write(out, getTimingPolicyValues());
            return new ServiceContext (INVOCATION_POLICIES.value,
                    out.getBufferCopy());
        }
        finally
View Full Code Here

Examples of org.jacorb.orb.CDROutputStream.beginEncapsulatedArray()

    public static byte[] toCDR(UtcT time)
    {
        // TODO: make this more efficient with mere bit shifting
        byte[] buffer = new byte[25];
        CDROutputStream out = new CDROutputStream(buffer);
        out.beginEncapsulatedArray();
        UtcTHelper.write(out, time);
        return out.getBufferCopy();
    }

    /**
 
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.