Archive for the 'C++' Category

Unmanaged C++ client for WCF service.

No translations available for this entry

Recently I have been evaluating different options and solutions for creating distributed network applications. Of course, this definition is too broad and there might be hundreds of answers and they all would be useful in different circumstances but I paid special attention to WCF.

As Microsoft released a Visual Studio 2008, I can hardly see any reasons why someone who is up to developing a distributed network application might choose anything different. New Studio even has a project template for WCF services, what makes network servers and clients development as easy as can be… But, of course, that would only work if no other platform except Windows is considered. Which is not uncommon.

So, what options are there if we need to build a client for existing WCF service that would work where .NET framework is not installed (because it is not available for that platform)? There is one way offered by Microsoft (using sproxy.exe) and some could use it. Other way involves writing “moniker” in .NET and then use it via COM. They both would work on windows platform only, moreover, I couldn’t make sproxy.exe to work with WCF service at all, so I had to look for the third option, which was gSOAP. And this worked.
Continue reading ‘Unmanaged C++ client for WCF service.’

About design patterns

This entry is also available in: Русский

Well.. it seems to me that they will soon ask about anti-patterns than proper patterns at job interviews. At least there are some books available.  Can’t even imagine what comes after that.. :)

Hit the wall

This entry is also available in: Русский

Need to find as much information about pattern recognition as possible.

Does anybody know good books or sites? “Bayesian theory” and “fuzzy logic” sound good, but question is how to apply theory in practice?