Web サービスから入力を受け取り、注文 ID に付随する正しい情報を選択するプログラムを作成しようとしています。必要なため、これには xPath を使用しています。たとえば、プログラムを実行するときに OrderID の下に 1 を入力すると、その注文の総コストが取得されて表示されます。私はこれに慣れていないので、使用されている変数を制御できないときに入力を物理的に取得する方法がわかりません。どんな助けでも大歓迎です、ありがとう!
これが私のコードです:
[WebMethod]
public int GetTotalCostForAnOrder(int OrderID)
{
XPathNavigator nav;
XPathDocument docNav;
XPathNodeIterator NodeIter;
String rootPath = Server.MapPath("~");
string strFilename = rootPath + "\\OrderInfoLab3.xml";
docNav = new XPathDocument(strFilename);
// Create a navigator to query with XPath.
nav = docNav.CreateNavigator();
String searchString = "sum(OrderFeed/Order/Items/Item/TotalCost)";
// you need to determine the proper XPath statement
// Select the node and place the results in an iterator.
NodeIter = nav.Select(searchString);
while (NodeIter.MoveNext())
{
NodeIter.Current.Select("OrderID");
}
var totalOrder = nav.Compile(searchString);
return Convert.ToInt32(nav.Evaluate(totalOrder));
}
ここに私のXMLファイルがあります:
<Order id="1">
<BillingInformation>
<Name>Bruce Ganek</Name>
<Address>99 Main Street</Address>
<City>Cranston</City>
<State>RI</State>
<ZipCode>02910</ZipCode>
</BillingInformation>
<ShippingInformation>
<Name>Governor Chafee</Name>
<Address>82 Smith St # 115</Address>
<City>Providence</City>
<State>RI</State>
<ZipCode>02903-1121</ZipCode>
</ShippingInformation>
<Items>
<Item>
<PartNo>JETSWEATER</PartNo>
<Description>N.Y. Jets Sweatshirt</Description>
<UnitPrice>10.50</UnitPrice>
<Quantity>2</Quantity>
<TotalCost>21.00</TotalCost>
<CustomerOptions>
<Size>M</Size>
<Color>Green</Color>
</CustomerOptions>
</Item>
<Item>
<PartNo>JETSWEATER</PartNo>
<Description>N.Y. Jets Sweatshirt</Description>
<UnitPrice>7.50</UnitPrice>
<Quantity>3</Quantity>
<TotalCost>22.50</TotalCost>
<CustomerOptions>
<Size>S</Size>
<Color>White</Color>
</CustomerOptions>
</Item>
<Item>
<PartNo>JETSFLASHLIGHT</PartNo>
<Description>N.Y. Jets Flashlight</Description>
<UnitPrice>5.00</UnitPrice>
<Quantity>1</Quantity>
<TotalCost>5.00</TotalCost>
<CustomerOptions/>
</Item>
</Items>
</Order>
出力に表示されるエラーは次のとおりです。
System.Xml.XPath.XPathException: Expression must evaluate to a node-set.
at System.Xml.XPath.XPathNavigator.Select(XPathExpression expr)
at System.Xml.XPath.XPathNavigator.Select(String xpath)
at Lab3.Service1.GetTotalCostForAnOrder(Int32 OrderID) in C:\