Show Contents / Index / Search

Create Session From Existing Session File (OpenSystems)

//This sample code is intended to illustrate a concept, and it shows only the code that is relevant to that concept.

//It may not meet the security requirements for a specific environment, and it should not be used exactly as shown.

//We recommend that you add security and error-handling code to make your projects more secure and robust.

//Attachmate provides this sample code "AS IS" with no warranties.

 

using System;

using System.Collections.Generic;

using System.Text;

using Attachmate.Reflection.Framework;

using Attachmate.Reflection.Emulation.OpenSystems;

 

namespace CreateSessionFromExistingSessionFile

{

  class Program

  {

      Attachmate.Reflection.Framework.Application reflectionApplication = MyReflection.CreateApplication("myWorkspace", true);

      if (reflectionApplication != null)

      {

        ITerminal terminal = (ITerminal)reflectionApplication.CreateControl(@"C:\Users\[user name]\Documents\Attachmate\Reflection\[session filename]");

        if (terminal != null)

        {

          terminal.Connect();

          //You can also use AfterConnect event to wait for the connection.

          while (!terminal.IsConnected)

          {

            System.Threading.Thread.Sleep(500);

          }

          IScreen screen = terminal.Screen;

          string text = screen.GetText(18, 2, 48);

          Console.WriteLine(text);

        }

        else

          Console.WriteLine("Can not create the control. Please check the session file path.");

      }

      else

        Console.WriteLine("Failed to get Application object.");

  }

}