I'm using WebKitGTK+ ( WebKit )
application that will be a very simple web browser running in a Linux environment as a separate executable that will need to exchange data between another application. The system is described in the following image:
Example scenario:
- Event such as smart card insertion detected in
Backend processing Application
- smart card data is read and passed to the
WebKitGTK+ GUI Application
- User interacts with "web page" displayed in
WebKitGTK+ Application
- Data is passed from
WebKitGTK+ Application
back to theBackend processing Application
What are the common methods of passing data between the WebKitGTK+ Application
and the Backend processing Application
?
Does `WebKitGTK+ provide some hooks to do this sort of thing? Any help at all would be appreciated.