Evening all,
I'm trying to pull reports our of our Ironport server but struggling for a couple of reasons. The Ironport device accepts a URL like https://192.168.10.1/monitor/reports?TLS_Connections and returns a page representing a table of domains and TLS coonection information, although this is just an example.
First of all I looked at the cmdlet new-webserviceproxy in PS 2.0 but it doesn't handle SSL certificate issues or form based authentication. So I started to look at native .Net classes.
I found the following to handle the SSL issues:
http://poshcode.org/634But I can't figure out to handle the form based authentication and the use of session cookies. I assume I need to do something around the system.net.webrequest class?
Paul