<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Soft &#38; Virt</title>
	<atom:link href="http://blog.fedorov.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fedorov.ca</link>
	<description>Dmitri Fedorov&#039;s blog around and about software development</description>
	<lastBuildDate>Fri, 27 May 2011 21:19:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Static libraries into Shared One</title>
		<link>http://blog.fedorov.ca/2011/02/09/static-libraries-into-shared-one/</link>
		<comments>http://blog.fedorov.ca/2011/02/09/static-libraries-into-shared-one/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 20:08:51 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[NDK]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[mk]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=37</guid>
		<description><![CDATA[When compiling several static libraries into one shared using Android NDK I ran into a problem and fixing it required changing the NDK. Here is what the problem is. Let say I use this Android.mk: LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := mod1 LOCAL_SRC_FILES := libmod1.a include $(PREBUILT_STATIC_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE := mod2 LOCAL_SRC_FILES := [...]]]></description>
			<content:encoded><![CDATA[<p>When compiling several static libraries into one shared using Android NDK I ran into a problem and fixing it required changing the NDK.</p>
<p>Here is what the problem is. Let say I use this Android.mk:</p>
<p><code>LOCAL_PATH:= $(call my-dir)</p>
<p>include $(CLEAR_VARS)<br />
LOCAL_MODULE := mod1<br />
LOCAL_SRC_FILES := libmod1.a<br />
include $(PREBUILT_STATIC_LIBRARY)</p>
<p>include $(CLEAR_VARS)<br />
LOCAL_MODULE := mod2<br />
LOCAL_SRC_FILES := libmod2.a<br />
include $(PREBUILT_STATIC_LIBRARY)</p>
<p><...more prebuilt static libs..></p>
<p>include $(CLEAR_VARS)<br />
LOCAL_MODULE := main<br />
LOCAL_SRC_FILES := main.cpp<br />
LOCAL_WHOLE_STATIC_LIBRARIES := mod1 mod2 <...><br />
include $(BUILD_SHARED_LIBRARY)<br />
</code></p>
<p>This won&#8217;t work in NDK 5 and 5b, specifically the macro LOCAL_WHOLE_STATIC_LIBRARIES won&#8217;t do anything.</p>
<p>This is how to fix it:</p>
<p>locate the setup.mk file you use, it&#8217;s one of those:</p>
<p><code>> find -name setup.mk<br />
./sources/cxx-stl/system/setup.mk<br />
./toolchains/arm-eabi-4.4.0/setup.mk<br />
./toolchains/x86-4.2.1/setup.mk<br />
./toolchains/arm-linux-androideabi-4.4.3/setup.mk<br />
</code><br />
In my case it was &#8220;./toolchains/arm-linux-androideabi-4.4.3/setup.mk&#8221;.</p>
<p>In that <em>setup.mk</em> locate defines <em>cmd-build-shared-library</em> and <em>cmd-build-executable</em>.</p>
<p>In these defines look at the call with <em>$(PRIVATE_WHOLE_STATIC_LIBRARIES)</em> as a parameter:</p>
<p><code>$(call link-whole-archives,$(PRIVATE_WHOLE_STATIC_LIBRARIES))</code></p>
<p>make sure that &#8220;link-whole-archives&#8221; matches the one in <em>build/core/definitions/mk</em>.</p>
<p>In my toolchain I had <em>&#8220;whole-link-archives-tags&#8221;</em> instead of <em>&#8220;link-whole-archives&#8221;</em>.</p>
<p>Happy Android hacking!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2011/02/09/static-libraries-into-shared-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrum Rant</title>
		<link>http://blog.fedorov.ca/2011/01/20/scrum-rant/</link>
		<comments>http://blog.fedorov.ca/2011/01/20/scrum-rant/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 22:08:39 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=43</guid>
		<description><![CDATA[Well, not a rant, just an observation. I do not understand why lots of companies these days are so obsessed with Scrum software project management development. It is just one of many agile software development techniques, not better or worse than the others. For me personally it is actually worse, because I don&#8217;t like daily [...]]]></description>
			<content:encoded><![CDATA[<p>Well, not a rant, just an observation.</p>
<p>I do not understand why lots of companies these days are so obsessed with Scrum software project management development.</p>
<p>It is just one of many agile software development techniques, not better or worse than the others. For me personally it is actually worse, because I don&#8217;t like daily status meetings (in Scrum they call them &#8220;stand-ups&#8221;). I don&#8217;t like them for two reasons: I don&#8217;t feel comfortable standing up when there are sits available and don&#8217;t see a point of talking about my day over and over again.</p>
<p>As it looks to me, we have a substantial set of traditional, agile and lean development methods and principles, and selecting a right subset for a specific project and team is a matter of professionalism, experience and personal preferences.</p>
<p>I have always thought about agile software development as a rebellion for freedom. Freedom to choose and to use what fits and what works. When it becomes mainstream and takes a form of mandatory rules to follow, it defeats its purpose.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2011/01/20/scrum-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Virtual Box Additions on Fedora 14</title>
		<link>http://blog.fedorov.ca/2010/11/12/install-virtual-box-additions-on-fedora-14/</link>
		<comments>http://blog.fedorov.ca/2010/11/12/install-virtual-box-additions-on-fedora-14/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 20:24:54 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[additions]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[virtual box]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=38</guid>
		<description><![CDATA[I have been using Fedora 14 as my primary work desktop for a while. I like it a lot for many reasons and one of them that it easily runs as a virtual machine. Oracle Virtual Box version 4 has been my choice for running desktop virtual machines because it is fast, robust, simple and [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Fedora 14 as my primary work desktop for a while. I like it a lot for many reasons and one of them that it easily runs as a virtual machine.</p>
<p>Oracle Virtual Box version 4 has been my choice for running desktop virtual machines because it is fast, robust, simple and free.</p>
<p>Anybody who runs Fedora knows it gets lots of updates and when such update includes the kernel then I have to reinstall Virtual Box Guest Additions that enable several important features with two I use all the time: mouse integration and shared folders.</p>
<p>This how to install or reinstall Virtual Box Guest Additions on Fedora 14.</p>
<p>First we need the kernel headers:</p>
<p><code>> yum install -y kernel-devel<br />
> yum -y update<br />
</code></p>
<p>Then from the virtual machine menu, select <em>Devices/Install Guest Additions</em> and mount the image by selecting it from Fedora <em>&#8220;Places&#8221;</em> menu. Then run the Additions installer:</p>
<p><code>> cd /media/VBOXADDITIONS_4.0.0_69151/<br />
> ./VBoxLinuxAdditions.run<br />
</code></p>
<p>Watch output for errors. That is it. Now you can use mouse on the virtual machine as it is your desktop extension and mount shared directories:</p>
<p><code>> /sbin/mount.vboxsf mydir /share/vbox/mydir</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/11/12/install-virtual-box-additions-on-fedora-14/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to run Java samples from VMware SDK on Ubuntu 10.04</title>
		<link>http://blog.fedorov.ca/2010/07/05/how-to-run-java-samples-ubuntu-10-04/</link>
		<comments>http://blog.fedorov.ca/2010/07/05/how-to-run-java-samples-ubuntu-10-04/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 16:18:40 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[samples]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[VMware SDK]]></category>
		<category><![CDATA[vSphere SDK]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=29</guid>
		<description><![CDATA[There are subtle differences in all Linux platforms and when I got to run VMware SDK Java samples on Ubuntu 10.04 I found there is something that is worth to share in addition to my first post about it. First of all, there are very convenient &#8220;default&#8221; packages for JRE and JDK that have openjdk-6-jre [...]]]></description>
			<content:encoded><![CDATA[<p>There are subtle differences in all Linux platforms and when I got to run VMware SDK Java samples on Ubuntu 10.04 I found there is something that is worth to share in addition to <a href="http://blog.fedorov.ca/2009/12/16/how-to-run-java-samples-vmware-sdk/">my first post</a> about it.</p>
<p>First of all, there are very convenient &#8220;default&#8221; packages for JRE and JDK that have <i>openjdk-6-jre</i> and <i>openjdk-6-jdk</i>:</p>
<pre>apt-get install default-jre defalt-jdk</pre>
<p>Of course that means a different value for <i>JAVAHOME</i>:</p>
<pre>export JAVAHOME=/usr/bin/openjdk-6/</pre>
<p>Second, in my first post I did not describe how to get and store VMware server certificates.</p>
<p>If you follow the <a href="http://www.vmware.com/support/developer/vc-sdk/visdk400pubs/sdk40setupguide.pdf">Setup Guild</a> then you have to connect to a VMware server by SSH or use the vClient. But you can get the certificate from the Firefox browser: when connecting to a VMware server and asked to confirm the certificate, there is a button to export it. This allows to save the certificate locally and then add it to the keystore:</p>
<pre>keytool -import -file XXX.XX.XX.XX.XX.cer -alias XXX.XX.XX.XX.XX \
-keystore vmware.keystore VMKEYSTORE=~/vmware-certs/vmware.keystore
export VMKEYSTORE</pre>
<p>Also the <i>tofrodos</i> package has different name for the <i>dos2unix</i> utility, it is called <i>fromdos</i> now:</p>
<pre>
apt-get install tofrodos
cd %SDKHOME%\samples\Axis\java
fromdos *.sh</pre>
<p>Unfortunately the <i>axis</i> binaries I still had to download manually.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/07/05/how-to-run-java-samples-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HowTo: Install New ALSA Driver</title>
		<link>http://blog.fedorov.ca/2010/07/04/howto-install-new-alsa-drive/</link>
		<comments>http://blog.fedorov.ca/2010/07/04/howto-install-new-alsa-drive/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 22:06:04 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[no sound]]></category>
		<category><![CDATA[realtek]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=28</guid>
		<description><![CDATA[During initial installation of Ubuntu 10.04 it detected my audio chip (integrated with my Gigabyte motherboard) without any problems, but after a couple of hibernations or for some other reason it lost it: aplay -l no soundcard found I actually was surprised it found it at the first place as on any platform this kind [...]]]></description>
			<content:encoded><![CDATA[<p>During initial installation of Ubuntu 10.04 it detected my audio chip (integrated with my Gigabyte motherboard) without any problems, but after a couple of hibernations or for some other reason it lost it:</p>
<pre>aplay -l
no soundcard found</pre>
<p>I actually was surprised it found it at the first place as on any platform this kind of audio requires installation of hi-def drivers.</p>
<p>Anyway, first I tried to reload ALSA:</p>
<pre>sudo alsa force-reload</pre>
<p>It did not help.</p>
<p>Then after some digging I decided to compile and install the ALSA driver for my codec. My codec happened to be Realtek ALC888:</p>
<pre>cat /proc/asound/card*/codec#* | grep Codec
Codec: Realtek ALC888</pre>
<p>I got the driver from the <a href="http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&amp;PNid=14&amp;PFid=24&amp;Level=4&amp;Conn=3&amp;DownTypeID=3&amp;GetDown=false">Realtek web site</a>.</p>
<p>Then untared, compiled and installed it:</p>
<pre>tar xf LinuxPkg_5.15rc5.tar.bz2
cd realtek-linux-audiopack-5.15/
tar xf alsa-driver-1.0.23-5.15rc5.tar.bz2
cd alsa-driver-1.0.23/
./configure --with-cards=hda-intel
sudo make install</pre>
<p>After rebooting got Rhythmbox loaded with Dire Straits and Tracy Chapman, sounds amazing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/07/04/howto-install-new-alsa-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore Vista MBR</title>
		<link>http://blog.fedorov.ca/2010/06/06/restore-vista-mbr/</link>
		<comments>http://blog.fedorov.ca/2010/06/06/restore-vista-mbr/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 19:01:22 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[mbr]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=26</guid>
		<description><![CDATA[When I removed a failed to load Kubuntu partition on my dual boot laptop, I did something stupid: I rebooted the computer. Of course I ended up with Grub &#8220;Error 22&#8243;. Fortunately I had a recovery DVD with system files and after booting from this DVD and getting into the command line, I found file [...]]]></description>
			<content:encoded><![CDATA[<p>When I removed a failed to load Kubuntu partition on my dual boot laptop, I did something stupid: I rebooted the computer.</p>
<p>Of course I ended up with Grub &#8220;Error 22&#8243;.</p>
<p>Fortunately I had a recovery DVD with system files and after booting from this DVD and getting into the command line, I found file <strong>bootrec.exe</strong>.</p>
<p>Executing it as:</p>
<blockquote><p>bootrec.exe /fixmbr</p></blockquote>
<p>restored the MBR and I was able to boot into Vista.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/06/06/restore-vista-mbr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Assign Task Description</title>
		<link>http://blog.fedorov.ca/2010/05/14/how-to-assign-task-description/</link>
		<comments>http://blog.fedorov.ca/2010/05/14/how-to-assign-task-description/#comments</comments>
		<pubDate>Fri, 14 May 2010 16:47:59 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[task info]]></category>
		<category><![CDATA[TaskInfo]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[VMware SDK]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=24</guid>
		<description><![CDATA[In one of comments the following code did not set a task description (shown in vSphere Client in Details column): LocalizableMessage lm = new LocalizableMessage(); lm.setMessage(“Hello World”); myTask.getTaskInfo().setDescription(lm); The problem is in missing key property of the newly created LocalizableMessage: it must be assigned from the task itself. This is how it&#8217;s suppose to be [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://blog.fedorov.ca/2010/02/02/how-to-retrieve-task-info/#comment-6">one of comments</a> the following code did not set a task description (shown in vSphere Client in <em>Details</em> column):</p>
<pre>LocalizableMessage lm = new LocalizableMessage();
lm.setMessage(“Hello World”);
myTask.getTaskInfo().setDescription(lm);</pre>
<p>The problem is in missing <strong>key</strong> property of the newly created <strong>LocalizableMessage</strong>: it must be assigned from the task itself.</p>
<p>This is how it&#8217;s suppose to be done (Java):</p>
<pre>LocalizableMessage lm = new LocalizableMessage();
lm.setKey(myTask.getTaskInfo().getKey());
lm.setMessage(“Hello World”);
myTask.getTaskInfo().setDescription(lm);</pre>
<p>This is an example in C# (<em>taskInfo</em> is known value of <em>Vim.TaskInfo</em> type):</p>
<pre>LocalizableMessage myDetailMessage = new Vim25Api.LocalizableMessage()
   { key = taskInfo.key, message = "my details" };
connection.Service.SetTaskDescription(taskInfo.task, myDetailMessage);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/05/14/how-to-assign-task-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Host IP Address</title>
		<link>http://blog.fedorov.ca/2010/03/02/vmware-host-ip-address/</link>
		<comments>http://blog.fedorov.ca/2010/03/02/vmware-host-ip-address/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:16:49 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[host system]]></category>
		<category><![CDATA[ip address]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=22</guid>
		<description><![CDATA[VMware host IP address is something of a phantom property: everybody knows it exists and use it all the time, but nobody knows where it is. Well, this is probably because its location in the model changes depending on the host version and current network configuration. This is how I get it. 1. For ESX [...]]]></description>
			<content:encoded><![CDATA[<p>VMware host IP address is something of a phantom property: everybody knows it exists and use it all the time, but nobody knows where it is.</p>
<p>Well, this is probably because its location in the model changes depending on the host version and current network configuration.</p>
<p>This is how I get it.</p>
<p>1. For ESX systems, the system IP address is the IP address of the console, so its located at</p>
<pre>config.network.consoleVnic["key"].spec.ip.ipAddress</pre>
<p>where &#8220;key&#8221; is usually the only key in that collection.</p>
<p>2. For ESXi systems, the system IP address is the IP address of the HostVirtualNic class instance that is associated with the Management Network:</p>
<pre>config.network.vnic["key"].spec.ip.ipAddress</pre>
<p>where the &#8220;key&#8221; is the key of vnic that belongs to the management network portgroup.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/03/02/vmware-host-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Printing from Emacs on Windows</title>
		<link>http://blog.fedorov.ca/2010/02/05/printing-from-emacs-on-windows/</link>
		<comments>http://blog.fedorov.ca/2010/02/05/printing-from-emacs-on-windows/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 17:20:56 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[emacs]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=21</guid>
		<description><![CDATA[I&#8217;m a Emacs guy and this is how I got it printing on on of my Windows boxes (XP SP2) where I already had Cygwin. 1. Install PDF Creator. 2. Update .emacs file with the following: (setenv "PRINTER" "PDFCreator") (setq ps-printer-name "PDFCreator") (setq ps-printer-name-option "-d") (setq ps-lpr-command "/cygwin/bin/lpr") 3. Print into a PDF file with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a Emacs guy and this is how I got it printing on on of my Windows boxes (XP SP2) where I already had <a title="Cygwin" href="http://www.cygwin.com/" target="_blank">Cygwin.</a></p>
<p>1. Install <a href="http://sourceforge.net/projects/pdfcreator/">PDF Creator</a>.</p>
<p>2. Update .emacs file with the following:<br />
<code>(setenv "PRINTER" "PDFCreator")<br />
(setq ps-printer-name "PDFCreator")<br />
(setq ps-printer-name-option "-d")<br />
(setq ps-lpr-command "/cygwin/bin/lpr")</code></p>
<p>3. Print into a PDF file with <strong>ps-print-buffer</strong> and then to any printer (or not at all).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/02/05/printing-from-emacs-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Retrieve Task Info</title>
		<link>http://blog.fedorov.ca/2010/02/02/how-to-retrieve-task-info/</link>
		<comments>http://blog.fedorov.ca/2010/02/02/how-to-retrieve-task-info/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 15:18:31 +0000</pubDate>
		<dc:creator>Deem</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[task info]]></category>
		<category><![CDATA[TaskInfo]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.fedorov.ca/?p=19</guid>
		<description><![CDATA[This is how to retrieve a task info in you have the task MOR: ObjectContent[] objs = connection.Service.RetrieveProperties( connection.ServiceContent.propertyCollector, new PropertyFilterSpec[] { new PropertyFilterSpec() { objectSet = new ObjectSpec[] { new ObjectSpec() { obj = taskMOR } }, propSet = new PropertySpec[] { new PropertySpec() { all = false, allSpecified = true, type = "Task", [...]]]></description>
			<content:encoded><![CDATA[<p>This is how to retrieve a task info in you have the task MOR:</p>
<pre>ObjectContent[] objs =
connection.Service.RetrieveProperties(
   connection.ServiceContent.propertyCollector, new PropertyFilterSpec[]
   {
      new PropertyFilterSpec()
      {
          objectSet = new ObjectSpec[]
             { new ObjectSpec() { obj = taskMOR } },
          propSet = new PropertySpec[]
          {
             new PropertySpec()
             {
                all = false, allSpecified = true,
                type = "Task", pathSet = new String[] { "info" }
             }
          }
      }
   });
TaskInfo result = (TaskInfo)objs[0].propSet[0].val;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.fedorov.ca/2010/02/02/how-to-retrieve-task-info/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

