簡體   English   中英

asp.net c# 使 web 服務不被發布

[英]asp.net c# make the web service get not post

我已經建立了這個類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Script.Services;
using System.Web.Services;

namespace TestCanvas
{
    /// <summary>
    /// Summary description for WebService1
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
    [System.Web.Script.Services.ScriptService]
    public class WebService1 : System.Web.Services.WebService
    {

        [WebMethod]
        [ScriptMethod(UseHttpGet = true)]
        public string HelloWorld()
        {
            return "Hello World";
        }
    }
}

並且網絡服務 hello world 僅通過 post 而不是 get 工作。

告訴我為什么?

看看你的 webconfig 配置。 您需要添加 HttpGet 協議才能使用 GET。

<configuration>
    <system.web>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
            </protocols>
        </webServices>
    </system.web>
</configuration>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM