0

XML 応答を返す HTTP 経由で XML 要求を送信する RESTful Web サービスを呼び出すコンソール アプリを作成しました。現在使用しているコードは次のとおりです。

WebRequest wrq = WebRequest.Create("<?xml version=1.0 encoding=ISO-8859-1?>
<Request xmlns=https://sapiqa.overstock.com/api><MerchantKey>"+MerchantKey+"
</MerchantKey><AthenticationKey>"+AuthenticationKey+"</AuthenticationKey><"+APIMethod+"
/></Request>");
wrq.Method = "POST";
// Create POST data and convert it to a byte array. Strip out unnecessary text. 
byte[] byteArray = Encoding.UTF8.GetBytes(URL.Replace(APIMethod, ""));
// Set the ContentType property of the WebRequest. 
wrq.ContentType = "text/xml";
// Set the ContentLength property of the WebRequest. 
wrq.ContentLength = byteArray.Length;

Stream dataStream = wrq.GetRequestStream();
// Write the data to the request stream. 
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object. 
dataStream.Close();
// Get the response. 
WebResponse response = wrq.GetResponse();
// Display the status. 
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server. 
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access. 
StreamReader reader = new StreamReader(dataStream);
// Read the content. 
string responseFromServer = reader.ReadToEnd();
// Display the content. 
GetOrders2Response = responseFromServer;
Console.WriteLine(responseFromServer);

// Clean up the streams. 
reader.Close();
dataStream.Close();
response.Close();
Console.ReadKey();

このコードを実行すると、次のエラーが表示されます。

Invalid URI: The URI scheme is not valid.

適切にフォーマットされた XML を送信し、XML で応答を受信するように WebRequest で修正するにはどうすればよいですか?

4

1 に答える 1

0

エラーとドキュメントに明確にWebRequest.Create記載されているように、POST ペイロードではなく URL を取ります。

URL を に渡し、Create()XML ペイロードを要求ストリームに書き込む必要があります。

于 2013-06-14T14:20:43.130 に答える