Posts Under xml Category
What is xmlrpc.php?
It is a script which allows clients to make procedural calls over the net. As it says in the name, the encoding is XML and because it is used on websites we can make the fair assessment that it uses the HTTP protocol. If we break the name down we get: XML transmition via Remote Procedure Calls. So you are still not sure what this is all about? Read on…..
Security error: securitySandboxError with Flash
You have a flash uploader and you get this error: security error: securitySandboxError This means that the flash is not trusted by the domain and you have to place an xml file in the root of the domain. The file is called “crossdomain.xml” and this is what should be inside it: <?xml version=”1.0″?> <cross-domain-policy> <allow-access-from domain=”*” /> </cross-domain-policy> Solved!
how to load xml into flash using actionscript 2
Create an xml object: var myXmlObject = new XML(); Perform action when xml file has been loaded: myXmlObject.onLoad = function(success) { if (success) trace("XML File has been read."); } Load the xml file into the object: myXmlObject.load("myXmlFile.xml");