-
send xml file to web service
i want to send an xml file to a web service. the web service will accept the
xml file, process it and perhaps return some info.
how do i set up the web service and the client so that i can send the xml
file from client to web service?
currently it looks like this
[WebMethod]
public void GetScanFile(XmlDocument sf)
{
XmlTextWriter myXmlTextWriter = new XmlTextWriter ("c:\\WCCS-CS\\"+sf, null);
myXmlTextWriter.Close();
}
and i call it like this
WebRef.MyService a=new WebRef.MyService
XmlDocument x=new XmlDocument();
x.LoadDoc("C:\\test.xml");
a.GetScanFile(x);
ALL OF THE SYNTAX AND connections to the web serice work fine
when i hit the last line i get a System.xml system error, so obviously sending
an xml like this doesnt work. what will?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|