Właśnie dostałem ten wyjątek (ProtocolViolationException) w mojej aplikacji .NET 2.0 (działającej na standardowym emulatorze systemu Windows Mobile 6). Co mnie wprawia w zakłopotanie, to to, że o ile wiem, nie dodałem żadnej treści, chyba że w jakiś sposób nieumyślnie to zrobiłem. Mój kod jest poniżej (bardzo prosty). Czy jest jeszcze coś, co muszę zrobić, aby przekonać .NET, że to tylko http GET?
Dzięki, brian
//run get and grab response
WebRequest request = WebRequest.Create(get.AbsoluteUri + args);
request.Method = "GET";
Stream stream = request.GetRequestStream(); // <= explodes here
XmlTextReader reader = new XmlTextReader(stream);
źródło
HttpClient
iHttpRequestMessage
?Miałem podobny problem z Flurl.Http:
Flurl.Http.FlurlHttpException: Call failed. Cannot send a content-body with this verb-type. GET http://******:8301/api/v1/agents/**** ---> System.Net.ProtocolViolationException: Cannot send a content-body with this verb-type.
Problem został użyty
.WithHeader("Content-Type", "application/json")
podczas tworzenia IFlurlRequest.źródło
Ponieważ nie określiłeś nagłówka.
Dodałem rozszerzony przykład:
var request = (HttpWebRequest)WebRequest.Create(strServer + strURL.Split('&')[1].ToString());
Nagłówek (żądanie ref, p_Method);
I metoda Header:
private void Header(ref HttpWebRequest p_request, string p_Method) { p_request.ContentType = "application/x-www-form-urlencoded"; p_request.Method = p_Method; p_request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows CE)"; p_request.Host = strServer.Split('/')[2].ToString(); p_request.Accept = "*/*"; if (String.IsNullOrEmpty(strURLReferer)) { p_request.Referer = strServer; } else { p_request.Referer = strURLReferer; } p_request.Headers.Add("Accept-Language", "en-us\r\n"); p_request.Headers.Add("UA-CPU", "x86 \r\n"); p_request.Headers.Add("Cache-Control", "no-cache\r\n"); p_request.KeepAlive = true; }
źródło
Przed odczytaniem strumienia odpowiedzi ustaw typ zawartości żądania;
request.ContentType = "text/xml";
źródło