Simple post of a xml file?

microbone

New member
Joined
Mar 8, 2007
Messages
1
Programming Experience
Beginner
I´m new in this forum so I hope it the right place posting my question!

I have build a service that does 2 things:
1. creates a xml file on local workstation
2. send the xml file to a url

The first part is going well, but the second part posting the file is making trouble!

Can anyone help me explaining how I do solve this ?

Right now it does load the xmlfile like this...

Dim xmlDoc As Xml.XmlDocument = New Xml.XmlDocument()
xmlDoc.Load(filename)
xmlstring = xmlDoc.InnerXml()

not sure if thats right but thats what I have until now......

and now I need to figure out how do I post this string to a specific url?

I appreciate all the help I can get...

Best Regards
Microbone
 
Back
Top