I'm trying to create a web api application that could support 3-4 similar web sites as a backend. Sometimes I'll need to deploy changes and fixes to my backend that are not as critical to all sites, so I want to expose the API in Urls dependent on my version (.../v1.0.0.3/StuffControler/DoSomething). For that I need the ability to load several versions of my assemblies at once. I can write my own implementation of that using reflection, but I'm using Ioc container that loads my implementation - my question is : could it also pick the assemblies by a given parameter (version number)
Is there an Ioc container that supports assembly versioning by reflection?
127 Views Asked by user355289 At
0
There are 0 best solutions below
Related Questions in WEB-SERVICES
- couldn't copy pdb file to another directory while consuming wcf web service
- .net rest service with JSON string and consumed with java client
- How to send Rest GET request that contains "#" value in url parameters?
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- How to use @queryparam when using array in Java
- How to accept cookies when using a webservice - Android?
- zend soap server reading xml attributes
- Web Service Error path property must set before calling the send method
- Error with kSOAP2
- JAX-RS service response is returning double fields without decimal places
- How can I call a ASP.Net webservice using AJAX without calling controller
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- File upload in AXIS2 webservice
- How to route by call method in proxy with WSO2?
- fetch data from web service to dataset in Delphi
Related Questions in REFLECTION
- Serializing TypeInfo / Type across .Net Platforms
- C# check if there is an overload method with the specific type
- instantiating a generic class data type known at runtime
- Instantiate a class which implements a generic interface
- C# Activator.GetInstance instances don't retain state when created as Interfaces
- How to force others to obey a specific layout for a child class?
- How should I be using LambdaMetaFactory in my use case?
- Get full path of a package situated in source folder from junit
- instantiating a generic referance class with data types known at runtime
- How to create a Dynamic IEnumerable
- Swift reflection - How to check if a reflected value is a kind of type
- GetTypeInfo Performance in Windows Store Apps
- What's the difference or relationship between Type and TypeInfo?
- Deserializing Generic Types from a ClassLouder class with GSON
- Need to print function's actual parameter name used while calling
Related Questions in ASP.NET-WEB-API
- Implement Onfailure in webApi controller
- WebApi: Reading errors
- Why web API return 404 when deploy to IIS
- One Web API calls the other Web APIs
- colon(:) in url causes error in asp.net
- Make a per-web-application object available to Web API and SignalR controllers
- Using Azure MobileServices library with my own LAN WebApi
- redirect to actionResult method from an api
- How to catch postpack result to Web Api
- Exposing webapi to third party
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- Can you use the same token in ADFS for 2 different relying parties?
- Does 'api/SomeEntity/ForOtherEntity/{otherEntityId}' break REST?
- Generic webAPI method based on parameter types of arrays
- Where can I find user identity when using webapi with Windows Authentication on IIS8
Related Questions in INVERSION-OF-CONTROL
- Autofac registering all subtypes keyed according to a property
- What does decoupling two classes at the interface level mean?
- How do I use GetAll with Ninject so that one failure doesn't stop the other bindings from resolving?
- Autofac constructor chaining
- Constructor Injection vs IocFactory
- Can mvc 5 application has IoC out of the box?
- Autofac Singleton OnActivating Resolve
- Passing Additional Parameters in Windsor castle
- Autofac IComponentContext.Resolve With Parameters
- Castle Windsor & Command Pattern
- The benefits and correct usage of a DI Container
- MEF composition with multiple interdependent parts
- Is there an Ioc container that supports assembly versioning by reflection?
- Why does laravel IoC does not provisioning my class with my method?
- Is it good practice to inject IUnityContainer into controller class to save extra code
Related Questions in IOC-CONTAINER
- Attempting to bind Guzzle Curl Client to Laravel's Service Container -- then Type Hint the Client Fails when attempting to __construct()
- How do I use GetAll with Ninject so that one failure doesn't stop the other bindings from resolving?
- Caliburn Micro EventAggregator subscribe/unsubscribe multiple instances of same ViewModel
- Define filter for DecorateAllWith() method in structure-map 3
- Autofac - DelegatingHandler (HttpMessageHandler) Registration
- BeanCurrentlyInCreationException: Error creating bean with name 'scrService'
- Lumen IoC binding resolution spotty within phpunit tests
- The benefits and correct usage of a DI Container
- Is there an Ioc container that supports assembly versioning by reflection?
- Why does laravel IoC does not provisioning my class with my method?
- Is it good practice to inject IUnityContainer into controller class to save extra code
- Using helper methods from Blade returning 'Cannot redeclare Class' error
- Laravel middleware to augment route model binding for security
- Laravel service container is it possible to bind to class AND all it's ancestors - like in Symfony
- Load external environment parameters in Symfony 3.2 using env() at runtime return unresolved values
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?