Skip to content

Instantly share code, notes, and snippets.

@Ekus
Created March 15, 2019 20:34
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 Ekus/ade9b1268df434e819f92490df35f162 to your computer and use it in GitHub Desktop.
Save Ekus/ade9b1268df434e819f92490df35f162 to your computer and use it in GitHub Desktop.
web.config - allow testing .asmx from remote browsers
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<webServices> <!-- allow testing .asmx from remote browsers -->
<protocols>
<add name="HttpGet" />
<add name="HttpPost" />
</protocols>
</webServices>
</system.web>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment