Windows error 0x80131942, -2146231998

Detailed Error Information

COR_E_XmlXslt[1]

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code6466 (0x1942)

Questions

1vote
1answer

What does expression must evaluate to a node set mean?

I have the following code. <!-- Error func --> <xsl:template name="myFunc"> <xsl:param name="person"/> <xsl:variable name="name"> "name": "<xsl:value-of select="$person/name"/>", </xsl:variable> <xsl:value-of select="$name"/> </xsl:template> <!-- Call function --> <xsl:template match="/"> <xsl:call-template name="myFunc"> <xsl:with-param name="person" select="list/person"/> </xsl:call-template> </xsl:template> I'm using the variable for something more complicated, but so far I can't even get [...] read more
xml
xslt
xslt-1.0

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0