Enable remote debugging for webservice

Source: Internet
Author: User
For a Web Service, you can enter a parameter during local debugging and return a dataset. when deployed to the server, the input parameter box is not displayed, as shown below:
The test form can only be used for requests from local computers.

 

The remote attachment is used in the. exe file, not for web projects. Therefore, you can add the following configuration in the web. config file:

In. by default, the WEBSERVICE remote debugging function has been disabled in. Sometimes, when you need to remotely debug the program, you need to enable this function. We only need to add the web in the WEBSERVICE project. <system. in the web> Configuration section, add a configuration section and the code is as follows:

 

<System. web>
<Compilation debug = "true"/>
<WebServices>
<Protocols>
<Add name = "HttpSoap"/>
<Add name = "HttpPost"/>
<Add name = "HttpGet"/>
<Add name = "Documentation"/>
</Protocols>
</WebServices>
</System. web>

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.