dotnetchris

Stories kicked by dotnetchris

SignalR - The ASP.Net alternative to Node.js + Socket.IO + NowJS(www.hanselman.com)

submitted by dpetersondpeterson(4397) 8 months, 27 days ago

Scott Hanselman provides a quick introduction to SignalR and shows off a 12 line chat program read more...

1 comment |category: |Views: 727

tags: another

Dependency Injection Framework Speedtest(philipm.at)

submitted by dpetersondpeterson(4397) 9 months, 14 days ago

Philip Mateescu shares with us an in-depth and well documented speed test of Autofac v2.4.5.724, Castle.Windsor v2.5.3, Ninject v2.2.0.0, Spring.Net v1.3.1, StructureMap v2.6.1, and Microsoft Unity v2.1.0.0. Spoiler alert, Unity loses big time ;-) read more...

6 comments |category: |Views: 316

tags: another

There's a Proxy In My Boots! - Entity Framework POCO(blogs.dotnetkicks.com)

submitted by dpetersondpeterson(4397) 9 months, 15 days ago

In this post I provide a small extension method that can be used to create a clone of a proxied Entity Framework POCO entity for "disconnected" editing. read more...

add a comment |category: |Views: 121

tags: another

ASP.NET MVC 3 Release Candidate published(weblogs.asp.net)

submitted by dotnetchrisdotnetchris(157) 1 year, 6 months ago

This morning the ASP.NET team shipped the ASP.NET MVC 3 RC (release candidate). You can download it here. read more...

add a comment |category: |Views: 6

tags: another

5 Reasons to be Excited about ASP.NET MVC 3(www.ironshay.com)

submitted by shayfriedmanshayfriedman(1411) 1 year, 7 months ago

It’s already been 6 months since ASP.NET MVC 2 was released and version 3 is already taking shape. I, personally, am thrilled about that because this version seems to put ASP.NET MVC, in terms of maturity and functionality, on the first line along with other MVC frameworks out there like RoR. I’ve put together 5 main reasons why I’m excited about this upcoming version. What about you? read more...

add a comment |category: |Views: 880

tags: another

ASP.NET and the Padding Oracle Attack: Wrap-up(securitythroughabsurdity.com)

submitted by j.montyj.monty(1868) 1 year, 8 months ago

Based on the news that was released at the time, it appeared that this vulnerability was just an issue AES. It turns out that this was false and that that this attack works against ANY BLOCK CIPHER meaning 3DES was also vulnerable. This wrap-up links to some mitigation techniques and also discusses how to protect against padding oracle attacks using Digital Signatures. read more...

3 comments |category: |Views: 338

tags: another

Vulnerability in .NET AES puts ASP.NET Web Sites at Risk(securitythroughabsurdity.com)

submitted by j.montyj.monty(1868) 1 year, 8 months ago

ASP.NET web applications that leverage Forms Authentication, ASP.NET Membership Providers, ASP.NET Role Providers, and/or ViewState encryption are vulnerable to data exposure and potentially tampering. This vulnerability can lead to the .NET MachineKey being discovered by attackers. This post briefly details the issue and provides a simple temporary mitigation technique. read more...

2 comments |category: |Views: 370

tags: another

ASP.NET MVC 3 Preview 1 - Razor View Engine(www.dotnetcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

The following article demonstrates how to use the new Razor view engine in ASP.NET MVC 3 Preview 1 release. read more...

1 comment |category: |Views: 334

tags: another

Different Ways of using the C# Null Coalescing Operator(www.devcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

Here are some different ways of using the Null-Coalescing operator in your code. read more...

add a comment |category: |Views: 477

tags: another

IRC.NET Released(blog.noldorin.com)

submitted by NoldorinNoldorin(829) 1 year, 9 months ago

IRC.NET is here. Yes, after months of (arduous) labour I have finally created a stable and usable release of my IRC client library for .NET 4.0. You may find the project hosted over at Launchpad, where you can currently download source, binaries, and documentation for all releases up to 0.3. read more...

add a comment |category: |Views: 214

tags: another

That No Sql Thing(ayende.com)

submitted by hgarciahgarcia(1534) 2 years, 1 month ago

Ayende introduction to a series of post on the different alternatives to RDBMS read more...

add a comment |category: |Views: 538

tags: another

Creating a common generic and extensible NHiberate Repository v2 (dotnetchris.wordpress.com)

submitted by dotnetchrisdotnetchris(157) 2 years, 2 months ago

An update to my previous post about creating a generic and extensible NHiberate Repository which supports Future queries and DetachedCriteria expressions. read more...

add a comment |category: |Views: 9

tags: another

Deleporter: Cross-Process Code Injection for ASP.NET(blog.stevensanderson.com)

submitted by desmonddesmond(2014) 2 years, 2 months ago

Deleporter is a little .NET library that teleports arbitrary delegates into an ASP.NET MVC/WebForms application in some other process (e.g., hosted in IIS) and runs them there. This is very useful for integration testing: it means you can do cross-process mocking, change the application configuration on the fly, or run custom teardown logic (such as flushing caches) at the end of each test. read more...

add a comment |category: |Views: 38

tags: another

ILMerge update(research.microsoft.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 3 months ago

ILMerge is a tool from Microsoft Research that can combine assemblies after compilation. Makes drag and drop deployment for programs with multiple DLLs more convenient. read more...

add a comment |category: |Views: 45

tags: another

JSON Performance in .NET with Binary Data (testing...)(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 2 years, 3 months ago

Binary data and text file formats (JSON, XML) don’t tend get along. To be included in JSON or XML binary data has to be encode into a text friendly format, generally base64, which creates overhead both in the time spent encoding/decoding binary, and the extra size of the text encoded data in the message. In our test we’ll compare serializing a message with binary data using common .NET serialization methods and compare the result. read more...

add a comment |category: |Views: 363

tags: another

Yahoo YUI Compressor vs. MS AJAX Minifier vs. Google Closure Compiler(www.coderjournal.com)

submitted by atifazizatifaziz(1000) 2 years, 4 months ago

A while back, YUI Compressor was king of the hill, and for the most part the only game in town that was really designed for production use. Since then a number of new competitors have been released by Google and Microsoft, and Nick Berardi checks out how they stacked up against the YUI Compressor. read more...

add a comment |category: |Views: 691

tags: another