Create DLL from WSDL in C#

Posted on

How to generate a DLL file from a WSDL in C# As this was hard to get out I type this down if any other search for this. I first of started to question how to turn a WSDL to a DLL, but then found out this must be done in 2 steps. Generate file.cs […]

C# Grid Computing, ongoing

Posted on

Started to work in Grid Computing, to share heavy threads along the computers at home. I know there are other projects like NGrid, but what I find they lack of is autodiscovering of computers on the net that act likes workers, that comes and goes. No need of having to setup the computers is a […]

AutoUpgrade 0.5.1 released [C#]

Posted on

Version: 0.5.1 License: CC Requirements: Win (With mono possible for Linux aswell) Limitations: CC License (Free of use/change for personal use) Code: Csharp AutoUpgrade With this project, that is mearged with the main application that should be released, it will be possible to check if new upgrades are available. Upgrades will be download on a […]

C# Application that checks for new versions

Posted on

Normally when I create some application and know that users will use it a lot, there is a underlying need of making sure the end user is using the latest version. To show one way of making this possible is using xml files at the server side, describing the changes and where to fetch new […]

C# Event Factory for other projects to listening on

Posted on

Unlike Java it is possible to signal events between processes by listening on Events. This events are not forced to be in the same project or in the same class. Here I want to demonstrate that the way of sending events could be in a own undependable project, where other projects only adds as references […]