예제 #1
0
        //Logger logger;

        DDCloudHttpRequest(DDCloudImplConnection implConnection, int initialRequestBufferSize, int initialReponseBufferSize)
        {
            //this.logger = implConnection.logger;
            this.implConnection = implConnection;
            binaryReader        = new BinaryMessageReader(implConnection.transliterator);
            streamBuffer        = new UtilStreamBuffer(INIT_BUFFER_SIZE);
        }
예제 #2
0
        public static void Main(string[] args)

        {
            DDCloudImplConnection con = new DDCloudImplConnection();

            try
            {
                con.open();
                Console.WriteLine("Connection Successful");
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }