smerny Posted June 11, 2010 Share Posted June 11, 2010 how can i do this? when i try, i keep getting: <?xml version="1.0" encoding="ISO-8859-1" ?> <Response Method="GetWork" EstimateStatus="2" xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" OrigSize="117252" CompSize="40075">AAZ4SCkzB84bN3PK etc Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/ Share on other sites More sharing options...
Maq Posted June 11, 2010 Share Posted June 11, 2010 Uh, what? Give us more information. What are you trying to open it with? Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1070905 Share on other sites More sharing options...
smerny Posted June 11, 2010 Author Share Posted June 11, 2010 tried Chrome, IE, Adobe Reader... IE is what I pasted above... this is Chrome: AAZ4SCkzB84bN3PKgGhShg...etc (just skipping the first part of what shows in IE i guess reader wont open it... i just need to know what I need to use to open an XML document on my computer... Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1070910 Share on other sites More sharing options...
Daniel0 Posted June 11, 2010 Share Posted June 11, 2010 XML is plaintext. You can open it in any editor. Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1070911 Share on other sites More sharing options...
smerny Posted June 11, 2010 Author Share Posted June 11, 2010 if i open with an editor, i see the same thing that i see in IE... looks like hash code Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1070914 Share on other sites More sharing options...
Daniel0 Posted June 11, 2010 Share Posted June 11, 2010 Then that is what is in the XML document... Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1070922 Share on other sites More sharing options...
cags Posted June 12, 2010 Share Posted June 12, 2010 It's probably something to do with this... xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" I don't know a great deal about xslt etc, but I'd imagine that the bin.base64 represents that the contents of the tags are base64 encoded. Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1071082 Share on other sites More sharing options...
tibberous Posted June 12, 2010 Share Posted June 12, 2010 It might be base64 encoded data - try putting the garbled text into base64_decode? echo base64_decode("AAZ4SCkzB84bN3PK"); ? I'm not even 100% sure why you'd uses base64 - might be a way to escape the data for xml, since you won't get special character (< , &) that can break xml. Link to comment https://forums.phpfreaks.com/topic/204516-opening-xml-documents-saved-on-my-computer/#findComment-1071146 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.