vote up 1 vote down star

Hi, i want to pass xmldocument as parameter to my webservice method.After loaded xml file from a path,when try to send xmldocument as parameter by webservice method,i come across this error.What can be reason?I use StreamWriter and i close it.i dont use xmlwriter.Development Environment is vs 2008

Error Message:

Cannot write XML declaration. WriteStartDocument method has already written it.

flag

67% accept rate
Show some code, because no one of us have crystal ball – matma Sep 10 at 12:01
i cant send all code because it has more than 1000 lines and also when i load xmldocument in web,i cant use this method without problem.Maybe Webservice causes a problem? Dim xml As New XmlDocument xml.Load("\My Documents\" & xmlfile & ".xml") myTransfer.Save_XML(xml, 1) <<<<<<'here crashes this is my web service method <WebMethod()> _ Public Sub Save_XML(ByVal m_xmlMyDoc As XmlDocument, ByVal p_ID As Integer) end sub – – Alexander Sep 10 at 12:13

1 Answer

vote up 0 vote down check

Pass the XmlDocument.OuterXml string to the webservice instead.

You can load it back into an XmlDocument with XmlDocument.LoadXml at the other end.

link|flag

Your Answer

Get an OpenID
or

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