<?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 Intel HLAPI Events usage C# in Intel® Business Client Software Development</title>
    <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830808#M1287</link>
    <description>&lt;DIV&gt;You need to use the Intel.Manageability Exceptions namespace (see program.cs)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Take a look at BootControlFunctionality.cs (catch Manageability Exception ex)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;Also look at "HLAPI Lib\Implementation\BootControlImpl.c"- there are samples on how to handle exceptions there. Also look at BootControlFunctionality.cs.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;These three files look to handle exceptions.&lt;/DIV&gt;</description>
    <pubDate>Thu, 19 Jan 2012 17:39:00 GMT</pubDate>
    <dc:creator>Gael_H_Intel</dc:creator>
    <dc:date>2012-01-19T17:39:00Z</dc:date>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830804#M1283</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I'm trying to develop a program using the Intel HLAPI. So far I got everything working fine, but I can't get my head around the events.&lt;BR /&gt;I'd like to be abled to detect the event "CB_BOOT_COMPLETED", but the documentation isn't very clear on how to subscribe to events. Can someone help me on this? I'm working in C#.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 13 Jan 2012 15:25:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830804#M1283</guid>
      <dc:creator>wimboehme</dc:creator>
      <dc:date>2012-01-13T15:25:04Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830805#M1284</link>
      <description>Hi wimboehme,&lt;BR /&gt;&lt;BR /&gt;Have you checked out the sample code in the HLAPI Package in IEvents.cs?&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;//OS_Boot events&lt;/P&gt;&lt;P&gt;EventsDictionary.Add("Boot_from_Floppy", new eventDetails(new eventDetails.filterValues(255, 31, 0, 88, 1, 255, 38, 0, 90, 111), FilterName.Platform));&lt;/P&gt;&lt;P&gt;EventsDictionary.Add("CD_Boot_Completed", new eventDetails(new eventDetails.filterValues(255, 31, 4, 88, 1, 255, 38, 0, 91, 111), FilterName.Platform));&lt;/P&gt;&lt;P&gt;EventsDictionary.Add("All_OS_Boot_Events", new eventDetails(new eventDetails.filterValues(255, 31, 15, 255, 0, 255, 0, 0, 92, 255), FilterName.Platform));&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;public static class OS_Boot&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;public static string Boot_from_Floppy = "Boot_from_Floppy";&lt;/P&gt;&lt;P&gt;public static string CD_Boot_Completed = "CD_Boot_Completed";&lt;/P&gt;&lt;P&gt;public static string All_OS_Boot_Events = "All_OS_Boot_Events";&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2012 18:54:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830805#M1284</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2012-01-13T18:54:53Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830806#M1285</link>
      <description>I'll check it out, thanks.</description>
      <pubDate>Mon, 16 Jan 2012 12:40:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830806#M1285</guid>
      <dc:creator>wimboehme</dc:creator>
      <dc:date>2012-01-16T12:40:14Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830807#M1286</link>
      <description>I've found how I can subscribe to an event and how to set up a listener, but I can't work out how to react when the event is thrown. Can you help me on that?</description>
      <pubDate>Thu, 19 Jan 2012 11:08:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830807#M1286</guid>
      <dc:creator>wimboehme</dc:creator>
      <dc:date>2012-01-19T11:08:42Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830808#M1287</link>
      <description>&lt;DIV&gt;You need to use the Intel.Manageability Exceptions namespace (see program.cs)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Take a look at BootControlFunctionality.cs (catch Manageability Exception ex)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;Also look at "HLAPI Lib\Implementation\BootControlImpl.c"- there are samples on how to handle exceptions there. Also look at BootControlFunctionality.cs.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;These three files look to handle exceptions.&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Jan 2012 17:39:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830808#M1287</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2012-01-19T17:39:00Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830809#M1288</link>
      <description>Actually, are you saying that once you capture the event you aren't sure what to do with it? If that's the case, that would depend on what you think should happen in the case of getting an event ranging from simple logging - putting the event into your database, sending an email notification, etc.</description>
      <pubDate>Thu, 19 Jan 2012 21:02:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830809#M1288</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2012-01-19T21:02:58Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830810#M1289</link>
      <description>I have taken this up again, as it would be better for us if I can get events working.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I know how to subscribe to the event using the GeneralSubscription, but after that I don't know how to catch the event.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;This is my subscribe method:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;GeneralSubscription sub = new GeneralSubscription(comp.ip, Events.OS_Boot.CD_Boot_Completed, SenderIDType.UUID);&lt;SPAN style="white-space: pre;"&gt;	&lt;DIV id="_mcePaste"&gt;    comp.amt.Events.Subscribe(sub);&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Now I want to know when the event actually occurs. How do I do this? &lt;/DIV&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 May 2012 13:48:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830810#M1289</guid>
      <dc:creator>wimboehme</dc:creator>
      <dc:date>2012-05-11T13:48:01Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830811#M1290</link>
      <description>&lt;DIV&gt;Have you enabled the WS-Event Listener? &lt;/DIV&gt;&lt;DIV&gt;&lt;I&gt;&lt;B&gt;GeneralSubscription.ListenerAddressProperty&lt;/B&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;I&gt;&lt;B&gt;&lt;BR /&gt;&lt;/B&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;I&gt;The listener's address. Can be IP address or FQDN. WS event reqiuers that theListenerAddresswill be a valid IP address/ FQDN, begin with 'http://' and includes a port. PET event reqiuers only that theListenerAddresswill be a valid IP address/ FQDN.&lt;/I&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;I&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;I&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;Have you had a chance do download the latest AMT 8 SDK? It includes the latest version of the HLAPI complete with &lt;A href="http://software.intel.com/sites/manageability/AMT_Implementation_and_Reference_Guide/DOCS/Implementation%20and%20Reference%20Guide/default.htm"&gt;documentation&lt;/A&gt;.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;The latest SDK is &lt;A href="http://software.intel.com/en-us/articles/download-the-latest-intel-amt-software-development-kit-sdk/"&gt;here&lt;/A&gt;.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;It looks like the HLAPI doc has been improved since the last version so you might want to see if it provides any more help. &lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;There are samples for setting up the listener instide the HLAPI SK: WSEventingListenerSample&lt;/DIV&gt;&lt;DIV&gt;-Hopefully this will help.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 May 2012 18:01:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830811#M1290</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2012-05-24T18:01:17Z</dc:date>
    </item>
    <item>
      <title>Intel HLAPI Events usage C#</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830812#M1291</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;me too looking for same</description>
      <pubDate>Thu, 07 Jun 2012 11:09:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Intel-HLAPI-Events-usage-C/m-p/830812#M1291</guid>
      <dc:creator>trlta</dc:creator>
      <dc:date>2012-06-07T11:09:17Z</dc:date>
    </item>
  </channel>
</rss>

