Plugin integration with Milestone SmartClient Issue

Hi,

 I have created own Plugin, It is working fine. I'm using WebService to pull the data from database. But, issue is when I closed Milestone SmartClient Application still, Client.exe keeps running in the backgroud(SmartClient app is closing). When i re-open Milestone SmartClient Application a separate Client.exe geeting start, It is also hanging in background. Finally, many Client.exe is keep's running even Milestone SmartClient application is closed.

How to handle this issue? What could be the source of this issue?

Thanks,

Selvakumar T

If you in the plug-in have a thread that is still running the Smart Client closing will not kill it. You should react to Close() events and make sure you close down what you have running. Maybe you have started a thread making a web service call or similar.

If you are not sure what you might have running that does not close down you can run the plug-in while debugging it from Visual Studio. If you never did this before you might want to see in MIP Documentation in the Plug-in Development - Getting Started: “Start Debugging from Visual Studio This Way”

Yes, we are running the thread and calling webservices. We will fix it and let u know.

Thanks for your kind response.