1
Answer

Error: Somsome parameters or credential values are missing

David Smith

David Smith

14y
1.9k
1
I have the drill through working to a certain extinct, I can drill down through each rdlc via hyperlink, When I get to the last report , on the reportview it has a option to go back to the parent report, when I click that button, I get a error that saids some parameters or credential values are missing, anyone familiar with this error, how can you tell parametes are missing, when I step through I seem to have all the parameters I need
Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.