0

In the Form Builder tool from Orbeon it's possible to specify a schema by uploading a XSD file.

But if we don't have the schema or we are too lazy to c reate it, is it possible to create dynamically the schema ?

The schema is needed for the use of the form datas in other systems like a Business Object universe.

Regards

user563864
  • 29
  • 3

2 Answers2

0

Orbeon Forms doesn't automatically generate schemas based on the forms you create in Form Builder; instead, as you noted, it is designed to consume a schema that you already have.

However, there are tools that do just that. You can find some mentioned on the answer to this question on how to generate an XSD schema from an XML instance document.

Community
  • 1
  • 1
avernet
  • 30,895
  • 44
  • 126
  • 163
-1

I am working on my own project called XsdFormEditor. Application will be able to show any XSD as a form in WinForms (95% done), Web (using Asp.Net MVC, 0% done), WPF (0% done). Idea is to load any XSD file, show it to user as a form, let user input some data and save data as XML. User will be also able to load default values to form from XML file. You can find it here: https://github.com/janstafa/XsdFormEditor

Simon
  • 3,235
  • 5
  • 36
  • 47
  • We'd prefer that you not copy and paste the same answer advertising your GitHub project in multiple questions. If the questions are indeed asking the same thing, answer one of them and flag the rest to be closed as duplicates of that. – Brad Larson Jun 28 '12 at 18:42
  • OK, I am sorry. I will fix it. – Simon Jun 28 '12 at 23:54