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

Posted in Development | Tagged , , , , , | 2 Comments

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

Posted in Development | Tagged , , , , , , | 2 Comments

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 , , , , , , | 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

Posted in Development | Tagged , , , , , , | Leave a comment

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 , , , , , , | Leave a comment