How do I split out a service layer
I currently have four projects in my website’s solution:
Anemic Domain Model vs. DDD by definition example(s)?
What is an example of “Business Logic” that should reside in the DomainModel i.e. inside an Entity instead of inside a (Domain) Service, as well as some example logic that should be in a service.
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Asp.Net MVC Windows authentication – vulnerabilities of http vs https?
I am developing an ASP.Net MVC 3 intranet site that will use Integrated Windows Authentication exclusively. What are the vulnerabilities of the challenge/response authentication traffic being sent in plain text? Will someone sniffing the network traffic be able to hijack an authenticated session?
Is there a setting to enable anti forgery globally in ASP.NET MVC, and if not, why?
The tutorials I’ve read tell you to use [ValidateAntiForgeryToken] attributes and <%= Html.AntiForgeryToken() %>
in your code.
Provide multiple SendCompleted callbacks to SmtpClient
I have an Email
class that has a Send
method that optionally takes an SmtpClient
and sends an email asynchronously using SendAsync
. If no SmtpClient
is supplied to this method, it instantiates a default SmtpClient
and uses that to send the email. Inside the Send
function, I provide a SendCompleted
callback which disposes of the MailMessage
and the default SmtpClient
if one was not supplied to the method.