Link to home
Start Free TrialLog in
Avatar of jj1103
jj1103

asked on

Dynamic XML Software

Is there a software tool available that converts raw .xml codes into html files using AJAX/JavaScript as the programming code?
Avatar of Pierre François
Pierre François
Flag of Belgium image

Yes, the XSLT tools do that kind of conversion from XML into HTML a.o., and you can call it from AJAX and javascript.

You have an example here: http://www.learn-ajax-tutorial.com/Xslt.cfm
Avatar of jj1103
jj1103

ASKER

I mean a software tool like Dreamweaver and Altova that makes it really easy to parse XML files into dynamic html so that the html will always display the xml as an external document. I'm looking for a recommended GUI application.
What do you mean "parse XML"? With a program or looking at it?

If you only want to inspect the XML file as HTML, I suppose you want to see the source of your XML file with a browser.

That can be achieved by any browser like Firefox: when you point your Firefox browser to any XML file having no style sheet defined, you see the XML code, with neat indentation. Is that what you want?
Avatar of jj1103

ASKER

No, I want to find a program that will display xml code in an orderly fashion in an html file.
So if I understand you correctly, you have an XML file containing v.gr.

<?xml version="1.0"?>
<root>
  <display>Hello world</display>
</root>

Open in new window


And you look for a program to transform it into:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title>XML content</title>
 </head>
 <body>
  <p>&lt;?xml version="1.0"?&gt;
   <br/>
   &lt;root&gt;
   <br/>
   &lt;display&gt;Hello world&lt;/display&gt;
   <br/>
   &lt;/root&gt;
  </p>
 </body>
</html>

Open in new window


OK?

Other question: The program you are looking for, does it have to be a graphic user interface program (GUI), or can it be a command line program (CLI)? I am asking this because you were speaking about AJAX and Javascript above, but what you are explaining now seems something different.

Or do you need to make a website showing XML code? In that case, which tools do you have for building that website? Static or dynamic ones?
Avatar of jj1103

ASKER

Your first example is more what I mean. I am looking for a program like XMLspy that produces HTML files that display the contents in an XML file. Right now I am doing this by hand line by line using JavaScript/AJAX.  I had a trial version of XMLspy but it was too complicated for the simple pages I was building. These HTML files should be able to read off the XML file each time the HTML file is opened. There must be a simple program out there (like Dreamweaver for example) that is easy to use and can do what I currently do by hand.
SOLUTION
Avatar of Pierre François
Pierre François
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jj1103

ASKER

I've requested that this question be closed as follows:

Accepted answer: 0 points for jj1103's comment #37746619
Assisted answer: 500 points for pfrancois's comment #37731167

for the following reason:

Although Kompozer didn't mention XML in the features, pfrancois's recommendation introduced me to a free program similar to Dreamweaver that I can play around with...so thanks.
Objection: as far as I understand, the author wants to convert XML into HTML in such a way that the HTML is showing the internal structure of XML.

He is speaking about an AJAX tool for doing that, but there is absolutely no need to implement some AJAX Javascript. He just has to copy the XML SOURCE and to paste it into the WYSIWYG HTML editor (not into the HTML source, but the layout view) and he gets what he wants.

This is so trivial that it will never appear as "feature of the HTML editor".