How can we share the session, cookies, and any other context between multiple instances of dotNetBrowser control.
I am trying to achieve the following with dotNetBrowser control.
Create two instances of a windform application. Each instance is going to load the same url (test.com/login). In the first instance user credentials are provided to login. In the second instance it is expected that the same user is logged in on the same url.
So in short, the same logged in user should appear in both the instances while we logged in only one instance. The test.com/login is not in my control and I can not change anything on the website.
For the time being I am trying to be able to run two instances on the same computer but ultimately would like to share the session and cookies between instances running in more than one computers.
Please share what would be the right direction to achieve this.