Tagged Questions
The multiple-schema tag has no wiki summary.
2
votes
2answers
363 views
PHP XML Validation
What's the best way to validate an XML file (or a portion of it) against multiple XSD files?
For example, I have the following schema for a configuration loader:
<xsd:schema ...
1
vote
2answers
255 views
EF: Cross edmx (same DB) linq-to-entites query
How can I use two EDMXs, in separate assemblies, yet above the SAME database,
to create a linq-to-entities query that uses them both?
E.g.
This is what I am trying to do:
using (var context1 = new ...
1
vote
3answers
277 views
Is it possible to validate XML against multiple schemas in PHP?
I'm wondering if it is possible to validate xml against multiple schemas in PHP or I have to merge my schemas somehow.
Thanks for an answer!
0
votes
2answers
638 views
Importing and using external schema using XML Beans
I have a bit of a problem. I wrote an API a long time ago for our production system, and it used Apache XML Beans. The schema was homogeneous (ie no imports, everything was from within the same ...