We defined a data structure in a UML class diagram, and this data structure will be part of an interface between the E2E Bridge and an Oracle-based ERP system.
Basically the E2E Bridge will call a stored procedure and us an XML String / Blob (classToXml) as input parameter to this stored procedure (as mentioned in http://blog.e2ebridge.com/topic/oracle-database-enabled-publish-subscribe-messaging/)
Now we’d like to create an XSD for this XML structure, in order to establish a formal interface definition, and so that the XML can be validated on ERP side.
I know one way to make the E2E Bridge produce an XSD: exposing the data structure within a doc/literal style web service.
Is there another convenient way?
If possible, I’d like to avoid namespaces to keep things simple. Any objections?