Answer by Lalit Kale for What does this Visual Studio (2013 professional)...
It simply means, it is trying to find and link all the files. You should not be too much bothered about it and it is not from any of the third party extension.
View ArticleAnswer by Lalit Kale for How to substitute $httpBackend with alternate mock...
You may want to try angular.module('httpReal', ['ng']) .config(['$provide', function($provide) { $provide.decorator('$httpBackend', function() { return angular.injector(['ng']).get('$httpBackend'); });...
View ArticleAnswer by Lalit Kale for Sending object to a controller in asp.net mvc using...
Can you change your request and use dataType: "json",contentType: "application/json;charset=utf-8",This should work. Please let me know.
View ArticleAnswer by Lalit Kale for With Angular, should I bind to "domain command"...
As per your terminology, angular controller public method can be treated as "action handlers" and those are seperate from domain-level functions. When I say domain level functions, I am referring to...
View ArticleAnswer by Lalit Kale for angularjs code changes do not show up after browser...
ProblemClient-side (Browser) caching of static files in dev enviornmentServer-side (IIS Express) caching of static files in dev enviornmentSolutionsFor Client-side (Browser) caching of static files in...
View ArticleAnswer by Lalit Kale for RESTful API Testbed with Swagger
Postman is great tool to test with Swagger apis. It can also store requests and responses. More details as followshttps://www.getpostman.com/docs/importing_swagger. You might also want to look at the...
View ArticleAnswer by Lalit Kale for How do I guarantee that the interface between two...
The question is how to prevent cases where communication between two microservices is broken due to a broken contract between them?Design of Contract: While you are designing the contract, the server...
View ArticleAnswer by Lalit Kale for Security considerations for API Gateway clustering?
Can I cluster the the API Gateway and have the load balancer in front of it.Yes, you can. Most of the good Api Gateway solutions will provide the ability to do clustering. e.g....
View ArticleAnswer by Lalit Kale for Microservices: Service discovery/ circuit breaker...
I. circuit breaker and service discovery are patterns. When we say Pattern they can be implemented with any programming language. 'HTTP' protocol is for transfer of data.circuit breaker can be...
View ArticleAnswer by Lalit Kale for Microservices broadcast messages
You have to use fan out exchange. https://www.rabbitmq.com/tutorials/amqp-concepts.html
View Article