An open API service indexing awesome lists of open source software.

https://github.com/aimenux/wcfendpointbehaviordemo

Using custom endpoint behaviors with wcf clients
https://github.com/aimenux/wcfendpointbehaviordemo

http-client net60 polly soap wcf wcf-core

Last synced: 11 months ago
JSON representation

Using custom endpoint behaviors with wcf clients

Awesome Lists containing this project

README

          

# WcfEndpointBehaviorDemo
```
Using custom endpoint behaviors with wcf clients
```

In this repo, i m using two projects :
- `Api` : a soap web service based on [WcfCore](https://github.com/CoreWCF/CoreWCF) library
- `App` : a console app to consume the soap web service

The `Api` soap web service expose two urls :
- http://localhost:5000/SoapService/http
- https://localhost:5001/SoapService/https

The `App` console app use two [custom endpoint behaviour](https://justsimplycode.com/2018/09/08/logging-all-outgoing-soap-requests/) :
- `SoapLoggingBehaviour` : log soap requests/responses
- `SoapHttpClientBehavior` : use httpclient for soap requests/responses

**`Tools`** : net 6.0, wcf-core, polly