Created
March 15, 2019 20:34
-
-
Save Ekus/ade9b1268df434e819f92490df35f162 to your computer and use it in GitHub Desktop.
web.config - allow testing .asmx from remote browsers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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