I have a serial Port program which is executing properly with Hardware and it's able to get the data from my hardware. But,Is it possible to load that data in Jquery Grid? If so ,pls refer me some useful links to work on my task! Thank You in advance.
Quick responses Would be grateful.Thank You
First of all you should understand that web browser can't access the hardware like serial port directly. So to display the data from serial port in jqGrid you have to divide your application in two parts: the first one will be an fat client application which access the serial port and the second part is web site which provide the data for HTML page with jqGrid. You can combine the application which access serial port and the web site in one web application.
I'm not a struts 2 developer. So I would use on your place Windows Service with WebAPI (see here and here too). The design of the application very easy. You can create Windows Service application. Then you creates self hosting WebAPI inside of
OnStart
callback. You can use windows authentication (see the answer) and setRoutes.MapHttpRoute
to register all URLs which can be used to access the windows service. For example you can register two URLs: one which returns HTML page with JavaScript code which creates jqGrid and another URL to the controller which provide the data for Ajax requests. Because your application will be a Windows Service it can access hardware like serial port (with respect of SerialPort for example). As Self-Host WebAPI application your application don't need IIS be installed on the computer. In general you can make the application first as any simple windows application (like console application) instead of creating windows service. All will work in the same way. You could just need to include the manifest which allows to start application under administrative rights.