You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Sachin Patel <sp...@gmail.com> on 2005/10/04 18:55:30 UTC

partial revert on schema versioning changes??

Are applications containing plans that reference the old namespace still 
supported since the schema versioning changes went in?

When versioning the schemas, shouldn't just renaming the file and 
setting the version attribute for the schema be all that is necessary?.  
Why was it necessary for all the uris to change as well to include the 
"-1.0" suffix?  Could we remove this in HEAD?

I bring this up (a little late) because tooling build is broken at the 
moment due to these uri name changes.  EMF uses the namespace uri to 
generate the package names for the model.  EMF doesn't do a great job of 
processing uri's containing non alpha or numeric characters and now all 
the generated packaged names contain segments such as "_1". All the code 
that reference this generated model code no longer compile due to these 
package renames.  Also there are some other problems, such as the 
generated class names for some of the EMF specific classes aren't named 
correctly to convention thus making it very error prone and difficult to 
code against.

As a temporary solution, I will probably need to branch off for m5, and 
do one of several workarounds, one of which is to have hand modified 
versions of the schema's and feed those to EMF rather then the original 
versioned ones.  (As long as the old uris are still supported). If not 
then, I'll have to take a much more painful approach.  Either way, would 
it be possible to revert back to the original uri's in HEAD?

Again, my apologies for not catching this sooner.

Sachin






Re: partial revert on schema versioning changes??

Posted by Sachin Patel <sp...@gmail.com>.
I'm fixed now... Thanks for the hint David!!

Sachin Patel wrote:
>
>>
>> XMLBeans solves this problem with a configuration file that lets you 
>> map namespaces to packages.  An example:
>>
>>
> Ok.  I think I should be able to react.  EMF allows you to do the 
> same.  This particular plugin is created 100% on the fly during the 
> build, just need to figure out if I'll still be able to do this or 
> not.  It may take a couple of hours, but I think I should hopefully be 
> ok, without even having to create a seperate branch (hopefully)
>
> Thanks.
>
> Sachin.
>

Re: partial revert on schema versioning changes??

Posted by Sachin Patel <sp...@gmail.com>.
>
> XMLBeans solves this problem with a configuration file that lets you 
> map namespaces to packages.  An example:
>
>
Ok.  I think I should be able to react.  EMF allows you to do the same.  
This particular plugin is created 100% on the fly during the build, just 
need to figure out if I'll still be able to do this or not.  It may take 
a couple of hours, but I think I should hopefully be ok, without even 
having to create a seperate branch (hopefully)

Thanks.

Sachin.

Re: partial revert on schema versioning changes??

Posted by David Jencks <da...@yahoo.com>.
On Oct 4, 2005, at 9:55 AM, Sachin Patel wrote:

> Are applications containing plans that reference the old namespace 
> still supported since the schema versioning changes went in?
>
> When versioning the schemas, shouldn't just renaming the file and 
> setting the version attribute for the schema be all that is 
> necessary?.  Why was it necessary for all the uris to change as well 
> to include the "-1.0" suffix?  Could we remove this in HEAD?

I don't think so.  I think we need schema namespaces that include the 
version information in some form.
>
> I bring this up (a little late) because tooling build is broken at the 
> moment due to these uri name changes.  EMF uses the namespace uri to 
> generate the package names for the model.  EMF doesn't do a great job 
> of processing uri's containing non alpha or numeric characters and now 
> all the generated packaged names contain segments such as "_1". All 
> the code that reference this generated model code no longer compile 
> due to these package renames.  Also there are some other problems, 
> such as the generated class names for some of the EMF specific classes 
> aren't named correctly to convention thus making it very error prone 
> and difficult to code against.

XMLBeans solves this problem with a configuration file that lets you 
map namespaces to packages.  An example:

<xb:config xmlns:xb="http://www.bea.com/2002/09/xbean/config"
     >

     <xb:namespace 
uri="http://geronimo.apache.org/xml/ns/j2ee/connector-1.0">
         <xb:package>org.apache.geronimo.xbeans.geronimo</xb:package>
         <xb:prefix>Ger</xb:prefix>
     </xb:namespace>


</xb:config>

I think namespaces with non-alpha characters are a fact of life and EMF 
should support them.
>
> As a temporary solution, I will probably need to branch off for m5, 
> and do one of several workarounds, one of which is to have hand 
> modified versions of the schema's and feed those to EMF rather then 
> the original versioned ones.  (As long as the old uris are still 
> supported). If not then, I'll have to take a much more painful 
> approach.  Either way, would it be possible to revert back to the 
> original uri's in HEAD?

I would rather not.  I think that using de-versioned copies of the 
schemas is your best bet for now, but I really think the only 
reasonable long term solution is to make EMF more flexible.

thanks
david jencks

>
> Again, my apologies for not catching this sooner.
>
> Sachin
>
>
>
>
>