arnonrgo

Stories submitted by arnonrgo

Refactoring the GoF patterns(rgoarchitects.com)

submitted by arnonrgoarnonrgo(25) 4 years, 1 month ago

In other words Concrete patterns* (like GoF's) are tied to implementation which means that the implementation language is part of their "context". Thus when you come to apply a pattern in a different language you need to consider the language in use and make sure that 1. The pattern is needed 2. The solution in the pattern is the best one for the language. read more...

add a comment |category: |Views: 2

tags: another

Singleton in .NET(rgoarchitects.com)

submitted by arnonrgoarnonrgo(25) 4 years, 1 month ago

A proper way for implementing the singleton in .NET read more...

add a comment |category: |Views: 2

tags: another

RESTful WCF(rgoarchitects.com)

submitted by arnonrgoarnonrgo(25) 4 years, 2 months ago

If you are a .NET developer/architect and wanted you may know that to implement a RESTful application in Windows Communication Foundation (WCF) you really have to jump through hoops.For instance you have to go back to basics and use the HttpRequest and HttpResponse, handle the breakdown and parsing of URI hierarchies yourself not to mention fight with the bindings . Fortunetly this all changed with WCF 3.5. read more...

add a comment |category: |Views: 61

tags: another