[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Re: Web Service is automatically generating a Form

Munsifali Rashid

8/12/2003 3:49:00 PM

Try adding the following inside the <system.web> area of web.config:

<webServices>
<protocols>
<add name="HttpSoap" />
<add name="HttpPost" />
<add name="HttpGet" />
<add name="Documentation" />
</protocols>
</webServices>

Mun



"Christian Knoblauch" <christian.knoblauch@icn.siemens.de> wrote in message
news:bhaqfb$2up$1@news.mch.sbs.de...
> Hello all,
>
> invoking a Web Service using a Browser from the "localhost", the Web
Service
> is automatically generating a Form that make it possible to invoke all Web
> Methods with arguments.
>
> Unfortunately this works only if the Browser is started from the Server
that
> host the Web Service. Otherwise the following message is given to the
user:
>
> "The test form is only available for requests from the local machine."
>
>
> QESTION NOW: Is there a configuration option, that make it possible to use
> this nice forms also over a Net ?
>
>
> Thanks in advance !
>
> By Christian