<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ralph's Weblog</title>
	<atom:link href="http://gordingin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gordingin.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 23 Sep 2008 12:39:02 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gordingin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ralph's Weblog</title>
		<link>http://gordingin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gordingin.wordpress.com/osd.xml" title="Ralph&#039;s Weblog" />
	<atom:link rel='hub' href='http://gordingin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Creating objects with out defining them &#8212; WHAT?</title>
		<link>http://gordingin.wordpress.com/2008/09/20/creating-object-with-out-defining-them/</link>
		<comments>http://gordingin.wordpress.com/2008/09/20/creating-object-with-out-defining-them/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 11:57:52 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Create Dynamic objects]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=45</guid>
		<description><![CDATA[Lately my time has been devoted to one project, a very very cool project. That is about the depths I can go on in my blog but I can say that it involve a windows service that is basically the host for many assemblies and are accessed by webservices via .NET Remoting. I wanted this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=45&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--><span style="font-family:Calibri;">Lately my time has been devoted to one project, a very very cool project. That is about the depths I can go on in my blog but I can say that it involve a windows service that is basically the host for many assemblies and are accessed by webservices via .NET Remoting. </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">I wanted this service to be able to do 2 things. Since more and more assemblies were being added and certain customers purchased some features and other did not, I wanted it to be able to dynamically load them, getting the information from a config file and if the assembly failed during initialization, not continue the load.</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">My first approach:</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"><span> </span>At first I just added the singleton object in my service code, initialized and wham, all is good but this proved to be non-scalable. If I didn’t want the assembly to load (perhaps I was debugging, there was a know bug, customer didn’t purchase module, etc), it would still load and took up memory. Also when I coded newer assemblies, I would have to manually add an object reference and initialize them, maintenance nightmare. </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">I wanted each assembly to be autonomous, as well as the service. Neither should know ‘too much’ about each other. This way I could develop new assemblies, add them to the config file and it would load it when the service ran. Also, if I wanted to remove it, I just removed it from the config file.</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">My second approach:</span></p>
<p class="MsoNormal" style="text-indent:.5in;"><span style="font-family:Calibri;">So how did I accomplish this? With .NET Activator class and by calling its CreateInstance method, I can dynamically create an object base on a type with out defining it in the code. For example:</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">Class1.CClass1 objClass<span> </span>= new Class1.CClass1();</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">Is the same as </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">object objClass = <span style="color:#ff0000;">Activator.CreateInstance</span>(Type.GetType(“</span><span style="font-family:Calibri;">Class1.CClass1,</span><span style="font-family:Calibri;">Class1”));</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">These do the SAME thing yet one you have to define Class1, in the other piece of code, a string defines it. Magic I say.</span></p>
<p class="MsoNormal"><span style="font-family:Calibri;"> </span></p>
<p class="MsoNormal"><span style="font-family:Calibri;">Download <a href="http://www.consiliumsoft.com/Blogdownloads/CreateInstanceTest.zip">here</a></span></p>
<p><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]&gt; &lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--><!--[if gte mso 9]&gt;  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=45&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/09/20/creating-object-with-out-defining-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable iTunes BackUp</title>
		<link>http://gordingin.wordpress.com/2008/08/16/disable-itunes-backup/</link>
		<comments>http://gordingin.wordpress.com/2008/08/16/disable-itunes-backup/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 02:00:48 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=43</guid>
		<description><![CDATA[Love my iPhone 3G but man the backing up process, mega slow.  Check out this link to see how to disable it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=43&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Love my iPhone 3G but man the backing up process, mega slow.  Check out this <a href="http://iphonefreakz.com/2008/07/27/windows-users-disable-itunes-backup-for-faster-sync/">link</a> to see how to disable it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=43&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/08/16/disable-itunes-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Who loves GUIDs?</title>
		<link>http://gordingin.wordpress.com/2008/08/14/who-loves-guids/</link>
		<comments>http://gordingin.wordpress.com/2008/08/14/who-loves-guids/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 16:51:04 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=39</guid>
		<description><![CDATA[I love GUIDs. Why, well first I love saying &#8216;Guew-ehdd&#8217; though I have heard it called something else but any time you need a unqiue ID, GUIDs come to the rescue.  So as I moved into Flex, I wanted the same thing; here it is.. import mx.utils.UIDUtil; UIDUtil.createUID() &#8211; returns a guid looking string<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=39&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I love GUIDs. Why, well first I love saying &#8216;Guew-ehdd&#8217; though I have heard it called something else but any time you need a unqiue ID, GUIDs come to the rescue.  So as I moved into Flex, I wanted the same thing; here it is..</p>
<p>import mx.utils.UIDUtil;</p>
<p>UIDUtil.createUID() &#8211; returns a guid looking string</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=39&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/08/14/who-loves-guids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Pandora!</title>
		<link>http://gordingin.wordpress.com/2008/07/26/pandora/</link>
		<comments>http://gordingin.wordpress.com/2008/07/26/pandora/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 02:03:21 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=33</guid>
		<description><![CDATA[Pandora is a GREAT Free application that streams music to your PC. What more can you ask for other than Pandora&#8217;s Box. Pandora AIR Version<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=33&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pandora is a GREAT Free application that streams music to your PC. What more can you ask for other than Pandora&#8217;s Box.</p>
<p><a href="http://www.pandora.com">Pandora</a></p>
<p><a href="http://www.pandora.com/desktop">AIR Version</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=33&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/07/26/pandora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>A time for re&#8217;flex&#8217;tion</title>
		<link>http://gordingin.wordpress.com/2008/07/25/a-time-for-reflextion/</link>
		<comments>http://gordingin.wordpress.com/2008/07/25/a-time-for-reflextion/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 12:15:29 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=28</guid>
		<description><![CDATA[Any of you who use Java and C# know about reflection. Wikipedia has a definition here, but basically it allows the application to self interrogate itself and figure out things during runtime. 2 actionscript methods come to mind when I think of reflection. getQualifiedClassName and getDefinitionByName both in the flash.utils package. So I wanted to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=28&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Any of you who use Java and C# know about reflection. Wikipedia has a definition <a href="http://en.wikipedia.org/wiki/Reflection_(computer_science)">here</a>, but basically it allows the application to self interrogate itself and figure out things during runtime. 2 actionscript methods come to mind when I think of reflection.</p>
<p style="text-align:center;"><a href="http://livedocs.adobe.com/flex/2/langref/flash/utils/package.html">getQualifiedClassName</a> and <a href="http://livedocs.adobe.com/flex/2/langref/flash/utils/package.html">getDefinitionByName</a> both in the flash.utils package.</p>
<p style="text-align:left;">So I wanted to tell Flex to create a button without coding a &#8216;new mx.controls.Button&#8217;, so how is this done? Well with reflection.</p>
<p style="text-align:left;">Lets take a look at the Create method below. It takes an undefined data type, a string, two integers and two optional integers. The last four parameter are obvious so I will talk about the first one, objClass. This is where you tell Flex what kind of object to create, you pass in the class name like Button, List, etc and Flex will get the class name from the object, create a reference to it and then create an instance of that reference. Then it will return the object so you can use it, set data, add events, etc.</p>
<p style="text-align:left;">public function Create(objClass:*, strTitle:String, X:int, Y:int, iWidth:int = -1, iHeight:int = -1):*<br />
{<br />
var strClass:String = flash.utils.getQualifiedClassName(objClass);</p>
<p>var objViewRef:Class = null;<br />
var objView:Object = null;</p>
<p>objViewRef = flash.utils.getDefinitionByName(strClass) as Class;<br />
objView = new objViewRef();<br />
if(objView.hasOwnProperty(&#8220;label&#8221;) == true)<br />
objView.label = strTitle;<br />
objView.x = X;<br />
objView.y = Y;</p>
<p>if(iWidth != -1)<br />
objView.width = iWidth;</p>
<p>if(iHeight != -1)<br />
objView.height = iHeight;</p>
<p>addChild(objView as DisplayObject);</p>
<p>return objView;<br />
}</p>
<p>To create objects:</p>
<p><span style="font-size:x-small;color:#6699cc;"><span style="color:#6699cc;font-size:x-small;"> </span></span></p>
<p><span style="color:#990000;"><span style="font-size:x-small;"><strong>var objButton1:Button = Create(Button, &#8220;Button 1&#8243;, 10, 10);<br />
var objList:List = Create(List, &#8220;List 1&#8243;, 10, 100, 100);<br />
var objComboBox:ComboBox = Create(ComboBox, &#8220;ComboBox 1&#8243;, 10, 300, 100);</strong></span></span></p>
<p><strong><strong><span style="font-size:x-small;color:#990000;"></span></strong><span style="font-size:x-small;"><span style="font-size:x-small;"><span style="font-size:x-small;"> </span></span></span></strong></p>
<p><strong><span style="font-size:x-small;"> </span></strong></p>
<p><strong><span style="font-size:x-small;"> </span></strong></p>
<p>Download the code <a href="http://www.consiliumsoft.com/BlogDownloads/Reflection.zip">here</a> or click here to <a href="http://www.consiliumsoft.com/BlogDownloads/reflection/Reflection.html">view</a> it!.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=28&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/07/25/a-time-for-reflextion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>O/R Mapping with XML</title>
		<link>http://gordingin.wordpress.com/2008/06/15/or-mapping-with-xml/</link>
		<comments>http://gordingin.wordpress.com/2008/06/15/or-mapping-with-xml/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 19:17:53 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[O/R Mapping]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[Relational]]></category>
		<category><![CDATA[XSD]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=10</guid>
		<description><![CDATA[Like XML? Like Objects? Ever wish you would manipulate xml with objects? Read on, will you shortly. Microsoft has a utility &#8211; the XML Schema Definition Tool called XSD.exe. It takes a xml flile you make and creates a schema file (a file that describes xml). With that schema file, you create a C# or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=10&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like XML? Like Objects? Ever wish you would manipulate xml with objects? Read on, will you shortly. Microsoft has a utility &#8211; the XML Schema Definition Tool called XSD.exe. It takes a xml flile you make and creates a schema file (a file that describes xml). With that schema file, you create a C# or VB class out of it. Then a few lines of code allow you to easily read in a xml file and automatically map it to an object and vice versa!</p>
<p>Here is a link to the <a title="XSD" href="http://msdn.microsoft.com/en-us/library/x6c1kb0s(VS.71).aspx" target="_blank">tool</a></p>
<p>It is a command line tool that works like this. Assuming my xml file is called Data.xml, 2 steps get you a class to use.</p>
<p>Step 1 :XSD Data.xml<br />
Creates data.xsd</p>
<p>Step 2: XSD -c Data.xsd<br />
Creates Data.cs</p>
<p>Step 1 creates the xsd file. Normally you do not have to edit this file. Step 2 then creates a C# class. The -c parameter creates a C# object, I believe -vb creates a Visual Basic object.</p>
<p>Using this class, you can marshal the xml back and forth to objects. Here is some of the code in the example you can download.</p>
<p style="text-align:left;">
<p style="text-align:left;">XmlDocument xmlData = new XmlDocument();<br />
xmlData.Load(&#8220;Data.xml&#8221;);<br />
Data objData = (Data)DeserializeObject(xmlData.InnerXml, typeof(Data));</p>
<p style="text-align:left;">objData.FirstName = &#8220;John&#8221;;<br />
objData.LastNameName = &#8220;Smith&#8221;;  &lt;- HEY change data using object properties !!!!!</p>
<p style="text-align:left;">String strData = SerializeObject(typeof(Data), objData);</p>
<p style="text-align:left;">strData wil be a string of your changed xml.</p>
<p style="text-align:left;">You load download the source <a title="XML Download" href="http://www.consiliumsoft.com/BlogDownloads/XML Mapping.zip" target="_blank">here</a>.</p>
<p style="text-align:left;">So why do you want to use this. Well for one, the mapping of elements are automatically done for you. You do not have to enumerate through the xml, parse out element, attributes, etc and map them to a class you would have to create. XSD.exe does this for you.  XSD.exe is automatically installed for you with Visual Studio. To access it, open a Visual Studio Command Prompt ( this just sets the path for you so the command window can find XSD.exe ). Take a look at the data.cs file it creates. The second and most important reason, you can change data via properties! Just like a good object should.</p>
<p style="text-align:left;">So from xml to objects back to xml &#8211; hmmmm. Life is good.</p>
<p style="text-align:left;">Now the caveats &#8211; This tool takes the lowest common denominator approach. It cant&#8217; all ways figure out all xml so it will default some object in the class as object not as the real class. So you may have to redesign your xml data to use this process but it is well worth it to have the tools do the work.  Another huge point, if you decide to add something to your xml or remove it, just rerun the process to build a new class! All done &#8211; in a very short amount of time.</p>
<p style="text-align:left;">This is a very simple example there is a MUCH more you can do with it.</p>
<p style="text-align:left;">Enjoy&#8230;.</p>
<p style="text-align:left;">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=10&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/06/15/or-mapping-with-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Saving Flex UIComponents as JPG&#8217;s over a C# webservice</title>
		<link>http://gordingin.wordpress.com/2008/06/14/saving-uicomponents-as-jpgs-over-a-c-webservice/</link>
		<comments>http://gordingin.wordpress.com/2008/06/14/saving-uicomponents-as-jpgs-over-a-c-webservice/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 20:36:08 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=6</guid>
		<description><![CDATA[Ever needed to do screen shot in Flex and save it? What about saving a component like an image, swf or flv? I have created a sample that shows how to save an image to a C# webservice. It is very simple and builds off of other pieces of code but basically converts any Flex [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=6&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever needed to do screen shot in Flex and save it? What about saving a component like an image, swf or flv? I have created a sample that shows how to save an image to a C# webservice. It is very simple and builds off of other pieces of code but basically converts any Flex component that has an ID into BitmapData, encodes it as a JPG and streams it to the C# webservice where it saves it. Volia!</p>
<p><a title="Download Source" href="http://www.consiliumsoft.com/BlogDownloads/Passing Flex Image to WebService.zip" target="_self">Download Source</a></p>
<p>Note:</p>
<ul>
<li>Visual Studio 2005 was used in creating the webservice.</li>
<li>Make sure you edit the location of the webservice in the Flex code.</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=6&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/06/14/saving-uicomponents-as-jpgs-over-a-c-webservice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Resting with Flex &#8211; No not REST but &#8230;rest</title>
		<link>http://gordingin.wordpress.com/2008/06/13/resting-with-flex-no-not-rest-but-rest/</link>
		<comments>http://gordingin.wordpress.com/2008/06/13/resting-with-flex-no-not-rest-but-rest/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 22:36:56 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gordingin.wordpress.com/?p=4</guid>
		<description><![CDATA[I recently came across an interesting feature in Actionscript/Flex. In C++, you can use the &#8230; parameter to pass in a variable amount of&#8230;. variables! Using &#8230;rest will allow you to do the same in Actionscript. public function CoolFunction(&#8230;rest):void { for(var iParam:uint = 0; iParam &#60; rest.length; iParam++) { if(rest[iParam] is String) trace(&#8220;Passed in a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=4&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently came across an interesting feature in Actionscript/Flex. In C++, you can use the &#8230; parameter to pass in a variable amount of&#8230;. variables! Using &#8230;rest will allow you to do the same in Actionscript.</p>
<p>public function CoolFunction(&#8230;rest):void<br />
{</p>
<p style="padding-left:30px;">for(var iParam:uint = 0; iParam &lt; rest.length; iParam++)<br />
{</p>
<p style="padding-left:60px;">if(rest[iParam] is String)</p>
<p style="padding-left:90px;">trace(&#8220;Passed in a String&#8221;)</p>
<p style="padding-left:60px;">if(rest[iParam] is Image)</p>
<p style="padding-left:90px;">trace(&#8220;Passed in a Image&#8221;)</p>
<p style="padding-left:30px;">}</p>
<p>}</p>
<p>public function OnInit():void<br />
{</p>
<p style="padding-left:30px;">CoolFunction(&#8220;tst&#8221;);<br />
CoolFunction(&#8220;tst&#8221;,&#8221;test&#8221;);<br />
CoolFunction(imgImage2,&#8221;test&#8221;);</p>
<p>}</p>
<p>Nice stuff&#8230;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=4&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/06/13/resting-with-flex-no-not-rest-but-rest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
		<item>
		<title>Practicing safe Flex</title>
		<link>http://gordingin.wordpress.com/2008/04/21/hello-world/</link>
		<comments>http://gordingin.wordpress.com/2008/04/21/hello-world/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 14:14:17 +0000</pubDate>
		<dc:creator>gordingin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Adobe]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to my blog, I finally dove in. I will be blogging about Adobe Flex very soon.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=1&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to my blog, I finally dove in. I will be blogging about Adobe Flex very soon.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gordingin.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gordingin.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gordingin.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gordingin.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gordingin.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gordingin.wordpress.com&amp;blog=3538688&amp;post=1&amp;subd=gordingin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gordingin.wordpress.com/2008/04/21/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0bf83b1e5b48571a44640798c49bdafa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gordingin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
