HTTP Error 500.19 - Internal Server Error(HttpProtocol)

321 views Asked by At

I Programmed A WCF Service But I Have Some Error About HttpProtocol Please Help me

Error That Captured From Page

1

There are 1 answers

0
Lex Li On BEST ANSWER

Clearly you forgot <system.webServer> parent tag,

https://www.iis.net/configreference/system.webserver/httpprotocol

Like,

<configuration>
   <system.webServer>
      <httpProtocol allowKeepAlive="true" />
   </system.webServer>
</configuration>