photoz

Stories kicked by photoz

Working with WCF: Pt 2 – Your First Host and A Bit About Configuration(jamescbender.com)

submitted by JamesCBenderJamesCBender(749) 2 years, 2 months ago

So now you have a service, congratulations! What are you going to do with it. Some people like to say of WCF that you have “… a multitude of hosting options” but in reality you have two; host it in IIS or create your own host. read more...

add a comment |category: |Views: 209

tags: another

When "Activator" is just to slow(www.smelser.net)

submitted by JoeGeekyJoeGeeky(364) 2 years, 2 months ago

Nice performance tip read more...

2 comments |category: |Views: 600

tags: another

Working with WCF: Part One: Introduction and Your First Service(jamescbender.com)

submitted by JamesCBenderJamesCBender(749) 2 years, 2 months ago

I’ve been playing with WCF since .NET 3 came out. Sometimes I have to be reminded that not everybody is as familiar with all it’s “cob-webby corners” as I am. And that’s OK. Often (too often) I encounter someone who has NEVER used WCF and doesn’t even know where to begin.That’s not so OK. read more...

add a comment |category: |Views: 576

tags: another

60+ .Net libraries every developer should know about(blog.webdistortion.com)

submitted by squiggssquiggs(585) 2 years, 3 months ago

Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. read more...

2 comments |category: |Views: 2605

tags: another

Binding UI Events from View to commands in ViewModel in Silverlight 4(blog.roboblob.com)

submitted by spavkovspavkov(1708) 2 years, 4 months ago

In previous two posts we covered wiring up the Views and ViewModels and Blendability and showing ModalDialogs in MVVM way. Today we will touch another problem that people starting with MVVM very often fail to address properly: Handling the UI Events of the View in the ViewModel while avoiding placing any logic in code behind of the View. So our design goals for this post are: * We want to be able to wire-up UI Events to the commands in ViewModel via DataBinding in Xaml without any code behind in the View * View should not be aware of the ViewModel’s type or any other details of its existence – View should just use Silverlight’s DataBinding to access its ViewModel public properties (its DataContext) regardless of what is actually set to be there * We want to be able to handle any event that occurs in View (that includes not only Button clicks but also Mouse events, Drag and Drop events, Loaded events etc). read more...

add a comment |category: |Views: 281

tags: another

Keeping Your ASP.NET Session Alive Using jQuery(www.dotnetcurry.com)

submitted by malcolmsmalcolms(1156) 2 years, 4 months ago

The following article demonstrates how to keep your session alive when you're using ASP.NET MVC and jQuery. read more...

3 comments |category: |Views: 705

tags: another

How to host a WCF Service inside your Windows Service(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 5 months ago

Taking a look how to host your WCF service inside your Windows Service. In many situations hosting WCF inside of IIS may not be the best solution for you or your team. When this is the case hosting inside a windows service may be the best solution and in this episode we will take a look at how you can accomplish this. read more...

1 comment |category: |Views: 363

tags: another

Review of SubSonic 3 from a SubSonic 2.x user perspective(jamesewelch.com)

submitted by jamesewelchjamesewelch(2275) 2 years, 9 months ago

A quick review of SubSonic 3.0.0.3 from the perspective of a developer who's implemented SubSonic 2.x on numerous projects. An overview of initial likes and dislikes and a little bit of code snippets to bring back 2.x functions missing from 3.0. read more...

4 comments |category: |Views: 578

tags: another

.NET - IP Address Location In ASP.NET(dotnetcurry.com)

submitted by schalkvanwykschalkvanwyk(1335) 2 years, 11 months ago

Get client's ip address from a free online web query. read more...

1 comment |category: |Views: 361

tags: another

LINQ to SQL Data Context Provider(ericswann.org)

submitted by ericswannericswann(145) 3 years, 1 month ago

Provides an approach to lifetime management of LINQ to SQL Data Contexts with a strategy based pattern for caching the Data Context. The solution also allows the Data Context to be set up using a registration approach. Included code will work for web, winforms, or service projects. read more...

1 comment |category: |Views: 366

tags: another

10 C# Shorthands that improve productivity(dijksterhuis.org)

submitted by martijnmartijn(445) 3 years, 2 months ago

One of the best things about C# is that as the language and libraries expand thought is put into keeping things readable. Below I have listed 10 shorthands that you can use to make your code tighter and less wordy. No doubt you know one or more already — but do you currently use all ten of them ? read more...

add a comment |category: |Views: 1357

tags: another

ASP.NET - YSlow and ASP.NET: 100 points "A" grade is possible(karpach.com)

submitted by karpach96karpach96(265) 3 years, 2 months ago

Just in case if somebody doesn’t know what YSlow is? YSlow is Firefox add-on integrated with Firebug. It analyzes web pages and tells you why they are slow. You can run it on you project and see your grade. You can do some easy improvements and maybe even get D grade. However to get higher then D grade becomes a real challenge. Below I will describe how I got A grade (100 points) on my web blog application. read more...

3 comments |category: |Views: 636

tags: another

Creating SOLID Code: Single Responsibility Principle (SRP)(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 3 months ago

Taking a look at how to create SOLID Code: Single Responsibility Principle (SRP). This is a first in a series where we will take a look at each of the parts the SOLID Principle read more...

1 comment |category: |Views: 438

tags: another

A New Look for Visual Studio 2010!(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 3 months ago

At the PDC and TechEd EMEA last year we described our new editor support built on the WPF technology in .NET Framework 4.0. Today I’m happy to reveal the new UI for Visual Studio, also built on WPF: read more...

add a comment |category: |Views: 1214

tags: another

WPF XAML Data Binding Cheat Sheet(nbdtech.com)

submitted by CryogenicCryogenic(75) 3 years, 3 months ago

One of the best things about WPF is the advanced data binding support, the Binding class that is used to create data bindings has many interesting and useful options. And I never remember the more advanced options when I’m writing XAML. So I wrote a very detailed “cheat sheet” for the WPF Binding class ... read more...

add a comment |category: |Views: 500

tags: another

Install SQL Server (Express) with your Application(nablasoft.com)

submitted by GuardianGuardian(1104) 3 years, 3 months ago

A bootstrap to allow the deployment of SQL Server Express along with your Application read more...

add a comment |category: |Views: 356

tags: another