An open API service providing repository metadata for many open source software ecosystems.

Topic: "wcf-bindings"

artema/DotAmf

.NET serializer and WCF bindings for AMF with full Flex compatibility. Just add AMF endpoints to your existing WCF services and you are ready to go.

Language: C# - Size: 2.59 MB - Last synced at: 6 days ago - Pushed at: over 9 years ago - Stars: 16 - Forks: 3

nevilparmar11/WCF-ChatApplication

Multi User WCF Chat Application

Language: C# - Size: 1.82 MB - Last synced at: 21 days ago - Pushed at: almost 4 years ago - Stars: 7 - Forks: 4

kathleenwest/WCFStockServiceSingletonWithClientChannelFactory

This 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.

Language: C# - Size: 1.02 MB - Last synced at: 1 day ago - Pushed at: about 6 years ago - Stars: 4 - Forks: 0

Daniel-Svensson/MessagePack.WCF

Fast MessagePack based formatter for WCF inspired by msgpack.wcf

Language: C# - Size: 11.7 KB - Last synced at: 22 days ago - Pushed at: 6 months ago - Stars: 1 - Forks: 0

geeksarray/handling-wcf-service-exceptions-using-fault-contracts

In this article we will see how we can use the WCF fault contracts to handle exceptions. This tutorial will help you to create WCF service step by step with fault contracts.

Language: C# - Size: 48.8 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

geeksarray/wcf-by-example-on-netnamedpipebinding

netNamedPipeBinding is the best binding for interprocess communication which crosses process boundaries on the same machine.

Language: C# - Size: 61.5 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

geeksarray/multiple-wcf-services-in-one-solution-with-multiple-endpoints-and-hosting

You might have tried one WCF service to learn about WCF or some small application. In real application with only one WCF service, it is difficult to handle applications in all aspects.

Size: 272 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

kathleenwest/WCFAuthenticationDemo

This project presents a Visual Studio solution including a simple demo WCF Authentication Service Application and a “Tester” Client (Windows Form Application) that allows the user to test the user registration, login, logout, and service operations. In addition to demonstrating standard authentication capabilities, the WCF service implements a custom username and password validator pattern. Passwords are stored securely using Password-Based Key Derivation Function PBKD cryptology of which the implementation is discussed. A custom error handler ensures that exceptions are properly wrapped into WCF Faults and communicated to the client caller. Certificates are discussed along with how to implement a server certificate on a client machine for development testing of “integrity” and application trust. The project includes a demo certificate and script for generating self-signed dev certificates, which must be installed into the client certificate store for the client tester application to trust and access the demo service. The client “tester” windows form application is not intended as a UX/UI demo but used to test and verify that the backend authentication service registration, login, logout, service operations, and callbacks are working as expected and sending proper WCF fault messages. Lastly, the project is shown in the demo section with a video and screen captures.

Language: C# - Size: 47.4 MB - Last synced at: about 1 month ago - Pushed at: about 5 years ago - Stars: 1 - Forks: 1

johnthiriet/SilverlightFrance-LightCommunicator

Demo project used at the first and only presentation of the Silverlight France developer group

Language: C# - Size: 2.75 MB - Last synced at: about 2 months ago - Pushed at: about 6 years ago - Stars: 1 - Forks: 0

adessoTurkey-dotNET/aop-solutions-wcf-bindings-benchmark

Language: C# - Size: 29.3 KB - Last synced at: 23 days ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

dotnet-demos/wcf-netnamedpipe-container

Shows how an external facing WCF service hosted inside container can call other service via netnamedpipe binding

Language: C# - Size: 42 KB - Last synced at: about 2 years ago - Pushed at: about 3 years ago - Stars: 0 - Forks: 0

geeksarray/how-per-call-service-instance-works-in-wcf

This article helps you to understand how per call WCF service works and how its instances get created. This article will also go through a tutorial for implementing and executing Per Call WCF Service.

Language: C# - Size: 37.1 KB - Last synced at: about 2 years ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

geeksarray/shared-service-contract-and-data-contract-in-wcf

This article describes how to create WCF ServiceContract and DataContract that can be shared to multiple assemblies or WCF services and clients.

Language: C# - Size: 24.4 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

geeksarray/hosting-wcf-service-with-nettcpbinding-or-netnamedpipebinding-in-iis

This article describes your necessary actions to host your WCF services with netTcpBinding or netNamedPipeBindings in IIS. IIS supports HTTP or HTTPS protocols by default however to use netTcpBindings or netNamedPipeBinding you need to manage some settings in IIS.

Language: C# - Size: 59.6 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

kathleenwest/MySerializationDemoWCFAppSharedLib

This project presents a simple, but fun “Adopt a Dog” Service Application. The service provides a factory creational design pattern to create and return a single Dog object (complete with a cute photo). It is hosted using IIS Express to quickly demo and test the service with a client. The service interface is defined not in the service application but in a Shared Library. The Shared Library also defines the Dog class object with custom serialization using the ISerializable interface implemented on the Dog class. This project is intended to demo custom serialization and a shared library concept between both the service and the client. With the Shared Library concept of both the service interface definition and the Dog class, there is no need to use SVCUTIL or the Service Wizard to create a tightly coupled service reference. Instead, the client uses a simple ChannelFactory concept to build a channel to the service knowing the interface details in the Shared Library. Also, it can understand and work with the Dog objects as specified in the Shared Library. A client “tester” windows form application tests the service and provides output to the user in a simple GUI. In addition, a short discussion and code demo of debugging service errors and activity using diagnostics and a trace listener pattern is included in this article. Some of my lessons learned in debugging service errors and custom serialization may help you on your next project.

Language: C# - Size: 2.32 MB - Last synced at: about 1 month ago - Pushed at: over 5 years ago - Stars: 0 - Forks: 0

ozanerturk/DistributorPatternForWcf

Distributor pattern for wcf netmsmq binding

Language: C# - Size: 4.88 KB - Last synced at: about 2 years ago - Pushed at: over 5 years ago - Stars: 0 - Forks: 0

kathleenwest/SimpleGreetingWCFServiceLibrary-Host-ClientDemo

WCF Simple Greeting Service Library & Service Host Console Application Supporting Http and TCP Protocols & Client “Tester" Console Application

Language: C# - Size: 390 KB - Last synced at: about 1 month ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

kathleenwest/WCFMathServiceLibraryMultiThreadedCapableWithConsoleServiceHost-ClientTester

WCF Math Service Library with Multi-Threaded Capabilities & Console Service Host and a Client “Tester” ChannelFactory Implementation

Language: C# - Size: 569 KB - Last synced at: about 1 month ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 1

amat27/azure-storage-binding

A WCF binding enables communication via Azure Storage

Language: C# - Size: 40 KB - Last synced at: over 1 year ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

Vladimir-Novick/NETCORE-WCF-Client

Net Core WCF Client Configuration

Language: C# - Size: 16.6 KB - Last synced at: almost 2 years ago - Pushed at: over 6 years ago - Stars: 0 - Forks: 0