Question:
Hello, please help me!
I'm loading an Xml file from my server
Set xml = xml0.HttpGet("www.myserver.com/filename.xml")
Then I make a modification with Updateattribute command.
anything.UpdateAttribute "name", "New Name"
The modification is successfull, I can check it in debug window (VB6).
My question:
How can I save the modificated file to the server without a local saving and uploading?
Thanks.
The XML class HTTPGet and HTTPPost methods were retired as of version 9.2.0
You should use the HTTP class Get and Post Methods to download/upload XML from a server
Your server will need the functionality to receive the uploads.
MikeW
Thank you for your help!!!!