Re: [Boston.pm] A webapp to build an XML file

2006-01-25 Thread Ian Langworth
When I was building a REST interface that spoke XML, I found that XML::Writer had the best combination of freedom and results. We did, however, abstract away the common and repetitive parts. On 1/24/06, Ranga Nathan [EMAIL PROTECTED] wrote: Given an XML schema, what would be the simplest way

Re: [Boston.pm] A webapp to build an XML file

2006-01-25 Thread Jeremy Muhlich
I think he meant a web-based editor for human input/editing of XML files. A quick search on Sourceforge provides this project: http://xmlwebgui.sourceforge.net/ -- Jeremy On Wed, 2006-01-25 at 09:31 -0500, Ian Langworth wrote: When I was building a REST interface that spoke XML, I found

[Boston.pm] A webapp to build an XML file

2006-01-24 Thread Ranga Nathan
Given an XML schema, what would be the simplest way to build an XML file via a web app? For each element and attribute, I can speficy the HTML element type (input, radio etc). Rather than start from scratch I would like to leverage something that exists. Thanks all