Building a Basic WCF Book Information Service with Console Host and WinForms Client
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.ServiceModel" />
&l ...
Posted on Thu, 11 Jun 2026 17:30:52 +0000 by abie
Complex Parameter Serialization with Python's Suds Library for WCF Services
WCF Service Implementation
When interfacing with WCF services from Python using the Suds library, proper parameter serialization is essential for successful communication. The service contract defines various operations with different parameter types, including custom data contracts and collections.
Service Contract Definition
using System;
usi ...
Posted on Sun, 17 May 2026 20:05:34 +0000 by Malcerous