Archived Forum Post

Index of archived forum posts

Question:

CkXML ActiveX HttpGet (VB6)

Mar 21 '13 at 07:05

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.


Answer

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


Answer

Thank you for your help!!!!