このコードは正常に機能していましたが、ノードの 1 つをフィルタリングする必要があったため、ends-wth 関数を追加しました。XSLT コンテンツが必要であるというエラーが表示されるようになりました。何が問題なのかわかりません。
Dim doc As New XmlDocument()
doc.Load("http://hatrafficinfo.dft.gov.uk/feeds/datex/England/CurrentRoadworks /content.xml")
Dim nsmgr As New XmlNamespaceManager(doc.NameTable)
nsmgr.AddNamespace("x", "http://datex2.eu/schema/1_0/1_0")
Dim nodeList As XmlNodeList = doc.SelectNodes("/x:d2LogicalModel/x:payloadPublication /x:situation/x:situationRecord/x:groupOfLocations/x:locationContainedInGroup /x:tpegpointLocation/x:*[ends-with(name(),'oint')]/x:pointCoordinates/x:latitude, nsmgr)