構成で HTTP GET および HTTP POST を有効にすることができます。ルートに webconfig ファイルというファイルがあり、次の設定を追加する必要があります。
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
つまり、system.web タグ内です。
Web サービスで XML を送り返す場合は、予想される XML に似た希望の構造体を設計できます。例: 次のタイプの XML を取得するには:
<?xml version="1.0" encoding="utf-8"?>
<Quote xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
<object>Item101</object>
<price>200</price>
</Quote>
Web サービスから次の構造体のオブジェクトを返す必要があります。
public struct Quote
{
public int price;
public string object;
public Quote(int pr, string obj)
{
price = pr;
object = obj
}
}
これで、これを文字列として応答として受け取り、好きなように解析できます。
================================================== =============================
編集 I
以下は HelloWorld WebMethod です
[WebMethod]
public string HelloWorld() {
return "HelloWorld";
}
[構造体の場合、戻り値の型を対応する構造体型に変更]
以下は、URL に POST し、xml ファイルを webservice に送信できる関数です [必要に応じて使用]:
public static XmlDocument PostXMLTransaction(string URL, XmlDocument XMLDoc)
{
//Declare XMLResponse document
XmlDocument XMLResponse = null;
//Declare an HTTP-specific implementation of the WebRequest class.
HttpWebRequest objHttpWebRequest;
//Declare an HTTP-specific implementation of the WebResponse class
HttpWebResponse objHttpWebResponse = null;
//Declare a generic view of a sequence of bytes
Stream objRequestStream = null;
Stream objResponseStream = null;
//Declare XMLReader
XmlTextReader objXMLReader;
//Creates an HttpWebRequest for the specified URL.
objHttpWebRequest = (HttpWebRequest)WebRequest.Create(URL);
try
{
//---------- Start HttpRequest
//Set HttpWebRequest properties
byte[] bytes;
bytes = System.Text.Encoding.ASCII.GetBytes(XMLDoc.InnerXml);
objHttpWebRequest.Method = "POST";
objHttpWebRequest.ContentLength = bytes.Length;
objHttpWebRequest.ContentType = "text/xml; encoding='utf-8'";
//Get Stream object
objRequestStream = objHttpWebRequest.GetRequestStream();
//Writes a sequence of bytes to the current stream
objRequestStream.Write(bytes, 0, bytes.Length);
//Close stream
objRequestStream.Close();
//---------- End HttpRequest
//Sends the HttpWebRequest, and waits for a response.
objHttpWebResponse = (HttpWebResponse)objHttpWebRequest.GetResponse();
//---------- Start HttpResponse
if (objHttpWebResponse.StatusCode == HttpStatusCode.OK)
{
//Get response stream
objResponseStream = objHttpWebResponse.GetResponseStream();
//Load response stream into XMLReader
objXMLReader = new XmlTextReader(objResponseStream);
//Declare XMLDocument
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(objXMLReader);
//Set XMLResponse object returned from XMLReader
XMLResponse = xmldoc;
//Close XMLReader
objXMLReader.Close();
}
//Close HttpWebResponse
objHttpWebResponse.Close();
}
catch (WebException we)
{
//TODO: Add custom exception handling
throw new Exception(we.Message);
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
finally
{
//Close connections
objRequestStream.Close();
objResponseStream.Close();
objHttpWebResponse.Close();
//Release objects
objXMLReader = null;
objRequestStream = null;
objResponseStream = null;
objHttpWebResponse = null;
objHttpWebRequest = null;
}
//Return
return XMLResponse;
}
そして、呼び出しは次のようになります:
XmlDocument XMLdoc = new XmlDocument();
XMLdoc.Load("<xml file locatopn>");
XmlDocument response = PostXMLTransaction("<The WebService URL>", XMLdoc);
string source = response.OuterXml;
[これが役に立った場合、またはさらにサポートが必要な場合はお知らせください]