Hi Steffen,<br><br>I have CCed the OME users list, since your question is relevant to others.<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

what I described in my post (below) is not working. Let me give you an example, probably you will find my mistake.<br>
<br>
In the ome schema of 2009 (see <a href="http://www.openmicroscopy.org/Schemas/OME/2009-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2009-09</a>) you will find a tag called "MiddleName" in "Experimenter", which is not there in the schema of 2008.<br>


<br>
If you say<br>
<br>
<OME xmlns="<a href="http://www.openmicroscopy.org/Schemas/OME/2008-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2008-09</a>"  xmlns:ome2009="<a href="http://www.openmicroscopy.org/Schemas/OME/2009-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2009-09</a>" ....><br>


...<br>
<Experimenter ID="Experimenter:sillig"><br>
    <FirstName>Stefan</FirstName><br>
    <ome2009:MiddleName>Bernhard</ome2009:MiddleName><br>
    <LastName>Schnell</LastName><br>
    <Email><a href="mailto:xyz@mpimf.de">xyz@mpimf.de</a></Email><br>
    <Institution>MaxPlanckInstituteMF</Institution><br>
    <GroupRef ID="Group:Lightmicroscopy1"/><br>
</Experimenter><br>
...<br>
it will not be validated.<font color="#888888"><br>
</font></blockquote></div><br>In this case, I believe the problem is that the ome2009:MiddleName element needs to appear beneath an ome2009:Experimenter element (not an Experimenter from the 2008-09 schema).<br><br>Presumably, you do not actually want to mix and match two different OME schema versions (or if so, why?), but rather want to use your own custom schema along with OME. Take a look at how we mix and match between ome.xsd, SA.xsd and others—e.g.:<br>

<a href="http://www.openmicroscopy.org/Schemas/SA/2009-09/SA.xsd">http://www.openmicroscopy.org/Schemas/SA/2009-09/SA.xsd</a><br><br>Specifically, we import the base ome.xsd schema first:<br><xsd:import namespace="<a href="http://www.openmicroscopy.org/Schemas/OME/2009-09">http://www.openmicroscopy.org/Schemas/OME/2009-09</a>" schemaLocation="<a href="http://www.openmicroscopy.org/Schemas/OME/2009-09/ome.xsd">http://www.openmicroscopy.org/Schemas/OME/2009-09/ome.xsd</a>"/><br>

<br>If you use a similar procedure in your custom schema, you can create elements that can legally appear beneath an <OME>, <Image> or other element from the ome.xsd schema.<br><br>HTH,<br>Curtis<br><br><div class="gmail_quote">

On Tue, Dec 15, 2009 at 12:49 PM, Steffen Illig <span dir="ltr"><<a href="mailto:Steffen.Illig@gmx.net">Steffen.Illig@gmx.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hi Curtis,<br>
<br>
what I described in my post (below) is not working. Let me give you an example, probably you will find my mistake.<br>
<br>
In the ome schema of 2009 (see <a href="http://www.openmicroscopy.org/Schemas/OME/2009-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2009-09</a>) you will find a tag called "MiddleName" in "Experimenter", which is not there in the schema of 2008.<br>


<br>
If you say<br>
<br>
<OME xmlns="<a href="http://www.openmicroscopy.org/Schemas/OME/2008-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2008-09</a>"  xmlns:ome2009="<a href="http://www.openmicroscopy.org/Schemas/OME/2009-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2009-09</a>" ....><br>


...<br>
<Experimenter ID="Experimenter:sillig"><br>
    <FirstName>Stefan</FirstName><br>
    <ome2009:MiddleName>Bernhard</ome2009:MiddleName><br>
    <LastName>Schnell</LastName><br>
    <Email><a href="mailto:xyz@mpimf.de">xyz@mpimf.de</a></Email><br>
    <Institution>MaxPlanckInstituteMF</Institution><br>
    <GroupRef ID="Group:Lightmicroscopy1"/><br>
</Experimenter><br>
...<br>
it will not be validated.<br>
<br>
Regards Steffen<br>
<br>
<br>
-------- Original-Nachricht --------<br>
> Datum: Mon, 14 Dec 2009 01:22:53 -0600<br>
> Von: Curtis Rueden <<a href="mailto:ctrueden@wisc.edu">ctrueden@wisc.edu</a>><br>
> An: <a href="mailto:steffen.illig@gmx.net">steffen.illig@gmx.net</a><br>
> CC: Kevin Eliceiri <<a href="mailto:eliceiri@wisc.edu">eliceiri@wisc.edu</a>>, Andrew Patterson <<a href="mailto:ajpatterson@lifesci.dundee.ac.uk">ajpatterson@lifesci.dundee.ac.uk</a>><br>
> Betreff: Re: [General Contact] Possible to have own schema besides ome one?<br>
<div><div></div><div class="h5"><br>
> Hi Steffan,<br>
><br>
> just a short question: Is it possible to embed another schema next to the<br>
> > ome.xsd one to refer our needs?<br>
> > e.g: <OME xmlns="<a href="http://www.openmicroscopy.org/Schemas/OME/2008-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2008-09</a>"<br>
> > xmlns:OUR_LAB="<a href="http://xyz" target="_blank">http://xyz</a>" ...><br>
> > How do I do this?<br>
> ><br>
><br>
> Absolutely, you have the right idea. If you have created your own schema,<br>
> and are hosting it on your web server, you can indeed reference it in that<br>
> fashion. Then you just use the "OUR_LAB" namespace with elements from your<br>
> schema.<br>
><br>
> Of course, anything in your XML blocks not from the OME schema will likely<br>
> be ignored by Bio-Formats and other OME-compatible software.<br>
><br>
> Let us know on the OME users mailing list (<br>
> <a href="http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/" target="_blank">http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/</a>) if you<br>
> have<br>
> any problems with it.<br>
><br>
> -Curtis<br>
><br>
> On Mon, Dec 07, 2009 at 6:36 PM, <<a href="mailto:steffen.illig@gmx.net">steffen.illig@gmx.net</a>> wrote:<br>
> ><br>
> > Hi,<br>
> > just a short question: Is it possible to embed another schema next to<br>
> the<br>
> > ome.xsd one to refer our needs?<br>
> > e.g: <OME xmlns="<a href="http://www.openmicroscopy.org/Schemas/OME/2008-09" target="_blank">http://www.openmicroscopy.org/Schemas/OME/2008-09</a>"<br>
> > xmlns:OUR_LAB="<a href="http://xyz" target="_blank">http://xyz</a>" ...><br>
> > How do I do this?<br>
> > Regards, Steffen<br>
> ><br>
<br>
</div></div><font color="#888888">--<br>
GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!<br>
Jetzt freischalten unter <a href="http://portal.gmx.net/de/go/maxdome01" target="_blank">http://portal.gmx.net/de/go/maxdome01</a><br>
</font></blockquote></div><br>