2011-11-16 19 views
0

WCF Web APIを使用してrest svcを作成しました。私のGETリクエストは正常に機能しますが、PUTリクエストを受け取ることができません。私はリソースがそこにないように404エラーを取得し続けますが、それはあります。WCF Web APIから404エラーを受け取る(Put操作)

サーバコード:

<WebInvoke(UriTemplate:="WebMaint", Method:="Put")> 
Public Function WebMaintPut(ByVal entries As HttpRequestMessage(Of IList(Of WebMaint))) As HttpResponseMessage(Of WebMaint) 
    Dim response As New HttpResponseMessage(Of WebMaint)(HttpStatusCode.NoContent) 
    Using scope = New TransactionScope() 
     entries.Content.ReadAs(Of IList(Of WebMaint)).AsParallel().ForAll(Sub(entry) 
                       _repos.Update(entry) 
                      End Sub) 
     scope.Complete() 
    End Using 

    Return response 
End Function 

ホスト・コード:

Public Sub New() 
    ObjectFactory.Initialize(Sub(x) 
           x.For(Of IWebMaintRepository)().Use(Of WebMaintRepository).Ctor(Of String).Is(ConfigurationManager.ConnectionStrings("Dev").ConnectionString) 
          End Sub) 
    _host = New HttpServiceHost(ObjectFactory.GetInstance(Of WebMaintResource), "http://localhost:8000/REST/") 
    _host.Open() 
End Sub 

クライアントコード:

Private Sub btnSave_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles btnSave.Click 
    Using client = New HttpClient() 
     Dim Content = New ObjectContent(Of IList(Of WebMaint))(_WebMaint) 
     Dim response = client.Put(New Uri("http://localhost:8000/REST/WebMaint/"), Content) 
     Debug.Print(response.StatusCode.ToString()) 
    End Using 
End Sub 

PUT要求:

PUT http://localhost:8000/REST/WebMaint/ HTTP/1.1 
Host: localhost:8000 
Content-Length: 592 
Expect: 100-continue 

<?xml version="1.0" encoding="utf-8"?><ArrayOfWebMaint xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><WebMaint><WebMaintenanceID>1</WebMaintenanceID><Maintenance>true</Maintenance><WebSystemId>1</WebSystemId><WebMsgId>4</WebMsgId></WebMaint><WebMaint><WebMaintenanceID>2</WebMaintenanceID><Maintenance>true</Maintenance><WebSystemId>2</WebSystemId><WebMsgId>3</WebMsgId></WebMaint><WebMaint><WebMaintenanceID>3</WebMaintenanceID><Maintenance>true</Maintenance><WebSystemId>3</WebSystemId><WebMsgId>2</WebMsgId></WebMaint></ArrayOfWebMaint> 

PUTの応答:

HTTP/1.1 404 Not Found 
Content-Length: 1565 
Content-Type: text/html; charset=utf-8 
Server: Microsoft-HTTPAPI/2.0 
Date: Wed, 16 Nov 2011 19:31:43 GMT 

<?xml version="1.0" encoding="utf-8"?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <title>Service</title> 
    <style>BODY { color: #000000; background-color: white; font-family: Verdana; margin-left: 0px; margin-top: 0px; } #content { margin-left: 30px; font-size: .70em; padding-bottom: 2em; } A:link { color: #336699; font-weight: bold; text-decoration: underline; } A:visited { color: #6699cc; font-weight: bold; text-decoration: underline; } A:active { color: #336699; font-weight: bold; text-decoration: underline; } .heading1 { background-color: #003366; border-bottom: #336699 6px solid; color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal;margin: 0em 0em 10px -20px; padding-bottom: 8px; padding-left: 30px;padding-top: 16px;} pre { font-size:small; background-color: #e5e5cc; padding: 5px; font-family: Courier New; margin-top: 0px; border: 1px #f0f0e0 solid; white-space: pre-wrap; white-space: -pre-wrap; word-wrap: break-word; } table { border-collapse: collapse; border-spacing: 0px; font-family: Verdana;} table th { border-right: 2px white solid; border-bottom: 2px white solid; font-weight: bold; background-color: #cecf9c;} table td { border-right: 2px white solid; border-bottom: 2px white solid; background-color: #e5e5cc;}</style> 
    </head> 
    <body> 
    <div id="content"> 
     <p class="heading1">Service</p> 
     <p>Endpoint not found.</p> 
    </div> 
    </body> 
</html> 

答えて

0

問題が見つかりました。問題は次の行にあった:

<WebInvoke(UriTemplate:="WebMaint", Method:="Put")> 

は信じられないかもしれませんが、「メソッド」パラメータが敏感場合があります。それを次のように変更します。
<WebInvoke(UriTemplate:="WebMaint", Method:="PUT")>問題を修正しました。私はHTTP 404エラーを受け取るだけでなく、より良い解決策があるはずだと思います。

2

私は知らないが、あなたは属性もしてみてくださいWebInvokeに入れる代わりに入れたのですか? (厄介なように聞こえますが、プレビューで可能かもしれません)

IListの代わりにListを使ってみましたか?

もう1つの可能性は、要求のContent-Typeを明示的にtext/xmlに設定する必要がある可能性があることです。

IIS(Express)でホストしている場合は、デフォルトで無効になっているため、enable PUT and DELETEが必要です。

+0

素敵な推測:) Put - > PUT – misaxi

関連する問題