Comment by Lalit Kale on Font won't get found on server for firefox
I understand that you tried all but can you take a look here in issues of fontawesome. I also see that they have closed the issues but still since nothing is working, I think this will give some hints...
View ArticleComment by Lalit Kale on Intermittent SSL/TLS error using Azure SDK in Azure...
Can you check this thread forums.asp.net/post/1695893.aspx#1695893
View ArticleComment by Lalit Kale on MVC Action Filters Collection was modified;...
Can you put your code as well. If you are using custom filters, check in which orders they are executing. It seems in 5.1.3 they are getting asynchronously executed and struggling to get the same...
View ArticleComment by Lalit Kale on Publish an MVC application with a web.config for...
We have solved this with two types of files. One is Environment Definition file, which contains all key-value mappings of specific deployment enviornment say prod1,prod2 etc. and our web.config files...
View ArticleComment by Lalit Kale on InnerException : Table 'xxx.aspnetusers' doesn't exist
Please check whether you have "MySql.Data" assembly in your reference folder or now. If it is there then check the version and try to match it with web.config version. Hope this helps.
View ArticleComment by Lalit Kale on Strategy to keep local cache see the same "version"...
Reading the problem, looks like you need a map-reduce system or are you looking for something more complex than that?
View ArticleComment by Lalit Kale on Cross-thread conflicts in StructureMap
I think, reasons are same as described in 'Why Nested Containers over HttpContext or ThreadLocal Scoping?' here structuremap.github.io/the-container/nested-containers
View ArticleComment by Lalit Kale on How do I start/stop IIS Express Server?
The process you are explaining is about re-installing IIS and nothing to do with question.
View ArticleComment by Lalit Kale on How to get currentuser in asp.net mvc active...
principally, this question is, Duplicate of stackoverflow.com/questions/263486/…
View ArticleComment by Lalit Kale on Visual Studio 2010 shortcut to find classes and...
so the default mapping is Ctrl + 1 + F1
View ArticleComment by Lalit Kale on How to self register a service with Consul
You can use tools like Registrar(gliderlabs.github.io/registrator/latest) for auto registration of your services.
View ArticleComment by Lalit Kale on Serious delay using HttpClient in combination with...
Can you please let me know where you disabled System.Diagnostics. I am facing exact same issue with NServicebus, asp.net core based endpoint and SQSTransport.
View ArticleAnswer by Lalit Kale for Configuring Authorization in a mixed MVC / WebForms...
In the question, you are mixing two parts 1. Authentication and 2. Authorization.For Authentication: Forms authentication can be worked out.For Authorization: You have to implement custom Authorization...
View ArticleAnswer by Lalit Kale for Logging crosscutting concern needs access to data layer
IMO, Since Logging is cross cutting concern, it should not refer your Data layer. In your question, I see that you had assumed that you are logging into the database. Even if this is your requirement,...
View ArticleAnswer by Lalit Kale for DDD - Aggregates with large graphs
I think you need to clearly distinguish between your presentationObjects and Domain Objects, if you are truely following DDD. If you are thinking of exposing Domain objects towards UI then I think,...
View ArticleAnswer by Lalit Kale for How can I get PDF Reports in MVC 4
use jspdf library which takes care of CSS and all the styling. https://github.com/MrRio/jsPDF
View ArticleAnswer by Lalit Kale for How can I restrict the event that must be initiated...
Erik is right.However, If your question is looked from different perspective, it seems like you are looking for some sort of Authentication mechanism. Are you sure you are not looking for...
View ArticleAnswer by Lalit Kale for Creating REST Api in MVC 5 with Byte[] as Parameter
REST means your methods would be closer to what HTTP verbs are.For byte[] NoteBookData parameter, you can tweak it as base64 string so as to get consumed by any of the platform.
View ArticleAnswer by Lalit Kale for cant figure out whats wrong with my enum dropdown...
Enums are supported in Razor views from MVC 5.1. Check if you are using any prior version of mvc. Additionally, MVC 5.1 Razor DisplayFor not working with Enum DisplayName this will also help you.
View ArticleAnswer by Lalit Kale for InnerException : Table 'xxx.aspnetusers' doesn't exist
The exception clearly states that aspnetusers is missing from your database. However, on more findings, I think you would like to go through this answer from asp.net...
View ArticleAnswer 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