<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ninject Discussions Rss Feed</title><link>http://ninject.codeplex.com/Thread/List.aspx</link><description>ninject Discussions Rss Description</description><item><title>New Post: How to inject existing instance into target instance?</title><link>http://ninject.codeplex.com/discussions/404818</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Alright, after numerous trial-and-error processes, I've got the solution and following is the working code:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;        IKernel kernel = &lt;span style="color:blue"&gt;new&lt;/span&gt; StandardKernel();
        kernel.Bind&amp;lt;IFood&amp;gt;().To&amp;lt;AnimalFood&amp;gt;().WithPropertyValue(&lt;span style="color:#a31515"&gt;&amp;quot;FoodName&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;Pizza&amp;quot;&lt;/span&gt;);
        IFood food = kernel.Get&amp;lt;IFood&amp;gt;();

        kernel.Bind&amp;lt;IAnimal&amp;gt;().To&amp;lt;Dog&amp;gt;().WithPropertyValue(&lt;span style="color:#a31515"&gt;&amp;quot;Name&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;Bobby&amp;quot;&lt;/span&gt;);        
        IAnimal bobbyDog = kernel.Get&amp;lt;IAnimal&amp;gt;();
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;What happen is, I didn't aware that Ninject cannot inject string type value into property. Though I didn't test further, but I guess it applies the same for all other primitive types such as bool, int, etc.&lt;/p&gt;
&lt;p&gt;The other mistake I made was, instead of kernel.Get&amp;lt;IDog&amp;gt;(), I code as kernel.Get&amp;lt;Dog&amp;gt;().&lt;/p&gt;
&lt;/div&gt;</description><author>hlchuah77</author><pubDate>Wed, 28 Nov 2012 04:20:15 GMT</pubDate><guid isPermaLink="false">New Post: How to inject existing instance into target instance? 20121128042015A</guid></item><item><title>New Post: How to inject existing instance into target instance?</title><link>http://ninject.codeplex.com/discussions/404818</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I notice that each time when I resolve instance via Ninject kernel (call it InstanceA), Ninject will create a new dependency instance and inject it into my InstanceA.MyProperty.&lt;/p&gt;
&lt;p&gt;What I want to achieve is, instead of Ninject to create a new copy of dependency instance, I want Ninject to inject the dependency instance that I have created manually into InstanceA.MyProperty.&lt;/p&gt;
&lt;p&gt;I've tried for quite some while and have googled around but I couldn't get any solution. Following is my test code.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;        IKernel kernel = &lt;span style="color:blue"&gt;new&lt;/span&gt; StandardKernel();
        kernel.Bind&amp;lt;IFood&amp;gt;().To&amp;lt;AnimalFood&amp;gt;();
        IFood food = kernel.Get&amp;lt;IFood&amp;gt;();
        food.FoodName = &lt;span style="color:#a31515"&gt;&amp;quot;Pizza&amp;quot;&lt;/span&gt;;

        kernel.Bind&amp;lt;IAnimal&amp;gt;().To&amp;lt;Dog&amp;gt;().WithPropertyValue(&lt;span style="color:#a31515"&gt;&amp;quot;MyFood&amp;quot;&lt;/span&gt;, food);
        IAnimal bobbyDog = kernel.Get&amp;lt;Dog&amp;gt;();
        bobbyDog.Name = &lt;span style="color:#a31515"&gt;&amp;quot;Bobby&amp;quot;&lt;/span&gt;;
        &lt;span style="color:green"&gt;//kernel.Inject(bobbyDog);&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I expect that the bobbyDog instance will get a food instance with FoodName = &amp;quot;Pizza&amp;quot;. However, it turns out not the case.&lt;/p&gt;
&lt;/div&gt;</description><author>hlchuah77</author><pubDate>Wed, 28 Nov 2012 03:25:58 GMT</pubDate><guid isPermaLink="false">New Post: How to inject existing instance into target instance? 20121128032558A</guid></item><item><title>New Post: XML Extension and Weak Event Message Broker Extension</title><link>http://ninject.codeplex.com/discussions/355287</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;strong&gt;Hello all,&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I figure out what was the problem. The few examples with XML Extensions are very shorts and they are saying:&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt; var settings = new NinjectSettings { LoadExtensions = false };&lt;/pre&gt;
&lt;pre&gt; kernel = new StandardKernel(settings, new XmlExtensionModule());&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;kernel.Load("MyConfigFile.xml");&lt;/pre&gt;
&lt;pre&gt;&lt;strong&gt;But LoadExtensions = false exclude auto loading of available modules.&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;So I changed it to:&lt;/strong&gt;&lt;br /&gt;
&lt;pre&gt; kernel = new StandardKernel();
&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;kernel.Load("MyConfigFile.xml");&lt;br /&gt;&lt;strong&gt;And it works perfect - it loads WeakEventMessageBroker Extension, and XML extension too and events are wired up.&lt;/strong&gt;&lt;/pre&gt;
&lt;/pre&gt;&lt;/div&gt;</description><author>Elisaveta</author><pubDate>Fri, 11 May 2012 12:59:22 GMT</pubDate><guid isPermaLink="false">New Post: XML Extension and Weak Event Message Broker Extension 20120511125922P</guid></item><item><title>New Post: XML Extension and Weak Event Message Broker Extension</title><link>http://ninject.codeplex.com/discussions/355287</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello, &lt;br&gt;
I am newbie in Ninject and IoC and I want to understand how to use it &lt;br&gt;
properly. &lt;br&gt;
I need to use XML configuration for creating my objects (this is a &lt;br&gt;
requirement) and I done that. But I need to use WeakEventMessageBrorker &lt;br&gt;
too. So when create objects by the code (not with XML config file) the &lt;br&gt;
events are wired together and everything works perfect. When create &lt;br&gt;
objects and load XML file the events are not wired. &lt;br&gt;
My xml file looks like basic.xml from the Ninject.Extension.Xml.Test &lt;br&gt;
project:&lt;/p&gt;
&lt;p&gt;&amp;lt;module name=&amp;quot;basicTest&amp;quot;&amp;gt; &lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;lt;bind name=&amp;quot;myObject&amp;quot; &lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; service=&amp;quot;MyNamespace.IService, MyProjectName&amp;quot;
&lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; to=&amp;quot;MyNamespace.MyService, MyProjectName&amp;quot; /&amp;gt;
&lt;br&gt;
&amp;lt;/module&amp;gt;&lt;/p&gt;
&lt;p&gt;, and class form code behind&lt;/p&gt;
&lt;p&gt;public override void Load() &lt;br&gt;
{ &lt;br&gt;
Bind&amp;lt;IService&amp;gt;().To&amp;lt;MyService&amp;gt;();&lt;/p&gt;
&lt;div id="qhide_82617" style="display:block"&gt;} &lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;p&gt;So what is the difference from both object created by xml config file &lt;br&gt;
and from code behind? &lt;br&gt;
I know that Ninject`s goal is to restrict using of xml, but is there &lt;br&gt;
any chance to use &amp;nbsp;Ninject.Extension.Xml and WeakEventMessageBrorker &lt;br&gt;
together? &lt;br&gt;
Thanks in advance&lt;/p&gt;
&lt;/div&gt;</description><author>Elisaveta</author><pubDate>Thu, 10 May 2012 14:47:56 GMT</pubDate><guid isPermaLink="false">New Post: XML Extension and Weak Event Message Broker Extension 20120510024756P</guid></item><item><title>New Post: Is GitHub or CodePlex the source of truth for Ninject?</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=210491</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;PS Just noted that the ninject.org website says the official wiki is at GitHub, however if you google Ninject the documentation link goes to CodePlex.&lt;/p&gt;
&lt;p&gt;&amp;lt;cite&amp;gt;&lt;strong&gt;ninject&lt;/strong&gt;.org/ - &amp;lt;/cite&amp;gt;&lt;span&gt;&lt;a href="http://74.125.153.132/search?q=cache:C9pmBYoJdacJ:ninject.org/+ninject&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=au&amp;client=firefox-a"&gt;Cached&lt;/a&gt; - &lt;a href="http://www.google.com.au/search?hl=en&amp;client=firefox-a&amp;hs=a5T&amp;rls=org.mozilla:en-US:official&amp;q=related:ninject.org/+ninject&amp;sa=X&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;ved=0CAcQHzAA"&gt;Similar&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://dojo.ninject.org/&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=1&amp;ved=0CAgQqwMoADAA&amp;usg=AFQjCNFQFcjO00Qfi7Yu_mWd3L9CZy3LAA"&gt;Documentation  for Ninject&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/download&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=2&amp;ved=0CAkQqwMoATAA&amp;usg=AFQjCNH7JrT6fkq-EVaIwy0-T81G4Fk4Cw"&gt;Download&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/extensions&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=3&amp;ved=0CAoQqwMoAjAA&amp;usg=AFQjCNEky1yD3wVjUG3r6JPCv1tI7Og3dA"&gt;Extensions&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/contribute&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=4&amp;ved=0CAsQqwMoAzAA&amp;usg=AFQjCNF1pdIUvDu2DQ5UpgoNu_0Wxt0t-w"&gt;Contribute&lt;/a&gt;&lt;/div&gt;
&lt;/td&gt;
&lt;td style="padding-left:20px"&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/community&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=5&amp;ved=0CAwQqwMoBDAA&amp;usg=AFQjCNEoMMGc3ty4haXj1nHz99zd-Upm9w"&gt;Speak  up&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/merchandise&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=6&amp;ved=0CA0QqwMoBTAA&amp;usg=AFQjCNE-wUlKswQj3vI6Iv-6H4dUfYN5Nw"&gt;Merchandise&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/learn&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=7&amp;ved=0CA4QqwMoBjAA&amp;usg=AFQjCNEcm6RR5h2-_FGzUjGeBj414vC7Cg"&gt;Visit  the Dojo&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.google.com.au/url?q=http://ninject.org/sponsors&amp;ei=k6vUS8XNAcyIkAWm45WMDA&amp;sa=X&amp;oi=smap&amp;resnum=1&amp;ct=result&amp;cd=8&amp;ved=0CA8QqwMoBzAA&amp;usg=AFQjCNFVSD9QWETX_ifOyV82zB5-jD3_qQ"&gt;Sponsors&lt;/a&gt;&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>callagga</author><pubDate>Sun, 25 Apr 2010 20:53:09 GMT</pubDate><guid isPermaLink="false">New Post: Is GitHub or CodePlex the source of truth for Ninject? 20100425085309P</guid></item><item><title>New Post: Is GitHub or CodePlex the source of truth for Ninject?</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=210491</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Just wondering which is the most up-to-date repository, or the source of truth, for Ninject code &amp;amp; doco?&amp;nbsp; Is it CodePlex or GitHub?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;&lt;/div&gt;</description><author>callagga</author><pubDate>Sun, 25 Apr 2010 20:47:37 GMT</pubDate><guid isPermaLink="false">New Post: Is GitHub or CodePlex the source of truth for Ninject? 20100425084737P</guid></item><item><title>New Post: Extensibility</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=80717</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Ok. I figured it out.&amp;nbsp; I was quite simeple.&amp;nbsp; Remove the IInjectorFactory from the Kernel's components and add a custom factory.&amp;nbsp; Here's how:&lt;/p&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;Kernel.Components.RemoveAll&amp;lt;IInjectorFactory&amp;gt;();
Kernel.Components.Add&amp;lt;IInjectorFactory, ProxyInjectorFactory&amp;gt;();
&lt;/pre&gt;
&lt;/div&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;&lt;span style="color:Blue"&gt;public&lt;/span&gt; &lt;span style="color:Blue"&gt;class&lt;/span&gt; ProxyInjectorFactory : IInjectorFactory
{
    &lt;span style="color:Blue"&gt;private&lt;/span&gt; &lt;span style="color:Blue"&gt;readonly&lt;/span&gt; DynamicMethodInjectorFactory _inner = &lt;span style="color:Blue"&gt;new&lt;/span&gt; DynamicMethodInjectorFactory();

    &lt;span style="color:Blue"&gt;public&lt;/span&gt; &lt;span style="color:Blue"&gt;void&lt;/span&gt; Dispose()
    {
        _inner.Dispose();
    }

    &lt;span style="color:Blue"&gt;public&lt;/span&gt; INinjectSettings Settings
    {
        &lt;span style="color:Blue"&gt;get&lt;/span&gt; { &lt;span style="color:Blue"&gt;return&lt;/span&gt; _inner.Settings; }
        &lt;span style="color:Blue"&gt;set&lt;/span&gt; { _inner.Settings = value; }
    }

    &lt;span style="color:Blue"&gt;public&lt;/span&gt; ConstructorInjector Create(ConstructorInfo constructor)
    {
        &lt;span style="color:Blue"&gt;var&lt;/span&gt; type = constructor.DeclaringType;
        &lt;span style="color:Blue"&gt;var&lt;/span&gt; behaviors = type.GetAttributes&amp;lt;IBehavior&amp;gt;(&lt;span style="color:Blue"&gt;true&lt;/span&gt;).ToArray();

        &lt;span style="color:Blue"&gt;return&lt;/span&gt; behaviors.Length &amp;gt; 0
                   ? &lt;span style="color:Blue"&gt;new&lt;/span&gt; ConstructorHelper(constructor.DeclaringType, behaviors).CreateConstructor
                   : _inner.Create(constructor);
    }

    &lt;span style="color:Blue"&gt;public&lt;/span&gt; PropertyInjector Create(PropertyInfo property)
    {
        &lt;span style="color:Blue"&gt;return&lt;/span&gt; _inner.Create(property);
    }

    &lt;span style="color:Blue"&gt;public&lt;/span&gt; MethodInjector Create(MethodInfo method)
    {
        &lt;span style="color:Blue"&gt;return&lt;/span&gt; _inner.Create(method);
    }

    &lt;span style="color:Blue"&gt;private&lt;/span&gt; &lt;span style="color:Blue"&gt;class&lt;/span&gt; ConstructorHelper
    {
        &lt;span style="color:Blue"&gt;private&lt;/span&gt; &lt;span style="color:Blue"&gt;readonly&lt;/span&gt; Type _implementation;
        &lt;span style="color:Blue"&gt;private&lt;/span&gt; &lt;span style="color:Blue"&gt;readonly&lt;/span&gt; IBehavior[] _behaviors;

        &lt;span style="color:Blue"&gt;public&lt;/span&gt; ConstructorHelper(Type implementation, IBehavior[] behaviors)
        {
            _implementation = implementation;
            _behaviors = behaviors;
        }

        &lt;span style="color:Blue"&gt;public&lt;/span&gt; &lt;span style="color:Blue"&gt;object&lt;/span&gt; CreateConstructor(&lt;span style="color:Blue"&gt;params&lt;/span&gt; &lt;span style="color:Blue"&gt;object&lt;/span&gt;[] args)
        {
            &lt;span style="color:Blue"&gt;var&lt;/span&gt; factory = ServiceLocator.Current.GetInstance&amp;lt;IProxyFactory&amp;gt;();
            &lt;span style="color:Blue"&gt;return&lt;/span&gt; factory.CreateProxy(
                _implementation,
                _behaviors,
                args
                );
        }
    }
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Thu, 14 Jan 2010 00:40:06 GMT</pubDate><guid isPermaLink="false">New Post: Extensibility 20100114124006A</guid></item><item><title>New Post: Extensibility</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=80717</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Here's what I want to do. &amp;nbsp;I want to observe every registration that comes through Ninject. &amp;nbsp;If the reg meats certain requirements, I want to alter the reg, essentially by adding a custom provider to replace the default provider. This is because in certain situations, I want to delegate the instantiation to DynamicProxy. &amp;nbsp;My implementation of the proxy factory along with all metadata and methods of determining whether or not interception should occur must not dependent on Ninject. &amp;nbsp;I've found a way to do this with every major IoC container, but I'm struggling with Ninject. &amp;nbsp;Can anyone assist?&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Wed, 13 Jan 2010 19:46:06 GMT</pubDate><guid isPermaLink="false">New Post: Extensibility 20100113074606P</guid></item><item><title>New Post: Performance on Mobile devices</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=80444</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Thanks for the great amount of work you put not only in designing Ninject, but also taking the time to really document and explain it well.&lt;/p&gt;
&lt;p&gt;My concern regards using Ninject, or other frameworks like it with mobile devices. I always thought that these types of frameworks would use too much reflection or I would be boxing and unboxing objects too often.&lt;/p&gt;
&lt;p&gt;Do you have any input on how efficiently Ninject performs on Windows Mobile devices?&lt;/p&gt;
&lt;p&gt;Or any thoughts on the best way to use Ninject for Mobile projects?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks again for Ninject&lt;/p&gt;
&lt;p&gt;Dave Kersnowski&lt;/p&gt;&lt;/div&gt;</description><author>DaveKer</author><pubDate>Mon, 11 Jan 2010 16:01:51 GMT</pubDate><guid isPermaLink="false">New Post: Performance on Mobile devices 20100111040151P</guid></item><item><title>New Post: Silverlight 3?</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=76144</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have been using Ninject inside a SL 3 app without problem.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>SimpleNick</author><pubDate>Fri, 18 Dec 2009 21:51:15 GMT</pubDate><guid isPermaLink="false">New Post: Silverlight 3? 20091218095115P</guid></item><item><title>New Post: Silverlight 3?</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=76144</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Does the SL2 version of NInject work with SL3 as well?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Bill&lt;/p&gt;&lt;/div&gt;</description><author>wlcohagan</author><pubDate>Wed, 25 Nov 2009 01:50:51 GMT</pubDate><guid isPermaLink="false">New Post: Silverlight 3? 20091125015051A</guid></item><item><title>New Post: Would you like any issues logged here?</title><link>http://ninject.codeplex.com/Thread/View.aspx?ThreadId=69208</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, if we do try out the code from GitHub, would you like us to log any issues here on CodePlex?&amp;nbsp; Or do you prefer getting direct feedback?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;ZBB&lt;/p&gt;&lt;/div&gt;</description><author>zerobugbounce</author><pubDate>Thu, 17 Sep 2009 07:27:55 GMT</pubDate><guid isPermaLink="false">New Post: Would you like any issues logged here? 20090917072755A</guid></item></channel></rss>