<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Christophe Herreman</title>
	<link>http://www.herrodius.com/blog</link>
	<description></description>
	<pubDate>Wed, 09 Jul 2008 02:45:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>Comment on Flash vs. audio markers by Shawn Snyder</title>
		<link>http://www.herrodius.com/blog/49#comment-13525</link>
		<dc:creator>Shawn Snyder</dc:creator>
		<pubDate>Thu, 03 Jul 2008 18:26:54 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/49#comment-13525</guid>
		<description>hey Christophe!

Is there any chance you can post your cs code again if you still have it?  The current link is broken.  Much appreciated.

:)</description>
		<content:encoded><![CDATA[<p>hey Christophe!</p>
<p>Is there any chance you can post your cs code again if you still have it?  The current link is broken.  Much appreciated.</p>
<p> <img src='http://www.herrodius.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Asdoc ant task by Trevor Burton</title>
		<link>http://www.herrodius.com/blog/85#comment-13524</link>
		<dc:creator>Trevor Burton</dc:creator>
		<pubDate>Thu, 03 Jul 2008 12:33:27 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/85#comment-13524</guid>
		<description>Christophe - is there any way to load a custom flex-config file?</description>
		<content:encoded><![CDATA[<p>Christophe - is there any way to load a custom flex-config file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prana Framework 0.5 Released by Christophe</title>
		<link>http://www.herrodius.com/blog/145#comment-13522</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Sun, 22 Jun 2008 18:55:11 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/145#comment-13522</guid>
		<description>Hi Bartek,

if you haven`t done so, please check the Prana forum. There is a post about using embedded xml within the container and Erik recently added support for this. See the post at http://prana.herrodius.com/viewtopic.php?f=3&#038;t=19

To answer your questions:

1. I haven`t done that before but I think it should be perfectly `legal` to do so.

2. There hasn`t been any design to handle naming conflicts right now. The last object will always win I suppose. I`ll try to check how spring handles this.</description>
		<content:encoded><![CDATA[<p>Hi Bartek,</p>
<p>if you haven`t done so, please check the Prana forum. There is a post about using embedded xml within the container and Erik recently added support for this. See the post at <a href="http://prana.herrodius.com/viewtopic.php?f=3&#038;t=19" rel="nofollow">http://prana.herrodius.com/viewtopic.php?f=3&#038;t=19</a></p>
<p>To answer your questions:</p>
<p>1. I haven`t done that before but I think it should be perfectly `legal` to do so.</p>
<p>2. There hasn`t been any design to handle naming conflicts right now. The last object will always win I suppose. I`ll try to check how spring handles this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prana Framework 0.5 Released by Bartosz Doszczak</title>
		<link>http://www.herrodius.com/blog/145#comment-13521</link>
		<dc:creator>Bartosz Doszczak</dc:creator>
		<pubDate>Thu, 19 Jun 2008 09:54:54 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/145#comment-13521</guid>
		<description>Hi Christophe,

I've been trying to use Prana to make our app modular or rather make Cairngorm modular which means that each module can add to the service locator and create its own controller. Because in my case it makes more sense to load embedded XMLs I implemeneted my own XML factory which just takes an XML object. On top of sits custom ApplicationContext which is just a wrapper around the factory. The factory mimics what the original XMLObjectFactory does (no XML merging, no imports though) by calling the XMLObjectDefinitionParser. With the orignal and my own implementations I tried two approches when each module adds to a single ApplicationContext instance or creates new ones. Some differences in behaviour in the latter case broght two questions I wanted to ask you:

1. Should the load/loadConfigLocation method be called only once in a factory/application context life time?
2. I found that the custom implmentations does not have issues with naming conflicts although in debug mode I can see that all of the objects defined in both files are there. It is not the case with the XMLApplicationContext and the underlying XML object factory. When lets say both configs contain a serviceLocator named the same the singleton won't have services added later on. A similar thing happens with the CairngormFrontController - if the parameter holding commands' package name is called the same it fails since the first value is applied to the instance created later on. Just wondering if it is an intended behaviour and if lack of those errors with the custom implementation is a side effect of some kind...

Cheers,
Bartek</description>
		<content:encoded><![CDATA[<p>Hi Christophe,</p>
<p>I&#8217;ve been trying to use Prana to make our app modular or rather make Cairngorm modular which means that each module can add to the service locator and create its own controller. Because in my case it makes more sense to load embedded XMLs I implemeneted my own XML factory which just takes an XML object. On top of sits custom ApplicationContext which is just a wrapper around the factory. The factory mimics what the original XMLObjectFactory does (no XML merging, no imports though) by calling the XMLObjectDefinitionParser. With the orignal and my own implementations I tried two approches when each module adds to a single ApplicationContext instance or creates new ones. Some differences in behaviour in the latter case broght two questions I wanted to ask you:</p>
<p>1. Should the load/loadConfigLocation method be called only once in a factory/application context life time?<br />
2. I found that the custom implmentations does not have issues with naming conflicts although in debug mode I can see that all of the objects defined in both files are there. It is not the case with the XMLApplicationContext and the underlying XML object factory. When lets say both configs contain a serviceLocator named the same the singleton won&#8217;t have services added later on. A similar thing happens with the CairngormFrontController - if the parameter holding commands&#8217; package name is called the same it fails since the first value is applied to the instance created later on. Just wondering if it is an intended behaviour and if lack of those errors with the custom implementation is a side effect of some kind&#8230;</p>
<p>Cheers,<br />
Bartek</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex 3 Localization by Shawn</title>
		<link>http://www.herrodius.com/blog/123#comment-13510</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Tue, 27 May 2008 23:11:28 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/123#comment-13510</guid>
		<description>I've got the multi-language localization with RSL's to work just fine.
But as with most applications, everything doesn't reside in the 
application page, so what I would like to do is somehow put the resource
bundle into the model (in Cairngorm) so it can be accessed in all
components that use the modellocator, instead of having to use the
application scope because thats where the ResourceBundle Metadata is... 
I could use Application.application.resourceManager... for everything
but I would rather have it in the model and be able to change the
localeChain of the resourceManager in the model, some way ????</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got the multi-language localization with RSL&#8217;s to work just fine.<br />
But as with most applications, everything doesn&#8217;t reside in the<br />
application page, so what I would like to do is somehow put the resource<br />
bundle into the model (in Cairngorm) so it can be accessed in all<br />
components that use the modellocator, instead of having to use the<br />
application scope because thats where the ResourceBundle Metadata is&#8230;<br />
I could use Application.application.resourceManager&#8230; for everything<br />
but I would rather have it in the model and be able to change the<br />
localeChain of the resourceManager in the model, some way ????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex 3 Localization by Johan</title>
		<link>http://www.herrodius.com/blog/123#comment-13509</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Tue, 27 May 2008 06:09:27 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/123#comment-13509</guid>
		<description>Ho do I get a class to update when the bundles is changed. I can get the class to use the resouces like this

[ResourceBundle("forms")]	    
public class MultiFileUpload extends UIComponent { ... }

and set values in the class with resourceManager.getString('form','MY_KEY')
but how/can do I get them to update AFTER the class has been instantiated?

For example I have a FileUpload class and want UI elements (column titles of a file list data grid) to changes if the language is changed.</description>
		<content:encoded><![CDATA[<p>Ho do I get a class to update when the bundles is changed. I can get the class to use the resouces like this</p>
<p>[ResourceBundle(&#8221;forms&#8221;)]<br />
public class MultiFileUpload extends UIComponent { &#8230; }</p>
<p>and set values in the class with resourceManager.getString(&#8217;form&#8217;,'MY_KEY&#8217;)<br />
but how/can do I get them to update AFTER the class has been instantiated?</p>
<p>For example I have a FileUpload class and want UI elements (column titles of a file list data grid) to changes if the language is changed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Set up your AMFPHP environment: running IIS and Apache simultaniously by Wilfried Redant</title>
		<link>http://www.herrodius.com/blog/23#comment-13504</link>
		<dc:creator>Wilfried Redant</dc:creator>
		<pubDate>Wed, 21 May 2008 08:07:39 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/23#comment-13504</guid>
		<description>Hi
I came accross this article and am actually looking for an IIS expert as our current Windows 2003 server in combination with PHP/MySql is too slow and we also have issues with Flash that we don't have on Unix servers.
Anyone?
Thanks!
Wilfried</description>
		<content:encoded><![CDATA[<p>Hi<br />
I came accross this article and am actually looking for an IIS expert as our current Windows 2003 server in combination with PHP/MySql is too slow and we also have issues with Flash that we don&#8217;t have on Unix servers.<br />
Anyone?<br />
Thanks!<br />
Wilfried</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introducing Prana: IoC Container for AS3 by Varun Rathore</title>
		<link>http://www.herrodius.com/blog/64#comment-13501</link>
		<dc:creator>Varun Rathore</dc:creator>
		<pubDate>Thu, 15 May 2008 11:34:38 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/64#comment-13501</guid>
		<description>Love ur work .
Keep the good work hope to see this thing on widescale, i loved the (recursively) defining properties .

Thanks a lot</description>
		<content:encoded><![CDATA[<p>Love ur work .<br />
Keep the good work hope to see this thing on widescale, i loved the (recursively) defining properties .</p>
<p>Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Set up your AMFPHP environment: running IIS and Apache simultaniously by b.rotrou</title>
		<link>http://www.herrodius.com/blog/23#comment-13500</link>
		<dc:creator>b.rotrou</dc:creator>
		<pubDate>Wed, 14 May 2008 20:39:41 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/23#comment-13500</guid>
		<description>hello
great sample.
i'm trying to use amfphp and sql server, and I have some bug , do you have use this two technologies together?

the broswer of amfphp see the data base ans their enter but dont give me their value.
bye</description>
		<content:encoded><![CDATA[<p>hello<br />
great sample.<br />
i&#8217;m trying to use amfphp and sql server, and I have some bug , do you have use this two technologies together?</p>
<p>the broswer of amfphp see the data base ans their enter but dont give me their value.<br />
bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;Could not find the main class. Program will exit.&#8221; by Chris</title>
		<link>http://www.herrodius.com/blog/42#comment-13498</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 12 May 2008 12:55:05 +0000</pubDate>
		<guid>http://www.herrodius.com/blog/42#comment-13498</guid>
		<description>Hi, 

Thanks for this fix. As a side note, you will also get this error if you make a mistake when inputting VM arguments. For instance, I forgot the '-' in front of one of my VM args and got the same error, so if the above fix doesn't work then check your VM args.</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Thanks for this fix. As a side note, you will also get this error if you make a mistake when inputting VM arguments. For instance, I forgot the &#8216;-&#8217; in front of one of my VM args and got the same error, so if the above fix doesn&#8217;t work then check your VM args.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
