Hi, Please
help.
I create WebService in MS
VisualStudio .NET v. 2003. WebServise Method which return XmlDocument and I want that this same WebServise Method return ProcessingInstruction (xml-stylesheet). I write in same way as write in
previous version of MS VisualStudio .NET:
XmlProcessingInstruction
newPI;
String PItext = "type='text/xsl' href='../bases.xslt'";
newPI =
doc.CreateProcessingInstruction("xml-stylesheet",
PItext);
doc.AppendChild(newPI);
But my WebService dont return
this ProcessingInstruction.
Way and what I nead made that
WebService return this ProcessingInstruction??????
Please
help.