Skip to content

Instantly share code, notes, and snippets.

@gitfvb
Last active May 8, 2019 13:02
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 gitfvb/862220bcb0d7d28f68f53938a6d18ac3 to your computer and use it in GitHub Desktop.
Save gitfvb/862220bcb0d7d28f68f53938a6d18ac3 to your computer and use it in GitHub Desktop.
Change custom network settings for FastStats

Links

See Joplin for more info

How To

Replace

  <system.net>
    <settings>
      <servicePointManager expect100Continue="false" />
    </settings>
  </system.net>

with

  <system.net>
    <servicePointManager expect100Continue="false"/>
    <defaultProxy>
      <proxy proxyaddress="http://192.168.1.10:3128" bypassonlocal="true" />
    </defaultProxy>
  </system.net>

To Replace the whole XML then

UPDATE [FS_Config].[dbo].[DiscovererConfigTemplates] SET [Template] = '
<put in here the whole xml, starting and ending with the configuration tag, linebreaks are totally fine>
' WHERE [Client] = 'Discoverer'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment