About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (174)
- Uncategorized (168)
Most used tags
Tag Archives: .NET
BasicHttpBinding blocking under Mono
Hosting services in Mono using the BasicHttpBinding will block incomming requests until the previous request is handled. In dotNET this is not the case. Another difference between dotNET and Mono. I’ll demonstrate this by using a self calling service. See … Continue reading
Mono.Data.Sqlite and filelocks
While porting my projects to Mono I noticed some file locking on databases. There were no problems with the dotNET code. Seems like a difference in behavior between the two frameworks. A simple query to a Sqlite database would look … Continue reading
Target Mono from Visual Studio
Targetting Mono in Visual Studio is possible. This way your assemblies are build using the Mono framework (which should be .NET compatible). Change the target to the Mono profile to get immediate feedback of incompatible references and other Mono things. … Continue reading
Posted in Development
Tagged .NET, framework, Hack, mono, profile, target, Visual Studio 2010
20 Comments
WSDL in Mono
Mono can host WCF services and expose the WSDL. To get around the XmlSchema error: Named item http://your/contract/here was already contained in the schema object table you need to set MONO_STRICT_MS_COMPLIANT to ‘yes’. Here is how I managed to do … Continue reading
VS2010 Dependency Graph gotchas
We need to refactor a solution with 200+ projects in Visual Studio 2010. The solution must be split into a runtime and a design solution. As we have the Ultimate edition, the Architecture features will be used. With the Dependency … Continue reading
Posted in Development
Tagged .NET, architecture, const, dependency graph, Design, generics, Visual Studio 2010
Leave a comment