Hi,
I am developing a web service in Visual Studio c# which needs to communicate Milestone LPR system to get identified plates on some gates.
I searching some Milestone SDK samples but i can’t find the solution.
How can i to do that? Is there any sample on the SDK for this purpose?
Thanks.
Hi. Try using AlarmEventViewer sample, it has LPR events radio button.
Hi Andriy,
On the AlarmEventViewer sample it has a dialog for login to MIP Server. After entering the credentials and after login we can access the LPR events by the LPR radio button. But i want to login to MIP Server without the login dilaog form,
am i able to login just for sending the credentials on backward from my own
web service and after that i will use the LPR events?
Yeah, sure. You can see how the login done without UI dialog e.g. in CameraStreamResolution sample in LoginUsingCredentials method. After that you will need to subscribe to the events like NewEventMessageHandler is subscribed in MainForm.cs of the AlarmEventViewer sample and catch the LPR events, as you can see in this method.
Hi Andriy,
Thank you for your help and quick response.