<?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 Here's an update: This time I in Intel® Business Client Software Development</title>
    <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917384#M5591</link>
    <description>&lt;P&gt;Here's an update: This time I added the dll from the binary download (mostly because I didn't compile it...), added it to my lib folder, updated the project and rebuild the entire project.&lt;/P&gt;

&lt;P&gt;If I run in release config I get what I want, DLL and code work fine.&lt;/P&gt;

&lt;P&gt;If I run in debug config I never get to the connected state.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;So the initial error with the dozens of missing fields has gone, but when I write my AMT code I can't really debug it.&lt;/P&gt;

&lt;P&gt;Any ideas there?&lt;/P&gt;</description>
    <pubDate>Mon, 10 Mar 2014 07:11:07 GMT</pubDate>
    <dc:creator>Christian_A_</dc:creator>
    <dc:date>2014-03-10T07:11:07Z</dc:date>
    <item>
      <title>Problems integrating Open MDTK 1.28</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917380#M5587</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;

&lt;P&gt;I'd like to integrate Open MDTK into one of our company applications. I generated the "Manageability Stack.dll" from the Source and added it into my C# application. I then tried to connect to the system and get the current power state with this code:&lt;/P&gt;

&lt;PRE class="brush:csharp;"&gt;
AmtSystem sys = new AmtSystem(this.__Hostname, 16992, this.__Username, this.__Password, false, false);

System.Diagnostics.Debug.WriteLine("[AMT] Connecting to " + sys.HostName);
sys.Connect();
while (sys.State == AmtSystemObjState.Connecting)
{                    
}
if (sys.State == AmtSystemObjState.Connected)
{
	System.Diagnostics.Debug.WriteLine("[AMT] Connected!");
	this.__Response = sys.Remote.GetSystemPowerState().ToString();
	sys.Disconnect();
}
else
{
	this.__Response = "Error on connect;";
}&lt;/PRE&gt;

&lt;P&gt;But the code never enters the connected state. And the strange thing, if I run the code in Release, I get a ton of these (with different field names, sorry for the German):&lt;/P&gt;

&lt;P&gt;Eine Ausnahme (erste Chance) des Typs "Intel.Manageability.Exceptions.CimPropertyException" ist in Manageability Stack.dll aufgetreten.&lt;BR /&gt;
	In Intel.Manageability.Exceptions.CimPropertyException ist eine Ausnahme vom Typ "Manageability Stack.dll" aufgetreten, doch wurde diese im Benutzercode nicht verarbeitet.&lt;BR /&gt;
	Zusätzliche Informationen: Logic error:&lt;BR /&gt;
	no such field name: DDNSPeriodicUpdateInterval&lt;/P&gt;

&lt;P&gt;The code breaks @CimData.cs in GetField(). I guess it has something to do with the asset management.&lt;/P&gt;

&lt;P&gt;What am I doing wrong? The binary software from the installer works, so it has to be my code. Am I missing an assembly?&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Christian&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2014 13:23:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917380#M5587</guid>
      <dc:creator>Christian_A_</dc:creator>
      <dc:date>2014-02-17T13:23:03Z</dc:date>
    </item>
    <item>
      <title>I just witnessed something</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917381#M5588</link>
      <description>&lt;P&gt;I just witnessed something strange:&lt;/P&gt;

&lt;P&gt;If I run the App in Release Build Mode from within Visual Studio, I get the above mentioned errors.&lt;/P&gt;

&lt;P&gt;If I start the app out of the Release Build folder, MDTK works perfectly and displays the current system status.&lt;/P&gt;

&lt;P&gt;So what is the debugger doing different?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2014 07:48:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917381#M5588</guid>
      <dc:creator>Christian_A_</dc:creator>
      <dc:date>2014-02-25T07:48:49Z</dc:date>
    </item>
    <item>
      <title>Is there a dll that is in the</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917382#M5589</link>
      <description>&lt;P&gt;Is there a dll that is in the Release build folder that the exe needs that is not in your path when you run from within Visual Studio? &amp;nbsp;&lt;/P&gt;

&lt;P&gt;Interpretation of error:&lt;/P&gt;

&lt;P&gt;An exception (first chance) of the type "Intel.Manageability.Exceptions.CimPropertyException 'occurred in Manageability Stack.dll.&amp;nbsp;&lt;BR /&gt;
	In Intel.Manageability.Exceptions.CimPropertyException an exception of type "Manageability Stack.dll" has occurred, but this was not handled in user code.&amp;nbsp;&lt;BR /&gt;
	Additional information: Logic error:&amp;nbsp;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 11.818181991577148px; line-height: 16.363636016845703px;"&gt;no such field name: DDNSPeriodicUpdateInterval&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Hopefully, Ylian will get a chance to look at this - I will also take a quick look.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2014 19:43:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917382#M5589</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2014-02-26T19:43:50Z</dc:date>
    </item>
    <item>
      <title>Arg. I wrote most of the DTK</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917383#M5590</link>
      <description>&lt;P&gt;Arg. I wrote most of the DTK and I can't say I have ever ran into this problem. Personnaly, I subscribe to the state change event and call "Connect()". I then start the code I want to run after the connect in the event handler. It's better than calling connect and looping. If you are going to loop, put a Thread.Sleep(100) or something in the loop so not to peg the processor.&lt;/P&gt;

&lt;P&gt;I never saw this before: "Additional information: Logic error: no such field name: DDNSPeriodicUpdateInterval". I will probably be of no help here.&lt;/P&gt;

&lt;P&gt;Ylian&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2014 03:40:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917383#M5590</guid>
      <dc:creator>Ylian_S_Intel</dc:creator>
      <dc:date>2014-03-01T03:40:15Z</dc:date>
    </item>
    <item>
      <title>Here's an update: This time I</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917384#M5591</link>
      <description>&lt;P&gt;Here's an update: This time I added the dll from the binary download (mostly because I didn't compile it...), added it to my lib folder, updated the project and rebuild the entire project.&lt;/P&gt;

&lt;P&gt;If I run in release config I get what I want, DLL and code work fine.&lt;/P&gt;

&lt;P&gt;If I run in debug config I never get to the connected state.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;So the initial error with the dozens of missing fields has gone, but when I write my AMT code I can't really debug it.&lt;/P&gt;

&lt;P&gt;Any ideas there?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2014 07:11:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Problems-integrating-Open-MDTK-1-28/m-p/917384#M5591</guid>
      <dc:creator>Christian_A_</dc:creator>
      <dc:date>2014-03-10T07:11:07Z</dc:date>
    </item>
  </channel>
</rss>

