Can any one help me out how to do MDM Integration in Android from client and server prespective?
I want to do an enterprise application which having lock an
You can use DeviceAdmin to gain privileges for managing the Lock preferences and performing device wipe (among other stuff). (The user must add your app as a device administrator beforehand)
Remote controlling your application remains exclusively your responsibility - the Android framework does not provide (or enforce) any solution for that.
You may want to consider using Google's C2DM API, which is a convenient push mechanism.