远程服务器返回错误:(405)方法不允许。 WCF REST服务

时间:2012-04-13 02:48:06

标签: c# .net wcf rest

这个问题已在其他地方提出,但这些问题不是解决我问题的方法。

这是我的服务

[WebInvoke(UriTemplate = "", Method = "POST")]
public SampleItem Create(SampleItem instance)
{
    // TODO: Add the new instance of SampleItem to the collection
    // throw new NotImplementedException();
    return new SampleItem();
}

我有这段代码来调用上述服务

XElement data = new XElement("SampleItem",
                             new XElement("Id", "2"),
                             new XElement("StringValue", "sdddsdssd")
                           ); 

System.IO.MemoryStream dataSream1 = new MemoryStream();
data.Save(dataSream1);

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:2517/Service1/Create");
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
// You need to know length and it has to be set before you access request stream
request.ContentLength = dataSream1.Length;

using (Stream requestStream = request.GetRequestStream())
{
    dataSream1.CopyTo(requestStream);
    byte[] bytes = dataSream1.ToArray();
    requestStream.Write(bytes, 0, Convert.ToInt16(dataSream1.Length));
    requestStream.Close();
}

WebResponse response = request.GetResponse();

我在最后一行得到例外:

远程服务器返回错误:(405)Method Not Allowed。不知道为什么会发生这种情况我尝试将主机从VS Server更改为IIS,但结果没有变化。如果您需要更多信息,请告诉我

6 个答案:

答案 0 :(得分:7)

首先要知道REST服务的确切URL。既然您已经指定http://localhost:2517/Service1/Create,现在只是尝试从IE打开相同的URL,并且您应该不允许使用方法,因为为WebInvoke定义了Create方法,并且IE执行了WebGet。

现在确保您的客户端应用程序中的SampleItem在服务器上的同一命名空间中定义,或者确保您构建的xml字符串具有适当的命名空间,以便服务识别样本对象的xml字符串被反序列化回服务器上的对象。

我在我的服务器上定义了SampleItem,如下所示:

namespace SampleApp
{
    public class SampleItem
    {
        public int Id { get; set; }
        public string StringValue { get; set; }            
    }    
}

与我的SampleItem对应的xml字符串如下:

<SampleItem xmlns="http://schemas.datacontract.org/2004/07/SampleApp" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Id>6</Id><StringValue>from client testing</StringValue></SampleItem>

现在我使用以下方法对REST服务执行POST:

private string UseHttpWebApproach<T>(string serviceUrl, string resourceUrl, string method, T requestBody)
        {
            string responseMessage = null;
            var request = WebRequest.Create(string.Concat(serviceUrl, resourceUrl)) as HttpWebRequest;
            if (request != null)
            {
                request.ContentType = "application/xml";
                request.Method = method;
            }

            //var objContent = HttpContentExtensions.CreateDataContract(requestBody);
            if(method == "POST" && requestBody != null)
            {
                byte[] requestBodyBytes = ToByteArrayUsingDataContractSer(requestBody);
                request.ContentLength = requestBodyBytes.Length;
                using (Stream postStream = request.GetRequestStream())
                    postStream.Write(requestBodyBytes, 0, requestBodyBytes.Length);                    
            }

            if (request != null)
            {
                var response = request.GetResponse() as HttpWebResponse;
                if(response.StatusCode == HttpStatusCode.OK)
                {
                    Stream responseStream = response.GetResponseStream();
                    if (responseStream != null)
                    {
                        var reader = new StreamReader(responseStream);

                        responseMessage = reader.ReadToEnd();                        
                    }
                }
                else
                {
                    responseMessage = response.StatusDescription;
                }
            }
            return responseMessage;
        }

private static byte[] ToByteArrayUsingDataContractSer<T>(T requestBody)
        {
            byte[] bytes = null;
            var serializer1 = new DataContractSerializer(typeof(T));            
            var ms1 = new MemoryStream();            
            serializer1.WriteObject(ms1, requestBody);
            ms1.Position = 0;
            var reader = new StreamReader(ms1);
            bytes = ms1.ToArray();
            return bytes;
        }

现在我调用上面显示的方法:

SampleItem objSample = new SampleItem();
objSample.Id = 7;
objSample.StringValue = "from client testing";
string serviceBaseUrl = "http://localhost:2517/Service1";
string resourceUrl = "/Create";
string method="POST";

UseHttpWebApproach<SampleItem>(serviceBaseUrl, resourceUrl, method, objSample);

我也在客户端定义了SampleItem对象。如果要在客户端上构建xml字符串并传递,则可以使用以下方法:

private string UseHttpWebApproach(string serviceUrl, string resourceUrl, string method, string xmlRequestBody)
            {
                string responseMessage = null;
                var request = WebRequest.Create(string.Concat(serviceUrl, resourceUrl)) as HttpWebRequest;
                if (request != null)
                {
                    request.ContentType = "application/xml";
                    request.Method = method;
                }

                //var objContent = HttpContentExtensions.CreateDataContract(requestBody);
                if(method == "POST" && requestBody != null)
                {
                    byte[] requestBodyBytes = ASCIIEncoding.UTF8.GetBytes(xmlRequestBody.ToString());
                    request.ContentLength = requestBodyBytes.Length;
                    using (Stream postStream = request.GetRequestStream())
                        postStream.Write(requestBodyBytes, 0, requestBodyBytes.Length);                    
                }

                if (request != null)
                {
                    var response = request.GetResponse() as HttpWebResponse;
                    if(response.StatusCode == HttpStatusCode.OK)
                    {
                        Stream responseStream = response.GetResponseStream();
                        if (responseStream != null)
                        {
                            var reader = new StreamReader(responseStream);

                            responseMessage = reader.ReadToEnd();                        
                        }
                    }
                    else
                    {
                        responseMessage = response.StatusDescription;
                    }
                }
                return responseMessage;
            }

对上述方法的调用如下所示:

string sample = "<SampleItem xmlns=\"http://schemas.datacontract.org/2004/07/XmlRestService\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\"><Id>6</Id><StringValue>from client testing</StringValue></SampleItem>";   
string serviceBaseUrl = "http://localhost:2517/Service1";
string resourceUrl = "/Create";
string method="POST";             
UseHttpWebApproach<string>(serviceBaseUrl, resourceUrl, method, sample);

注意:只需确保您的网址正确

答案 1 :(得分:2)

您是第一次运行WCF应用程序吗?

运行以下命令注册wcf。

"%WINDIR%\Microsoft.Net\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe" -r

答案 2 :(得分:2)

花了两天时间,使用VS 2010 .NET 4.0,IIS 7.5 WCF和带JSON ResponseWrap的REST,我终于通过阅读“当进一步调查......”来解决它https://sites.google.com/site/wcfpandu/useful-links

Web服务客户端代码生成文件Reference.cs不会将GET方法归因于[WebGet()],因此尝试POST代替它们,因此 InvalidProtocol,405方法不允许。问题是,当您刷新服务引用时,此文件会重新生成,并且您还需要对{GG <1}}的dll引用,以获取WebGet属性。

所以我决定手动编辑Reference.cs文件,并保留一份副本。下次刷新它时,我会将System.ServiceModel.Web合并回来。

我看到它的方式,这是一个错误,svcutil.exe没有认识到某些服务方法是WebGet()s而不只是GET,即使WCF IIS Web的WSDL和HELP也是如此服务发布,确实了解哪些方法是POSTPOST ???我已使用Microsoft Connect记录此问题。

答案 3 :(得分:0)

当它发生在我身上时,我只是简单地添加了post这个词 到函数名称,它解决了我的问题。也许它会帮助你们中的一些人。

答案 4 :(得分:0)

在我遇到的情况下,还有另一个原因:底层代码试图进行WebDAV PUT。 (此特定应用程序可配置为在需要时启用此功能;启用了该功能,我不知道,但未设置必要的Web服务器环境。

希望这可以帮助别人。

答案 5 :(得分:0)

我已解决的问题,因为您的服务是通过使用用户名和密码的登录凭据来保护的,请尝试在请求中设置用户名和密码,它将可以正常使用。祝你好运!