DB Monitor with Doamin Services
Posted: Wed 04 Apr 2012 14:29
I created a Domain Service and want to attach DBMonitor, so in my aspx page I initialized the db monitor,, Is this the right way to attach the monitor ? I do not see any output in the db monitor..
In my web.config I had the following
In my aspx page I attached the db monitor as follows
Is this the right way to attach dbmonitor to Domain Services ?
Thanks in advance,
Ravi
In my web.config I had the following
Code: Select all
<identity impersonate="true" userName="username" password="paswd" />
Code: Select all
<script language="CS" runat="server">
void Page_Load(object sender, System.EventArgs e) {
Devart.Data.Oracle.OracleMonitor mon = new Devart.Data.Oracle.OracleMonitor { IsActive = true };
}
</script>Is this the right way to attach dbmonitor to Domain Services ?
Thanks in advance,
Ravi