Hi,
To write into input elements, you can simply use JavaScript code. The code can be something like this:
Code: C#
webView.EvalScript("document.getElementsByTagName('input')[0].value='test';");
Here:
Code: JavaScript
document.getElementsByTagName('input')[0].value='test';
Is the JavaScript code to set the first input element's value to 'test'. You can modify it to fit your need.
In order to read header values from a cloud return, you will need to handle this event:
https://www.essentialobjects.com/doc/eo.webbrowser.webview.afterreceiveheaders.aspxInside the event handler, you can examine the e.Response.Headers for header entries coming back from the server.
Please let us know if you still have any more questions.
Thanks!