473,378 Members | 1,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Transformation between XML instance data and HTML form

A few weeks ago I have the idea of converting XML instance data to a
HTML form, using tags as the label and the resulting form can be used
to edit the XML data. So I started to play around with it, and have
some prelimary proof of concept stuff working. Then I started to
search around on the web for similar works. There seem to be quite a
few people with the same idea. The following is an example. However as
far as I can tell, nobody really takes it to the fullest conclusion.
And the more I work on the project, I can see more and more
interesting potential. I would like to get some comment before I go
too far with my project.

My work is on this site, bear in mind that a lot of features are
missing. For example I am working on insert and delete now.

http://www.datamech.com/XMLForm/

And for a completely bare bone approach, look at this
XML file from IE6 (would not work with mozilla.)

http://www.datamech.com/XMLForm/test.xml

Ed Lai

wh************@yahoo.com (Frank Einstein) wrote in message news:<5c**************************@posting.google. com>...
Looking for a tool that can edit an XML file in a browser. The basic
requirement is that the XML file is rendered as an HTML form with
editable fields (including add/delete, preferably in accordance with
with the document's XSD/DTD or other schema definition). I don't mind
the actual form of this tool - could be implemented as a JSP/Servlet,
ASP component, or browser plug-in for local or remote XML file access.
Alternatively, it doesn't have to be a web browser or HTML as the GUI,
but it does need to be form-based (as opposed to element-tree based
like most simple XML editors).

My initial feeling that something like this would be ubiquitous and
freely available seems to have hit up against a different reality
after a day of looking. Perhaps tool writers are waiting for
standards to progress in this area (XForm ?). Perhaps I'm looking in
the wrong places ?

As an example of what I'm looking for, the closest thing I've found is
described in this series of articles :
http://www.xmlfiles.com/articles/mic...ml/default.asp (this
example uses the Microsoft.XMLDOM asp component)

What's missing here is that the generated HTML form simply reflects
the current XML document instance, and does not allow for
modifications allowable by the XSD/DTD unless they are currently in
the XML document instance. For example, it doesn't give a button to
add an additional element, if this is allowed by the maxOccurrence in
the XSD.

So what I want does this:
- open user-specified XML doc
- (optionally) open XSLT doc for custom GUI/form rendering
- open XSD or DTD doc
- render GUI form containing XML data in accordance with optional XSTL
doc
- allow use of HTML/_javascript(or other) controls to change/add/delete
elements/paramenters/data etc., within the confines of the XSD/DTD
- transform form data back to XML format, valid per XSD/DTD, and save
to disk

I've also briefly looked at the Cocoon XMLForms stuff (and related),
but this seems too comprehensive for what I want... I don't want XML
binding to Java objects/beans, I simply want something that will
input/output back to/from the original XML file. Maybe there is a
tool/sample/example within the Cocoon distribution that does this, but
I haven't actually looked yet.

Any pointers welcome.

...

Jul 20 '05 #1
7 2907
da***********@yahoo.com (Ed Lai) writes:
A few weeks ago I have the idea of converting XML instance data to a
HTML form, using tags as the label and the resulting form can be used
to edit the XML data. So I started to play around with it, and have
some prelimary proof of concept stuff working. Then I started to
search around on the web for similar works.
...


Hey, I find this very interesting. I had the same idea, but just looked at
the web to find any existing tool and didn't try to implement it myself.

Anyway, a couple of ideas :
- did you look at XForms ? I guess it may concern
HTML completed form -> XML instance,
- In my mind, your "form generator" could by made with a XSL transformation
generating the HTML form from any XML instance document.
The really difficult job would be to generalize this to HTML form derivated
from DTD or XML-Schema... Of course some tools exist (XML structured editors),
but I couldn't find one working over the Web (in a thin client architecture)

Bye,

Robert Rivière
Jul 20 '05 #2
The most frequent suggetion I got was that I should look into XForms. I
have read some introduction but not in detail. I guess I would be using
it in future. Now I would like to have something that at least in its
minimum configuration can run in as many machine as possible. Using
XForms now require a special browser or plugin. I often use the computer
in a public library and of course you cannot install your own software
there. This is my guideline, you should be able to use it from a public
library computer. So XForms is for future work, not now, and of course
that gives me some time to really learn XForms.

As for using XSLT for the transformation, it is indeed possible and I
have a shorten version of it, when I suggested looking at
http://www.datamech.com/XMLForm/test.xml, that uses XSLT to transform
the test.xml file to HTML form. Although I agree it would be much more
difficult when we have to take account of XSD/DTD.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #3
Ed Lai <an*******@devdex.com> writes:
[about XForms]
it in future. Now I would like to have something that at least in its
minimum configuration can run in as many machine as possible. Using
XForms now require a special browser or plugin.


AFAIK, the Chiba project implements on server-side XForms managing for a thin-client
pure HTML navigator.

I didn't look in deep details, though

Robert
Jul 20 '05 #4
A new version that includes insertion and deletion is now available. It
can be found in the same location.

http://www.datamech.com/XMLForm/


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #5
Ed Lai <an*******@devdex.com> writes:
A new version that includes insertion and deletion is now available. It
can be found in the same location.

http://www.datamech.com/XMLForm/


Hi,

very interesting work. Nice job. I think it gives a good illustration of global concepts around XML.

However in "Modify the Input Fields of the Form", you say :
"Note that with schema information, it is possible to generate these non-text field automatically".

Yes, definitively. But in my mind *this* is the hot-topic. Having a form generator
able to produce radio-buttons or drop-down menus from what is in the schema.
Would you have any plan about this ?

Robert
Jul 20 '05 #6
Ed Lai <an*******@devdex.com> writes:
A new version that includes insertion and deletion is now available. It can be found in the same location.

http://www.datamech.com/XMLForm/

Hi, very interesting work. Nice job. I think it gives a good illustration of global concepts around XML.
However in "Modify the Input Fields of the Form", you say :
"Note that with schema information, it is possible to generate these non-text field automatically".
Yes, definitively. But in my mind *this* is the hot-topic. Having a form generatorable to produce radio-buttons or drop-down menus from what is in the schema.Would you have any plan about this ? Robert


Yes, it is definitely under the plan, although I think the choice
information is going to be collected from the data.

BTW, for those who just drop into this thread and do not know what is
going on, XMLForm is a web based XML editor using HTML Form. It is still
under development, the first release was in Jan which only allows
modifying the XML data. I just release a version that allows adding and
removing elements from the XML data. There will be more features in
future release. Check it out in http://www.datamech.com/XMLForm/

Ed
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #7
I have posted a new version of the editor that allows you to change a
text field to a select list or radio buttons, the choices are collected
from the document.

For Safari you can only make the select list. The radio buttons would
not work right.

As usual, it is located at

http://www.datamech.com/XMLForm/

Ed

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sergio del Amo | last post by:
Hi, I use the xslt functions provided by php. I am running in my computer the package xampp(www.apachefriends.org) which includes php/apache/mysql .. In this package the php includes the sablotron...
12
by: gipsy boy | last post by:
Hello, I have sort of a big problem. I would really appreciate any help you could give me. I made a web service in C++ that throws XML to the client (browser). But, the XSLT transormation...
4
by: Fredrik Henricsson | last post by:
Hey, I'm building an ontology in Protégé and I want to transform parts of it (e.g. the instances) to HTML with XSL. When I was transforming another file with 'simple' XML-tags like <author> before,...
9
by: Bucco | last post by:
How effective is Javascript in transforming XML into XHTML? I'm wanting to use the XML file to store data that will then be transformed into the XHTML file for displaying of the data. I want to...
2
by: Stuart | last post by:
I am a bit of a newbie to C# and would like help with the following. I am bringing in a dataset and transforming that dataset using an XSL style sheet to generate text. This text does in fact...
1
by: daniele74 | last post by:
Hy, I want ask you this question. I have two schema file schema1.xsd and schema2.xsd. then I have a stylesheet transformation style2.xsl that show in a browser an xml file that has schema2.xml as...
7
by: Zzzbla | last post by:
Hi all, anyone has a live example of loading an xml file from a server, an xslt file from the server, then transforming the xml using the xslt and outputing the results (preferably with...
2
by: Pathik | last post by:
Hi All, I am New to xml. Currently I am trying to transform one xml file to another file using xslt my xml file is as follows: <?xml version="1.0" encoding="UTF-8" ?> <?xml-stylesheet...
2
by: li72 | last post by:
Hi. everyone I am new to xslt and Xforms technologies. I am trying to write a very simple xslt stylesheet to transform a very simple xml doc into Xforms doc. (Hello world example) here are my xml...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.