//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); }
public static void Main(string[] args) { DDCloudImplConnection con = new DDCloudImplConnection(); try { con.open(); Console.WriteLine("Connection Successful"); } catch (Exception ex) { Console.WriteLine(ex.Message); } }