Having problems with HttPost and HttpGet

  • Thread starter Daniel Bello Urizarri
  • Start date
D

Daniel Bello Urizarri

Hello:

On the new Asp.net 2.0 the <protocols> section does not work. But without
it, my application, which uses such protocols, does not work either

How can I enable those protocols on aspnet 2.0 iis 6.0?

<protocols>
<add name="HttpPost"/>
<add name="HttpGet"/>
<remove name="HttpSoap"/>
</protocols>
 
J

Juan T. Llibre

Are you trying to use them with a web service ?

http://msdn2.microsoft.com/en-us/library/ccbk8w5h

From : http://msdn2.microsoft.com/en-us/library/cs8x2624 :

The element "protocols" specifies the protocols that an ASP.NET
Web service can use to receive request data sent from a client and
return response data.

A protocol can be used to associate request data with a method
and its parameters and to associate response data with the method
and its return value.



Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top