<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Publish System Status on Intranet in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829689#M21670</link>
    <description>How the result appears in html ?</description>
    <pubDate>Thu, 27 Jul 2006 06:43:05 GMT</pubDate>
    <dc:creator>Anthony_137</dc:creator>
    <dc:date>2006-07-27T06:43:05Z</dc:date>
    <item>
      <title>Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829683#M21664</link>
      <description>Dear forumers,&lt;BR /&gt;             Is there any way where I can publish the system information (e.g. system status) that displayed on Insight Manager onto my company's Intranet? Have anyone done this before? Thanks.</description>
      <pubDate>Mon, 24 Jul 2006 18:43:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829683#M21664</guid>
      <dc:creator>Adrian Soosay</dc:creator>
      <dc:date>2006-07-24T18:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829684#M21665</link>
      <description>If anyone can help Adrian... i'm also interested by the solution !</description>
      <pubDate>Wed, 26 Jul 2006 10:03:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829684#M21665</guid>
      <dc:creator>Anthony_137</dc:creator>
      <dc:date>2006-07-26T10:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829685#M21666</link>
      <description>Yes, this is a great idea! I hope someone can help.</description>
      <pubDate>Wed, 26 Jul 2006 10:32:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829685#M21666</guid>
      <dc:creator>Paul Adams_6</dc:creator>
      <dc:date>2006-07-26T10:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829686#M21667</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;Yes, I have done this.&lt;BR /&gt;This is what I did:&lt;BR /&gt;I created some .asp scripts that connects to HP SIM database, and return with the status.&lt;BR /&gt;&lt;BR /&gt;The entire process is all about SQL query.&lt;BR /&gt;&lt;BR /&gt;Please look at the attached image&lt;BR /&gt;&lt;BR /&gt;I show here servers that are: Critical, Major, Minor and Normal.&lt;BR /&gt;&lt;BR /&gt;I have also collected info about diskspace on each server.&lt;BR /&gt;&lt;BR /&gt;Reply to me if this was of interrest.</description>
      <pubDate>Thu, 27 Jul 2006 01:34:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829686#M21667</guid>
      <dc:creator>Trond E. Gjelsvik-Bakke</dc:creator>
      <dc:date>2006-07-27T01:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829687#M21668</link>
      <description>Very interesting Trond. Can you show your asp script ?</description>
      <pubDate>Thu, 27 Jul 2006 02:00:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829687#M21668</guid>
      <dc:creator>Anthony_137</dc:creator>
      <dc:date>2006-07-27T02:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829688#M21669</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;Here are the DB connection and the SQL query.&lt;BR /&gt;&lt;BR /&gt; set HPSIMConn=server.CreateObject("ADODB.Connection")&lt;BR /&gt; HPSIMConn.Open "Insight_v50_0"&lt;BR /&gt;&lt;BR /&gt; set rsCrit = Server.CreateObject("ADODB.recordset")&lt;BR /&gt; rsCrit.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 5 ) ) order by DeviceName ASC", HPSIMConn&lt;BR /&gt;&lt;BR /&gt; set rsMaj = Server.CreateObject("ADODB.recordset")&lt;BR /&gt; rsMaj.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 4 ) ) order by DeviceName ASC", HPSIMConn&lt;BR /&gt;&lt;BR /&gt; set rsMin = Server.CreateObject("ADODB.recordset")&lt;BR /&gt; rsMin.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 3 ) ) order by DeviceName ASC", HPSIMConn&lt;BR /&gt;&lt;BR /&gt; set rsNor = Server.CreateObject("ADODB.recordset")&lt;BR /&gt; rsNor.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 1 ) ) order by DeviceName ASC", HPSIMConn&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jul 2006 06:26:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829688#M21669</guid>
      <dc:creator>Trond E. Gjelsvik-Bakke</dc:creator>
      <dc:date>2006-07-27T06:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829689#M21670</link>
      <description>How the result appears in html ?</description>
      <pubDate>Thu, 27 Jul 2006 06:43:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829689#M21670</guid>
      <dc:creator>Anthony_137</dc:creator>
      <dc:date>2006-07-27T06:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829690#M21671</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;How familiar are you with asp scripts ??&lt;BR /&gt;&lt;BR /&gt;Make an ASP file, and place the code in there.&lt;BR /&gt;&lt;BR /&gt;To publish data, you will have to run through the recordset, and display one record at a time.&lt;BR /&gt;&lt;BR /&gt;I have done this in a table.&lt;BR /&gt;&lt;BR /&gt;I have been writing on this scripts for a while, so I don't want to make the entire script avaliable.&lt;BR /&gt;&lt;BR /&gt;Do you see my point ?&lt;BR /&gt;&lt;BR /&gt;All you have to do is get the rights data from HP SIM db, and present them on an representable wey on your intranet site.&lt;BR /&gt;&lt;BR /&gt;I don't know how your intranet design is, and I don't know how you would have it presented.</description>
      <pubDate>Thu, 27 Jul 2006 07:11:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829690#M21671</guid>
      <dc:creator>Trond E. Gjelsvik-Bakke</dc:creator>
      <dc:date>2006-07-27T07:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829691#M21672</link>
      <description>I'm newbie in script effectively...&lt;BR /&gt;&lt;BR /&gt;I've understood your opinion.&lt;BR /&gt;&lt;BR /&gt;I will search.&lt;BR /&gt;&lt;BR /&gt;thx</description>
      <pubDate>Thu, 27 Jul 2006 08:07:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829691#M21672</guid>
      <dc:creator>Anthony_137</dc:creator>
      <dc:date>2006-07-27T08:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829692#M21673</link>
      <description>Hi Trond,&lt;BR /&gt;        I'm familiar with ASP scripts. My only problem was tring to sort out which table from the SIM database that I can extract the information. Thanks to your hardwork, I'm now able to get the information I want publish onto my company's intranet. Thanks again!</description>
      <pubDate>Thu, 27 Jul 2006 20:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829692#M21673</guid>
      <dc:creator>Adrian Soosay</dc:creator>
      <dc:date>2006-07-27T20:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829693#M21674</link>
      <description>Thank you Trond! This great stuff.</description>
      <pubDate>Fri, 28 Jul 2006 08:19:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829693#M21674</guid>
      <dc:creator>Paul Adams_6</dc:creator>
      <dc:date>2006-07-28T08:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Publish System Status on Intranet</title>
      <link>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829694#M21675</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;I am glad to be of help to you all on this. I really hope that you value my response, and give me some points :)&lt;BR /&gt;&lt;BR /&gt;The best thing is to create a view. There you can add some code, as for calculating free disk space and more.&lt;BR /&gt;&lt;BR /&gt;I am currently building and entire website for complete monitoring of our server room.&lt;BR /&gt; - Server Status&lt;BR /&gt; - Used disk space for each server&lt;BR /&gt; - Temperatur in our server room&lt;BR /&gt; - and more will come, WMI and more...&lt;BR /&gt;&lt;BR /&gt;Adrian:&lt;BR /&gt;I have provided you with the entire asp file for serverstatus.&lt;BR /&gt;&lt;BR /&gt;You might have to edit it, to make it fit for your needs and design.</description>
      <pubDate>Mon, 31 Jul 2006 05:01:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/publish-system-status-on-intranet/m-p/3829694#M21675</guid>
      <dc:creator>Trond E. Gjelsvik-Bakke</dc:creator>
      <dc:date>2006-07-31T05:01:38Z</dc:date>
    </item>
  </channel>
</rss>

