vote up 0 vote down star

I build a xpath string based on all filled-out fields in a form submitted by a user. In my xml document, not all form fields necessarily exist as nodes. When I try to do

doc.SelectNodes(xpath);

I get an exception System.Xml.XPath.XPathException that my xpath has an invalid token.

How can I modify the xpath string to only include those fields that do exist in the xml document and disregard all the others?

flag

33% accept rate
2  
An example would be helpful. – Keltex May 20 at 13:47
2  
Seems your XPath is not syntactically correct. Could you show your code and a sample input document? – divo May 20 at 13:53
Missing data shouldn't cause xpath to fail - it just won't return any matches. It sounds to me like perhaps the xpath itself is borked, or you aren't using the correct namespaces... – Marc Gravell May 20 at 13:59

1 Answer

vote up 1 vote down

When you receive an invalid token error it implies there is some invalid character or invalid xpath in your query. A sample of the xml and some xpath samples would be very helpful.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.