Has anyone managed to create a windsor bootstrapper for prism2?
Prism 2 seems to rely on Unity's behaviour of injecting types that haven't yet been registered.
Thanks.
for future reference
I wrote a Prism v4 Windsor extension https://github.com/bszafko/PrismContrib.WindsorExtensions
and a nuget package http://nuget.org/Packages/Packages/Details/Prism-WindsorExtensions-4-0-0-0
Windsor bootstrapper is already implemented. Look at:
http://www.codeplex.com/CompositeWPFContrib
Maybe this one?
Related
I'm just reading up about the inbuilt IoC of MVVM Cross and how it makes heavy use of reflection. Just wondering, does this cause issues with Xamarin linking? What are people finding best practise in this area? Using "Link SDK assemblies only" or perhaps configuring IoC in a way that avoids reflection?
Thanks in advance :-)
Both MvvmCross IoC and MvvmCross binding rely on Reflection.
Because of this, users often use "Link SDK assemblies only" and often use "LinkerPleaseIgnore" files.
You can read more about this on:
https://stackoverflow.com/questions/10224376/mvvmcross-experiences-hindsight-limitations/10225623#10225623
Problems with mvvmcross Binding on IOS (Works on Simulator, but some properties doesn't work on the Device)
... and many more https://stackoverflow.com/search?q=[mvvmcross]+linker
The MvvmCross nuget packages ship with default "LinkerPleaseIgnore" files - e.g. https://github.com/MvvmCross/MvvmCross/blob/v3.1/nuspec/TouchContent/LinkerPleaseInclude.cs.pp
I'm planning to integrate RPC via JSON-RPC in my Flex applications. I've searched around the net and already found librarys for calling remote methods, but I also need to offer methods myself. None of the libs I found seemed to have this functionality.
Are there any ActionScript librarys out there which let met offer methods via JSON-RPC?
Kind regards,
Markus
If you are using playerGlobal version 10 or above than it is automatically incuded and you can directly call JSON.encode or JSON.decode methods. for PlayerGlobal version below 10, you can look for AS3CoreLib.
I am looking for the WcfFacility which is supposed to be in Castle.Facilities.WcfIntegration.
Have things changed? Where is it? I have the latest castle (version 3.1).
The question is related to this link:
castle wcf integration
I assume you're asking where is it in the package you download? It's there.
Or do you mean the nuget package
I'm attempting to use Castle Windsor 3.0 (because I want to use the WcfFacility) and Enterprise Library 5. I understand that I need to configure a Windsor specific IContainerConfigurator but have been unable to find one that works with CW 3.
The code here comes close but doesn't compile with CW 3.
Any ideas how to modify that code to support v3?
I believe there is one http://nuget.org/packages/EntLibContrib.Common.Configuration.Windsor/ although I have no idea how to use it.
Silverlight version of Windsor container does not provide XmlInterpreter() for reading bindings from config file. Could someone suggest how can I implement my own interpreter?
The online document suggest reading a configuration file, creating an instance of IConfiguration and registering them into IConfigurationStore.
How and where can I do this?
This feature is not available in Silverlight version of Windsor because Silverlight lacks System.Xml API that Windsor uses.
There's a ticket for that in Castle's Issue tracker along with patch (I'm afraid outdated) for implementing this feature using LINQ to Xml.
This can give you some ideas. If you want to update it and make it pass all the tests, and perform well we can include it in the upcoming release of Windsor (2.5).