[Mono-dev] web service interface
Gonzalo Paniagua Javier
gonzalo at novell.com
Thu Jul 13 18:29:18 EDT 2006
On Fri, 2006-07-07 at 01:29 -0700, cstokes wrote:
> Hi
>
> I've been tasked with removing the generated html interface and wsdl file
> from a web service that is running on Mono. I can do this in IIS but have
> been unable to do so in Mono.
>
> Any ideas?
You do it as you would do it under MS. This configuration file removes
the wsdl help page (you'll get a 500 error):
--------------
<configuration>
<system.web>
<webServices>
<protocols>
<remove name="Documentation"/>
</protocols>
</webServices>
</system.web>
</configuration>
-------------
-Gonzalo
More information about the Mono-devel-list
mailing list