Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why XML file is not rendered properly in Firefox?

Tags:

xml

firefox

I am using Firefox to read XML files, but it is not rendering the XML file properly. What could be the problem? I’m posting the XML sample below:

 <?xml version="1.0" encoding="utf-8"?><ExtPostTransaction><TransactionInfo><UserID>us</UserID><Password>pwd</Password><ServiceCode>1010</ServiceCode><TransactionID>T20120518091833</TransactionID></TransactionInfo></ExtPostTransaction> 

My Firefox shows it as:

uspwd1010T20120518091833 

I am expecting this:

<ExtPostTransaction>   <TransactionInfo>     <UserID>us</UserID>     <Password>pwd</Password>     <ServiceCode>1010</ServiceCode>     <TransactionID>T20120518091833</TransactionID>   </TransactionInfo> </ExtPostTransaction> 
like image 940
Vivek S Avatar asked May 18 '12 08:05

Vivek S


People also ask

How do I fix XML parsing error in Firefox?

You can do a clean reinstall and remove the Firefox program folder to ensure that all files are replaced. You may have to disable security software temporarily in case the problem persists. You can create a new profile as a quick test to see if your current profile is causing the problem.

Does Firefox support XML?

For instance, to open an XML file including an XSL file uses Firefox 60 ESR, to Internet browsing uses Firefox 68 or later.

How do I view XML in Firefox?

If you want to view the raw XML just occasionally instead of every time, right-clicking the page and choosing "View Page Source" seems to do the trick.

Why is Firefox not displaying web pages correctly?

Clear the cookies and cache If a website has updated their code, Firefox may still be using some of the old code along with some of the new, which can make a web page display incorrectly. To fix this, you need to clear the cookies and cache: Click the menu button. to open the menu panel.


1 Answers

for me, It turns out that some sort of Skype add-on was the problem. Great detective work. It's odd how that click-to-call extension creates such random issues...

just disable skype click-to-call add-on, after that Firefox showing row xml

like image 149
Anand saga Avatar answered Nov 10 '22 19:11

Anand saga