Audit.WCF 27.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Audit.WCF --version 27.0.0                
NuGet\Install-Package Audit.WCF -Version 27.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Audit.WCF" Version="27.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audit.WCF --version 27.0.0                
#r "nuget: Audit.WCF, 27.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Audit.WCF as a Cake Addin
#addin nuget:?package=Audit.WCF&version=27.0.0

// Install Audit.WCF as a Cake Tool
#tool nuget:?package=Audit.WCF&version=27.0.0                

Audit.WCF

WCF Audit Extension for Audit.NET library.

Generate Audit Logs for Windows Communication Foundation (WCF) service calls.

Audit.Wcf provides the server-side infrastructure to log interactions with WCF services. It records detailed information of the service method calls.

If you are looking for client-side audit, please check the Audit.WCF.Client library.

Install

NuGet Package

To install the package run the following command on the Package Manager Console:

PM> Install-Package Audit.Wcf

NuGet Status NuGet Count

Usage

Decorate your WCF service class or methods with the Audit.WCF.AuditBehavior attribute.

For example:

[AuditBehavior(EventType = "{contract}.{operation}")]
public class OrderService : IOrderService
{
  public async Task<GetOrderResponse> GetOrder(GetOrderRequest request)
  {
    ...
  }
}

You can also decorate the specific methods you want to audit, for example:

public class OrderService : IOrderService
{
  [AuditBehavior]
  public async Task<GetOrderResponse> GetOrder(GetOrderRequest request)
  {
    ...
  }
}

If you can't (or do not want) to change the service code, you can also enable the audit mechanism by adding the AuditBehavior extension to your service host configuration file.

For example:

<configuration>
  <system.serviceModel>
    ...
    <extensions>
      <behaviorExtensions>
	      <add name="auditBehavior" type="Audit.WCF.AuditBehavior, Audit.WCF" />
      </behaviorExtensions>
    </extensions>

    <behaviors>
      <serviceBehaviors>
	      <behavior>
	        <auditBehavior eventType="{contract}.{operation}" />
	      </behavior>
      </serviceBehaviors>
    </behaviors>
    ...
  </system.serviceModel>
</configuration>

Configuration

The AuditBehavior attribute or extension can be configured with the following properties:

  • EventTypeName: A string that identifies the event type. Can contain the following placeholders:
    • {contract}: Replaced with the contract name (service interface name)
    • {operation}: Replaces with the operation name (service method name)

To globally configure the output persistence mechanism, use the Audit.Core.Configuration class. For more details please see Event Output Configuration.

For example:

Audit.Core.Configuration.Setup()
	.UseFileLogProvider(config => config.Directory(@"C:\Logs"));

This should be done prior to the AuditScope creation, i.e. during application startup.

If you want to configure an Audit Data Provider per service instance, you can add a public instance property named AuditDataProvider to your service class and make it return the provider you want, for example:

[AuditBehavior]
public class OrderService : IOrderService
{
    public AuditDataProvider AuditDataProvider
    {
        get
        {
            return new Audit.Core.Providers.FileDataProvider()
            {
                DirectoryPath = @"C:\Logs"
            };
        }
    }
}

The library will automatically detect the property and use the given data provider for that service instance.

Output

Audit.Wcf output includes:

  • Execution time and duration
  • Environment information such as user, machine, domain and locale.
  • Authenticated username (identity name)
  • Client IP address
  • Contract and Operation details
  • Method parameters (in and out)
  • Response object
  • Faults and Exceptions details
  • Comments and Custom Fields provided

With this information, you can not just know who did the operation, but also measure performance, observe exceptions thrown or get statistics about usage of your WCF service.

Output details

The following table describes the Audit.Wcf output fields:

Describes an audited WCF event

Field Name Type Description
ContractName string Name of the contract (service interface)
OperationName string Name of the operation (service method)
InstanceQualifiedName string Assembly qualified type name of the service instance
IsAsync boolean Indicates if the operation is asynchronous
MethodSignature string Signature of the audited method
Action string Action absolute address
ReplyAction string Reply action absolute address
IdentityName string Name of the current identity (username)
ClientAddress string Client address (IP)
HostAddress string Serice host address
Success boolean Indicates if the operation completed succesfully
Fault AuditWcfEventFault Fault details when the operation fails
Result Object The result object value
InputParameters Array of AuditWcfEventElement Input parameters object values
OutputParameters Array of AuditWcfEventElement Output parameters object values

Describes a WCF fault/exception

Field Name Type Description
FaultType string Fault type (Exception / Fault)
Exception string Exception details
FaultCode string The fault code
FaultAction string The fault action name
FaultReason string The fault reason
FaultDetails AuditWcfEventElement The detail object related to the fault

Describes an element/object related to the WCF audit event.

Field Name Type Description
Type string The object type name
Value Object The object value

Customization

You can access the AuditScope object for customization from the audited methods, by the static property Audit.WCF.AuditBehavior.CurrentAuditScope.

For example:

using Audit.WCF;

[AuditBehavior]
public class OrderService : IOrderService
{
    public GetOrderResponse GetOrder(GetOrderRequest request)
    {
        AuditBehavior.CurrentAuditScope.Comment("some comment");
        AuditBehavior.CurrentAuditScope.SetCustomField("User", MySession.CurrentUser);
        ...
    }
}

See Audit.NET documentation about Custom Field and Comments for more information.

Output Sample

{
	"EventType": "IOrderService.GetOrder",
	"Environment": {
		"UserName": "Federico",
		"MachineName": "HP",
		"DomainName": "HP",
		"CallingMethodName": "WCF_IIS.IOrderService.GetData()",
		"AssemblyName": "WCF_IIS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
		"Exception": null,
		"Culture": "en-GB"
	},
	"StartDate": "2016-09-13T01:31:58.6843094-05:00",
	"EndDate": "2016-09-13T01:31:58.6858324-05:00",
	"Duration": 2,
	"WcfEvent": {
		"ContractName": "IOrderService",
		"OperationName": "GetOrder",
		"InstanceQualifiedName": "WCF_IIS.OrderService, WCF_IIS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
		"MethodSignature": "WCF_IIS.GetOrderResponse GetOrder(WCF_IIS.GetOrderRequest)",
		"Action": "http://tempuri.org/IOrderService/GetOrder",
		"ReplyAction": "http://tempuri.org/IOrderService/GetOrderResponse",
		"ClientAddress": "::1",
		"HostAddress": "http://localhost:8733/Design_Time_Addresses/WCF_IIS/OrderService/",
		"InputParameters": [{
			"Type": "GetOrderRequest",
			"Value": {
				"OrderId": 123
			}
		}],
		"Success": true,
		"Result": {
			"Type": "GetOrderResponse",
			"Value": {
				"Success": true,
				"Errors": null,
				"Order": {
					"OrderId": 123,
					"CustomerName": "customer",
					"Total": 10.0
				}
			}
		},
		"OutputParameters": []
	}
}
Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
27.1.1 77 10/28/2024
27.1.0 93 10/24/2024
27.0.3 99 9/25/2024
27.0.2 102 9/19/2024
27.0.1 107 9/4/2024
27.0.0 103 9/3/2024
26.0.1 134 8/22/2024
26.0.0 106 7/19/2024
25.0.7 135 7/4/2024
25.0.6 102 6/24/2024
25.0.5 107 6/18/2024
25.0.4 178 3/24/2024
25.0.3 204 3/13/2024
25.0.2 179 3/12/2024
25.0.1 207 2/28/2024
25.0.0 231 2/16/2024
24.0.1 277 2/12/2024
24.0.0 248 2/12/2024
23.0.0 520 12/14/2023
22.1.0 451 12/9/2023
22.0.2 460 12/1/2023
22.0.1 478 11/16/2023
22.0.0 469 11/14/2023
21.1.0 533 10/9/2023
21.0.4 563 9/15/2023
21.0.3 738 7/9/2023
21.0.2 678 7/6/2023
21.0.1 751 5/27/2023
21.0.0 780 4/15/2023
20.2.4 851 3/27/2023
20.2.3 788 3/17/2023
20.2.2 833 3/14/2023
20.2.1 812 3/11/2023
20.2.0 826 3/7/2023
20.1.6 840 2/23/2023
20.1.5 864 2/9/2023
20.1.4 864 1/28/2023
20.1.3 898 12/21/2022
20.1.2 946 12/14/2022
20.1.1 941 12/12/2022
20.1.0 921 12/4/2022
20.0.4 998 11/30/2022
20.0.3 1,051 10/28/2022
20.0.2 1,014 10/26/2022
20.0.1 1,050 10/21/2022
20.0.0 1,084 10/1/2022
19.4.1 1,118 9/10/2022
19.4.0 1,098 9/2/2022
19.3.0 1,071 8/23/2022
19.2.2 1,049 8/11/2022
19.2.1 1,111 8/6/2022
19.2.0 1,088 7/24/2022
19.1.4 1,331 5/23/2022
19.1.3 1,120 5/22/2022
19.1.2 1,198 5/18/2022
19.1.1 1,195 4/28/2022
19.1.0 1,127 4/10/2022
19.0.7 1,411 3/13/2022
19.0.6 1,183 3/7/2022
19.0.5 1,239 1/28/2022
19.0.4 1,192 1/23/2022
19.0.3 1,073 12/14/2021
19.0.2 1,062 12/11/2021
19.0.1 1,414 11/20/2021
19.0.0 1,114 11/11/2021
19.0.0-rc.net60.2 166 9/26/2021
19.0.0-rc.net60.1 216 9/16/2021
18.1.6 1,171 9/26/2021
18.1.5 2,327 9/7/2021
18.1.4 1,108 9/6/2021
18.1.3 1,118 8/19/2021
18.1.2 1,175 8/8/2021
18.1.1 1,180 8/5/2021
18.1.0 1,254 8/1/2021
18.0.1 1,183 7/30/2021
18.0.0 1,179 7/26/2021
17.0.8 1,165 7/7/2021
17.0.7 1,156 6/16/2021
17.0.6 1,119 6/5/2021
17.0.5 1,164 5/28/2021
17.0.4 1,225 5/4/2021
17.0.3 1,210 5/1/2021
17.0.2 1,146 4/22/2021
17.0.1 1,142 4/18/2021
17.0.0 1,163 3/26/2021
16.5.6 1,148 3/25/2021
16.5.5 1,121 3/23/2021
16.5.4 1,160 3/9/2021
16.5.3 1,186 2/26/2021
16.5.2 1,167 2/23/2021
16.5.1 1,156 2/21/2021
16.5.0 1,157 2/17/2021
16.4.5 1,180 2/15/2021
16.4.4 1,160 2/5/2021
16.4.3 1,113 1/27/2021
16.4.2 1,169 1/22/2021
16.4.1 1,151 1/21/2021
16.4.0 1,168 1/11/2021
16.3.3 1,177 1/8/2021
16.3.2 1,190 1/3/2021
16.3.1 1,232 12/31/2020
16.3.0 1,156 12/30/2020
16.2.1 1,207 12/27/2020
16.2.0 1,462 10/13/2020
16.1.5 1,305 10/4/2020
16.1.4 1,287 9/17/2020
16.1.3 1,321 9/13/2020
16.1.2 1,207 9/9/2020
16.1.1 1,237 9/3/2020
16.1.0 1,240 8/19/2020
16.0.3 1,270 8/15/2020
16.0.2 1,224 8/9/2020
16.0.1 1,333 8/8/2020
16.0.0 1,233 8/7/2020
15.3.0 2,138 7/23/2020
15.2.3 1,333 7/14/2020
15.2.2 1,323 5/19/2020
15.2.1 1,277 5/12/2020
15.2.0 1,307 5/9/2020
15.1.1 1,370 5/4/2020
15.1.0 1,396 4/13/2020
15.0.5 1,277 3/18/2020
15.0.4 1,305 2/28/2020
15.0.3 1,299 2/26/2020
15.0.2 1,389 1/20/2020
15.0.1 1,334 1/10/2020
15.0.0 1,362 12/17/2019
14.9.1 1,350 11/30/2019
14.9.0 1,283 11/29/2019
14.8.1 1,315 11/26/2019
14.8.0 1,322 11/20/2019
14.7.0 2,105 10/9/2019
14.6.6 1,267 10/8/2019
14.6.5 1,293 9/27/2019
14.6.4 1,365 9/21/2019
14.6.3 1,735 8/12/2019
14.6.2 1,384 8/3/2019
14.6.1 1,415 8/3/2019
14.6.0 1,390 7/26/2019
14.5.7 1,410 7/18/2019
14.5.6 1,356 7/10/2019
14.5.5 1,373 7/1/2019
14.5.4 1,436 6/17/2019
14.5.3 1,417 6/5/2019
14.5.2 1,389 5/30/2019
14.5.1 1,383 5/28/2019
14.5.0 1,513 5/24/2019
14.4.0 1,459 5/22/2019
14.3.4 1,401 5/14/2019
14.3.3 1,339 5/9/2019
14.3.2 1,564 4/30/2019
14.3.1 1,394 4/27/2019
14.3.0 1,451 4/24/2019
14.2.3 1,465 4/17/2019
14.2.2 1,415 4/10/2019
14.2.1 1,421 4/5/2019
14.2.0 1,452 3/16/2019
14.1.1 1,471 3/8/2019
14.1.0 1,569 2/11/2019
14.0.4 1,573 1/31/2019
14.0.3 1,508 1/22/2019
14.0.2 1,666 12/15/2018
14.0.1 1,573 11/29/2018
14.0.0 1,558 11/19/2018
13.3.0 1,630 11/16/2018
13.2.2 1,582 11/15/2018
13.2.1 1,500 11/13/2018
13.2.0 1,557 10/31/2018
13.1.5 1,506 10/31/2018
13.1.4 1,546 10/25/2018
13.1.3 1,582 10/18/2018
13.1.2 1,719 9/12/2018
13.1.1 1,625 9/11/2018
13.1.0 1,639 9/11/2018
13.0.0 1,629 8/29/2018
12.3.6 1,576 8/29/2018
12.3.5 1,637 8/22/2018
12.3.4 1,682 8/21/2018
12.3.3 26,395 8/21/2018
12.3.2 1,639 8/20/2018
12.3.1 1,673 8/20/2018
12.3.0 1,643 8/20/2018
12.2.2 1,683 8/15/2018
12.2.1 1,735 8/9/2018
12.2.0 1,660 8/8/2018
12.1.11 1,641 7/30/2018
12.1.10 1,714 7/20/2018
12.1.9 1,838 7/10/2018
12.1.8 2,844 7/2/2018
12.1.7 1,826 6/7/2018
12.1.6 1,749 6/4/2018
12.1.5 1,795 6/2/2018
12.1.4 1,748 5/25/2018
12.1.3 2,142 5/16/2018
12.1.2 1,772 5/15/2018
12.1.1 1,902 5/14/2018
12.1.0 1,838 5/9/2018
12.0.7 1,882 5/5/2018
12.0.6 1,736 5/4/2018
12.0.5 1,833 5/3/2018
12.0.4 1,895 4/30/2018
12.0.3 1,873 4/30/2018
12.0.2 1,875 4/27/2018
12.0.1 1,856 4/25/2018
12.0.0 1,747 4/22/2018
11.2.0 1,929 4/11/2018
11.1.0 1,774 4/8/2018
11.0.8 1,848 3/26/2018
11.0.7 1,724 3/20/2018
11.0.6 1,870 3/7/2018
11.0.5 2,023 2/22/2018
11.0.4 1,859 2/14/2018
11.0.3 1,837 2/12/2018
11.0.2 1,845 2/9/2018
11.0.1 1,783 1/29/2018
11.0.0 1,826 1/15/2018
10.0.3 1,834 12/29/2017
10.0.2 1,718 12/26/2017
10.0.1 1,852 12/18/2017
10.0.0 1,757 12/18/2017
9.3.0 1,829 12/17/2017
9.2.0 1,818 12/17/2017
9.1.3 1,844 12/5/2017
9.1.2 1,726 11/27/2017
9.1.1 1,805 11/21/2017
9.1.0 1,718 11/21/2017
9.0.1 1,696 11/11/2017
9.0.0 1,704 11/10/2017
8.7.0 1,733 11/9/2017
8.6.0 1,685 11/9/2017
8.5.0 1,717 10/3/2017
8.4.0 1,764 10/3/2017
8.3.1 2,027 9/8/2017
8.3.0 1,762 9/8/2017
8.2.0 1,744 9/4/2017
8.1.0 1,810 8/22/2017
8.0.0 1,849 8/19/2017
7.1.3 1,734 8/14/2017
7.1.2 1,740 8/2/2017
7.1.1 1,683 7/26/2017
7.1.0 1,742 7/5/2017
7.0.9 1,702 6/28/2017
7.0.8 1,820 6/19/2017
7.0.6 1,770 4/7/2017
7.0.5 1,701 3/21/2017
7.0.4 1,735 3/21/2017
7.0.3 1,723 3/20/2017
7.0.2 1,725 3/13/2017
7.0.0 1,797 3/1/2017
6.2.0 1,801 2/25/2017
6.1.0 1,816 2/14/2017
6.0.0 1,854 2/9/2017
5.3.0 1,760 2/5/2017
5.2.0 1,694 1/26/2017
5.1.0 1,730 1/19/2017
5.0.0 1,738 1/7/2017
4.11.0 1,799 1/5/2017
4.10.0 1,797 12/31/2016
4.9.0 1,720 12/26/2016
4.8.0 3,455 12/17/2016
4.7.0 1,829 12/8/2016
4.6.5 1,754 12/4/2016
4.6.4 1,743 11/25/2016
4.6.2 3,426 11/18/2016
4.6.1 1,805 11/15/2016
4.6.0 1,738 11/11/2016
4.5.9 3,669 11/2/2016
4.5.8 1,892 11/2/2016
4.5.7 3,569 10/26/2016
4.5.6 1,794 10/6/2016
4.5.5 1,784 10/3/2016
4.5.4 1,737 10/2/2016
4.5.3 1,766 9/30/2016
4.5.2 3,519 9/28/2016
4.5.1 3,462 9/28/2016
4.5.0 3,401 9/28/2016
4.4.0 3,546 9/23/2016
4.3.0 1,881 9/22/2016
4.2.0 2,029 9/19/2016
4.1.1 1,801 9/13/2016
4.1.0 1,783 9/13/2016