Webサービスから返されたデータを抽出するために使用されるクエリ言語のソースを誰かが持っていますか。
データセットを返すWebサービスを作成しました。
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public DataSet GetData()
{
AWDS ds = new AWDS();//AWDS is my dataset class name
SalesPersonTableAdapter ta = new SalesPersonTableAdapter();
ta.Fill(ds.SalesPerson);
return ds;
}
}
リソースで見つけたこのクエリを使用しました
<Query>
<Method Namespace="http://tempuri.org/" Name="GetData">
</Method>
<SoapAction>http://tempuri.org/GetData</SoapAction>
</Query>
「このクエリ言語名は何ですか」
しかし、データセットのスキーマを取得します(テーブルの列はレコードとして表示されます)。
特定のテーブルのスキーマを取得する方法をもっと知りたいです。
ありがとう