Shutting down QAnywhere

After you have completed sending and receiving messages, you can shut down the QAnywhere messaging system by completing one of the following procedures.

 Shut down QAnywhere (.NET)
  • Stop and close the QAnywhere manager.

    mgr.Stop();
    mgr.Close();
 Shut down QAnywhere (C++)
  1. Close the QAnywhere manager.

    mgr->stop();
    mgr->close();
  2. Terminate the factory.

    QAnywhereFactory_term();

    This step shuts down the messaging part of your application.

 Shut down QAnywhere (Java)
  • Stop and close the QAnywhere manager.

    mgr.stop();
    mgr.close();
 See also