Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » QAnywhere » Creating QAnywhere Applications » Mobile web services » Compiling and running mobile web service applications

 

Shutting down mobile web services

A mobile web services application performs orderly shutdown by closing the QAManager. For example:

// QAnywhere finalization in C#:
mgr.Stop();
mgr.Close();

// QAnywhere finalization in Java:
mgr.stop();
mgr.close();