?xml version= " 1.0 " ?configuration xmlns= " http://schemas.microsoft.com/.NetConfiguration/v2.0 " system.webcompilation defaultLanguage= " c# " debug= " true " /webServicesprotocolsadd name= " HttpGet " /add name= " HttpPost " //protocols
<?xml version="1.0"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <system.web> <compilation defaultLanguage="c#" debug="true"/> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> </system.web> </configuration>