12 skills found
jweber / WcfClientProxyGeneratorUtility to generate fault tolerant and highly configurable client proxies for WCF services based on WCF ServiceContracts. Supports making async calls using non async-ready ServiceContracts.
jolmari / Netcore Wcf Service ProxyExample of consuming multiple WCF services using a proxy implementation in a ASP.NET Core Web-application.
sebmartin / FlatWSDLA small python script that will fetch a WSDL from a URL and flatten it by importing all referenced parts (external files) into a single WSDL file. This is especially useful for working with WCF based services which are notorious for splitting a WSDL definition into several nested files. This script will allow your WSDL to be used with proxy generators that cannot resolve or can't access the URLs that are in your original WSDL file.
mfloryan / Betamax.NetA simple record/playback proxy for Interfaces (like WCF services)
lishilei0523 / WCF .NET CoreA library make .NET Core programs be able to call WCF server without proxy classes.
QuickOrBeDead / Dynamic Wcf Client ProxyDynamic Wcf Client Proxy
azzlack / WCFServiceProxyService proxy for interacting with WCF services.
channeladam / ChannelAdam.WcfDEPRECATED - A .NET library that makes it easy to use WCF clients/channels and prevent memory and connection leaks by automatically correctly performing the close/abort pattern.
alphaleonis / WcfClientProxyGeneratorNo description available
qinyuanpei / Dynamic.WebApiThe attempt of Dynamic Proxy for WCF, Dynamic Service for Web Api
gaui / WCF Proxy GeneratorGenerates WCF proxy classes from endpoints in Web.config
kathleenwest / WCFStockServiceSingletonWithClientChannelFactoryThis project presents a WCF Stock Service Library (StockServiceLib) that mimics a stock exchange. The service is implemented as a “singleton” and maintains persistent data between client calls and can handle multiple client sessions. The service is hosted via a console application (StockServiceHost). The client and service participate in a bi-directional/callback relationship. The client (StockClient) uses the ChannelFactory pattern as opposed to “Add Service Reference” with SVCUTIL. The client and service share a common assembly (SharedLib) that contains the key contract and data model information. Furthermore, a Utilities project is used by the client console application to facilitate user data entry and the complicated details of building and managing the WCF ChannelFactory connection implementation. The ProxyGen class inside the Utilities project abstracts the details of implementing and managing a generic ChannelFactory connection to a generic service for a client. Note: The Utilities project library was included as base code for my lab project to facilitate speedy completion; we were not expected to code this Utilities project ourselves due to complexity and time constraints. The remaining projects in the solution (SharedLib, StockClient, StockServiceHost, and StockServiceLib), I completed individually per requirements for the lab project.