Почему HttpWebRequest.GetResponse () зависает при попытке обновить службу OData? - PullRequest
2 голосов
/ 18 июля 2011

Я пишу потребителю OData в c #. Я могу успешно удалить запись, но по какой-то причине она просто зависает / зависает на GetResponse () при попытке обновить. Это даже игнорирует мой тайм-аут. Ниже мой тестовый код. Любые разумные предложения?

XDocument doc = XDocument.Parse(
@"<?xml version=""1.0"" encoding=""iso-8859-1"" standalone=""yes""?>
<entry xml:base=""http://localhost/odata/service.svc/"" xmlns:d=""http://schemas.microsoft.com/ado/2007/08/dataservices"" xmlns:m=""http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"" xmlns=""http://www.w3.org/2005/Atom"">
  <id>http://localhost/odata/service.svc/SimpleTests(7)</id>
  <title type=""text""></title>
  <updated>2011-07-18T12:19:43Z</updated>
  <author>
    <name />
  </author>
  <link rel=""edit"" title=""SimpleTest"" href=""SimpleTests(7)"" />
  <category term=""MetastormModel.SimpleTest"" scheme=""http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"" />
  <content type=""application/xml"">
    <m:properties>
      <d:ID m:type=""Edm.Int32"">7</d:ID>
      <d:varcharcol>EFGH</d:varcharcol>
      <d:intcol m:type=""Edm.Int32"">-44</d:intcol>
      <d:realcol m:type=""Edm.Single"">22.11</d:realcol>
      <d:datetimecol m:type=""Edm.DateTime"">1999-12-31T00:00:00</d:datetimecol>
      <d:imagecol m:type=""Edm.Binary"" m:null=""true"" />
      <d:moneycol m:type=""Edm.Decimal"">1000000.0000</d:moneycol>
      <d:textcol>WOW!</d:textcol>
    </m:properties>
  </content>
</entry>");

HttpWebRequest request =
 (HttpWebRequest)HttpWebRequest.Create("http://localhost/odata/service.svc/SimpleTests(7)");
request.Method = "PUT";
request.Accept = "application/atom+xml";
request.Timeout = 1000;
request.ContentType = "application/atom+xml;type=entry";
using (var writer = XmlWriter.Create(request.GetRequestStream()))
{
    doc.WriteTo(writer);
    writer.Close();
}
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
}

Ответы [ 2 ]

2 голосов
/ 19 июля 2011

После возни с Fiddler я пришел к следующему решению, которое работает. Часть, которая, кажется, решает проблему, определяет request.ContentLength. Я не знаю более простого способа получить длину, поэтому не стесняйтесь комментировать, если вы делаете.

XDocument doc = XDocument.Parse(
@"<?xml version=""1.0"" encoding=""utf-8"" standalone=""yes""?>
<entry xmlns:d=""http://schemas.microsoft.com/ado/2007/08/dataservices"" xmlns:m=""http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"" xmlns=""http://www.w3.org/2005/Atom"">
  <category scheme=""http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"" term=""MetastormModel.SimpleTest"" />
  <title />
  <author>
    <name />
  </author>
  <updated>2011-07-19T09:28:03.173654Z</updated>
  <id>http://localhost/odata/service.svc/SimpleTests(7)</id>
  <content type=""application/xml"">
    <m:properties>
      <d:ID m:type=""Edm.Int32"">7</d:ID>
      <d:datetimecol m:type=""Edm.DateTime"">1950-01-01T00:00:00</d:datetimecol>
      <d:imagecol m:type=""Edm.Binary"" m:null=""true"" />
      <d:intcol m:type=""Edm.Int32"">-44</d:intcol>
      <d:moneycol m:type=""Edm.Decimal"">12345.0000</d:moneycol>
      <d:realcol m:type=""Edm.Single"">22.11</d:realcol>
      <d:textcol>Hello There</d:textcol>
      <d:varcharcol>EFGH</d:varcharcol>
    </m:properties>
  </content>
</entry>");

HttpWebRequest request =
 (HttpWebRequest)HttpWebRequest.Create("http://localhost/odata/service.svc/SimpleTests(7)");
request.Method = "MERGE";
request.Accept = "application/atom+xml,application/xml";
request.Timeout = 20000;
request.ContentType = "application/atom+xml";
using (MemoryStream stream = new MemoryStream())
{
    using (var writer = XmlWriter.Create(stream))
    {
        doc.WriteTo(writer);
        writer.Close();
    }
    request.ContentLength = stream.Length;
    using (var writer = XmlWriter.Create(request.GetRequestStream()))
    {
        doc.WriteTo(writer);
        writer.Close();
    }
}
1 голос
/ 18 июля 2011

Запрос PUT не возвращает никакого контента, кроме HTTP-кода (204 - Нет контента) для успеха.

Подробнее см. в этой части спецификации OData .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...