8

这个问题已经在其他地方问过,但这些东西不是我的问题的解决方案。

这是我的服务

[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 服务器更改为 IIS,但结果没有变化。如果您需要更多信息,请告诉我

4

6 回答 6

9

首先是了解 REST 服务的确切 URL。由于您http://localhost:2517/Service1/Create现在已指定,只需尝试从 IE 打开相同的 URL,您应该得到不允许的方法,因为您的Create方法是为 WebInvoke 定义的,而 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);

注意:只需确保您的 URL 正确

于 2012-04-13T10:01:13.397 回答
4

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

运行下面的命令来注册 wcf。

"%WINDIR%\Microsoft.Net\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe" -r
于 2012-04-13T04:06:32.767 回答
2

在花了 2 天时间之后,使用 VS 2010 .NET 4.0、IIS 7.5 WCF 和 REST 和 JSON ResponseWrapped,我终于通过阅读“进一步调查时......”来破解它 https://sites.google.com/site /wcfpandu/有用的链接

Web 服务客户端代码生成的文件 Reference.cs 没有将GET方法归因于[WebGet()],因此尝试使用POST它们,因此InvalidProtocol, 405 Method Not Allowed。 问题是,当您刷新服务引用时,该文件会重新生成,并且您还需要System.ServiceModel.Web对 WebGet 属性的 dll 引用。

所以我决定手动编辑 Reference.cs 文件,并保留一份副本。下次我刷新它时,我会合并我的WebGet()s背部。

在我看来,这是 svcutil.exe 的一个错误,它没有识别出某些服务方法是GET而不仅仅是POST,即使 WCF IIS Web 服务发布的 WSDL 和 HELP 确实了解哪些方法是POSTGET??? 我已经用 Microsoft Connect 记录了这个问题。

于 2012-07-10T05:46:21.183 回答
0

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

于 2012-10-30T15:54:42.693 回答
0

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

希望这可以帮助其他人。

于 2014-05-15T16:28:03.353 回答
0

我已解决的问题,因为您的服务受登录凭据和用户名和密码的保护,请尝试在请求中设置用户名和密码,它将起作用。祝你好运!

于 2018-08-19T02:43:18.550 回答