Posts

Showing posts with the label controller

Custom Controller, not working with areas

Image
Clash Royale CLAN TAG #URR8PPP Custom Controller, not working with areas I have a custom controller in my project because I use Structure Map as an IOC Container. When I add Datatables.mvc (library for jquery grid), and call a view from areas, the custom Controller does not work at runtime and gives me an error. When I remove the Datatables.mvc from references, the project compiles successfully and renders the view form controller as well. public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { AreaRegistration.RegisterAllAreas(); FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); RouteConfig.RegisterRoutes(RouteTable.Routes); BundleConfig.RegisterBundles(BundleTable.Bundles); setDbInitializer(); //Set current Controller factory as StructureMapControllerFactory ControllerBuilder.Current.SetControllerFactory(new StructureMapControllerFactory()); Microsoft.AspNet.Signal...

How to implementation redanduncy on SDN Controller

Image
Clash Royale CLAN TAG #URR8PPP How to implementation redanduncy on SDN Controller I have 3 Opendaylight Controllers and I need to implement VRRP or any redanduncy protocols between them .. how can i get it ? 1 Answer 1 For Opendaylight HA, you need to look at the built in features in ODL, using clustering, have a read below: https://docs.opendaylight.org/en/latest/getting-started-guide/clustering.html Opendaylight has its own datastore and apart from applications, and these information need to be synchronised between the nodes in cluster. In case of failure, the live nodes will cover for the failed node. Using other protocols such as VRRP, keepalived,etc would help with maintaining a virtual IP between multiple instances, but it wont have any awareness of ODL thus can't operate in the most effective way. By clicking "Post Your Answer", you a...