I have built some software that will display an xml string that is retrieved from a database under certain conditions. This works fine on my machine but when it is installed on the users machine the web browser objects display nothing. I have no idea why this is happening as its working on my computer and all the other computers in the office, just not on this server where it needs to.
An example of the code I am using:
webDownloadedInstructDup.DocumentText = DuplicateXml;
Where DuplicateXML would be something like:
<?xml version="1.0" encoding="utf-8"?><shp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><instructions><instruction><id>12345678</id><Reference>123456</Reference><agent><tradeName>Example</tradeName><legalName>Example</legalName></instruction></instructions>
The actual code will be getting the xml from a database and then casting it to a string.
Although I don't think that its the code in this case as it works on all the machines I have tested it on except the server. I am thinking that maybe there is something that needs to be set on this server to allow the use of these web browsers.
The left is how it works normally and the right web browser is how it is on the server. Anyone got a suggestion?