Skip to content

Instantly share code, notes, and snippets.

Created May 9, 2017 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f16d17a279b4ed92b054ed8c53c42363 to your computer and use it in GitHub Desktop.
Save anonymous/f16d17a279b4ed92b054ed8c53c42363 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<factory>
<map>
<add key="Audit" assembly="Python.Platform.Core.dll" class="Python.Core.Audit.Services.Audit">
<parameter name="configFilePath" class="string" value="Config\Audit\AuditConfiguration.xml" />
</add>
</map>
</factory>
and I want it to look like:
<?xml version="1.0" encoding="utf-8"?>
<factory>
<map>
<add key="Audit" assembly="OpenContent.Platform.Core.dll" class="OpenContent.Core.Audit.Services.AuditASMXProxy">
<parameter name="baseUrl" class="string" value="http://hostname/Website" />
<parameter name="servicePath" class="string" value="Audit/AuditASMX.asmx" />
<parameter name="timeout" class="int" value="120" />
<parameter name="policy" class="string" value="AuditServicePolicy"/>
</add>
</map>
</factory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment