Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF » [Teneo] No longer need EMFTupelizer override?
[Teneo] No longer need EMFTupelizer override? [message #431256] Mon, 06 July 2009 16:13 Go to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

I have updated to Teneo 1.1.1 and Galileo. Based on a previous message
here I built an override class for the EMFTupelizer ( I cannot even
remember why now...).

When I upgraded the import
org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with it
the interface used here:
proxyInterfaces.add(TeneoInternalEObject.class);

I could not find the Javadoc for Teneo online. where has
TeneoInternalEObject gone?

Thx.

David
Re: [Teneo] No longer need EMFTupelizer override? [message #431257 is a reply to message #431256] Mon, 06 July 2009 17:08 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
It is still there though, see line 218 in the EMFTuplizer. This is related to a very detailed thing:
This interface ensures that the cglib proxyfactory does not encounter a security exception
because the EMF InternalEObject is signed with a different signature.

The TeneoInternalEObject is located in a separate jar file inside of org.eclipse.emf.teneo.hibernate
(org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it from being signed by the build process.

gr. Martin


David Wynter wrote:
> Hi,
>
> I have updated to Teneo 1.1.1 and Galileo. Based on a previous message
> here I built an override class for the EMFTupelizer ( I cannot even
> remember why now...).
>
> When I upgraded the import
> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with it
> the interface used here:
> proxyInterfaces.add(TeneoInternalEObject.class);
>
> I could not find the Javadoc for Teneo online. where has
> TeneoInternalEObject gone?
>
> Thx.
>
> David


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431268 is a reply to message #431257] Tue, 07 July 2009 08:04 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

That jar you mention does not appear to be in the std install of Galileo
with EMF? org.eclipse.emf.teneo.hibernate.extra.jar

Where do I get it from?

Thx.

David

Martin Taal wrote:
> Hi David,
> It is still there though, see line 218 in the EMFTuplizer. This is
> related to a very detailed thing:
> This interface ensures that the cglib proxyfactory does not encounter a
> security exception
> because the EMF InternalEObject is signed with a different signature.
>
> The TeneoInternalEObject is located in a separate jar file inside of
> org.eclipse.emf.teneo.hibernate
> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it from
> being signed by the build process.
>
> gr. Martin
>
>
> David Wynter wrote:
>> Hi,
>>
>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous message
>> here I built an override class for the EMFTupelizer ( I cannot even
>> remember why now...).
>>
>> When I upgraded the import
>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with it
>> the interface used here:
>> proxyInterfaces.add(TeneoInternalEObject.class);
>>
>> I could not find the Javadoc for Teneo online. where has
>> TeneoInternalEObject gone?
>>
>> Thx.
>>
>> David
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431269 is a reply to message #431268] Tue, 07 July 2009 08:15 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file. Afaics the package
(org.eclipse.emf.teneo.hibernate.mapping.internal) is exported by that plugin.

gr. Martin

David Wynter wrote:
> Hi,
>
> That jar you mention does not appear to be in the std install of Galileo
> with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>
> Where do I get it from?
>
> Thx.
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> It is still there though, see line 218 in the EMFTuplizer. This is
>> related to a very detailed thing:
>> This interface ensures that the cglib proxyfactory does not encounter
>> a security exception
>> because the EMF InternalEObject is signed with a different signature.
>>
>> The TeneoInternalEObject is located in a separate jar file inside of
>> org.eclipse.emf.teneo.hibernate
>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it from
>> being signed by the build process.
>>
>> gr. Martin
>>
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>> message here I built an override class for the EMFTupelizer ( I
>>> cannot even remember why now...).
>>>
>>> When I upgraded the import
>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with it
>>> the interface used here:
>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>
>>> I could not find the Javadoc for Teneo online. where has
>>> TeneoInternalEObject gone?
>>>
>>> Thx.
>>>
>>> David
>>
>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431270 is a reply to message #431269] Tue, 07 July 2009 08:34 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

That explains it. I do not have that plugin in the Galileo install,
org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but not
org.eclipse.emf.teneo.hibernate. In fact the only plugins listed are

org.eclipse.emf.teneo.hibernate.eclipse
org.eclipse.emf.teneo.hibernate.eclipse.source
org.eclipse.emf.teneo.hibernate.mapper.source
org.eclipse.emf.teneo.hibernate.hibernate.source

I did an update of Teneo Hibernate and it tells me that it is already
installed, I assume it checks all the jars.

Ideas?

David

Martin Taal wrote:
> Hi David,
> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file. Afaics
> the package (org.eclipse.emf.teneo.hibernate.mapping.internal) is
> exported by that plugin.
>
> gr. Martin
>
> David Wynter wrote:
>> Hi,
>>
>> That jar you mention does not appear to be in the std install of
>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>
>> Where do I get it from?
>>
>> Thx.
>>
>> David
>>
>> Martin Taal wrote:
>>> Hi David,
>>> It is still there though, see line 218 in the EMFTuplizer. This is
>>> related to a very detailed thing:
>>> This interface ensures that the cglib proxyfactory does not encounter
>>> a security exception
>>> because the EMF InternalEObject is signed with a different signature.
>>>
>>> The TeneoInternalEObject is located in a separate jar file inside of
>>> org.eclipse.emf.teneo.hibernate
>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it from
>>> being signed by the build process.
>>>
>>> gr. Martin
>>>
>>>
>>> David Wynter wrote:
>>>> Hi,
>>>>
>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>> message here I built an override class for the EMFTupelizer ( I
>>>> cannot even remember why now...).
>>>>
>>>> When I upgraded the import
>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with
>>>> it the interface used here:
>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>
>>>> I could not find the Javadoc for Teneo online. where has
>>>> TeneoInternalEObject gone?
>>>>
>>>> Thx.
>>>>
>>>> David
>>>
>>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431271 is a reply to message #431270] Tue, 07 July 2009 08:45 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

I manually added org.eclipse.emf.teneo.hibernate as a plugin dependency
in MANIFEST.MF, it did not complain. But when I show the plugin
dependencies it does not include the
org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
cannot be resolved to a type. when I click "Find unused dependencies" it
finds org.eclipse.emf.teneo.hibenate?

Thx.

David



David Wynter wrote:
> Hi,
>
> That explains it. I do not have that plugin in the Galileo install,
> org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but not
> org.eclipse.emf.teneo.hibernate. In fact the only plugins listed are
>
> org.eclipse.emf.teneo.hibernate.eclipse
> org.eclipse.emf.teneo.hibernate.eclipse.source
> org.eclipse.emf.teneo.hibernate.mapper.source
> org.eclipse.emf.teneo.hibernate.hibernate.source
>
> I did an update of Teneo Hibernate and it tells me that it is already
> installed, I assume it checks all the jars.
>
> Ideas?
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>> Afaics the package (org.eclipse.emf.teneo.hibernate.mapping.internal)
>> is exported by that plugin.
>>
>> gr. Martin
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> That jar you mention does not appear to be in the std install of
>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>
>>> Where do I get it from?
>>>
>>> Thx.
>>>
>>> David
>>>
>>> Martin Taal wrote:
>>>> Hi David,
>>>> It is still there though, see line 218 in the EMFTuplizer. This is
>>>> related to a very detailed thing:
>>>> This interface ensures that the cglib proxyfactory does not
>>>> encounter a security exception
>>>> because the EMF InternalEObject is signed with a different signature.
>>>>
>>>> The TeneoInternalEObject is located in a separate jar file inside of
>>>> org.eclipse.emf.teneo.hibernate
>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it from
>>>> being signed by the build process.
>>>>
>>>> gr. Martin
>>>>
>>>>
>>>> David Wynter wrote:
>>>>> Hi,
>>>>>
>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>> message here I built an override class for the EMFTupelizer ( I
>>>>> cannot even remember why now...).
>>>>>
>>>>> When I upgraded the import
>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with
>>>>> it the interface used here:
>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>
>>>>> I could not find the Javadoc for Teneo online. where has
>>>>> TeneoInternalEObject gone?
>>>>>
>>>>> Thx.
>>>>>
>>>>> David
>>>>
>>>>
>>
>>
Re: [Teneo] No longer need EMFTupelizer override? [message #431273 is a reply to message #431271] Tue, 07 July 2009 09:29 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar file in org.eclipse.emf.teneo.hibernate. This package
which contains the TeneoInternalEOject is org.eclipse.emf.teneo.hibernate.mapping.internal. This package is exported by
the org.eclipse.emf.teneo.hibernate plugin. So I would hope that after adding the org.eclipse.emf.teneo.hibernate plugin
to the dependency that you can use the TeneoInternalEObject.... Or can you try import packages with the
org.eclipse.emf.teneo.hibernate.mapping.internal package?

gr. Martin

David Wynter wrote:
> Hi,
>
> I manually added org.eclipse.emf.teneo.hibernate as a plugin dependency
> in MANIFEST.MF, it did not complain. But when I show the plugin
> dependencies it does not include the
> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
> cannot be resolved to a type. when I click "Find unused dependencies" it
> finds org.eclipse.emf.teneo.hibenate?
>
> Thx.
>
> David
>
>
>
> David Wynter wrote:
>> Hi,
>>
>> That explains it. I do not have that plugin in the Galileo install,
>> org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but not
>> org.eclipse.emf.teneo.hibernate. In fact the only plugins listed are
>>
>> org.eclipse.emf.teneo.hibernate.eclipse
>> org.eclipse.emf.teneo.hibernate.eclipse.source
>> org.eclipse.emf.teneo.hibernate.mapper.source
>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>
>> I did an update of Teneo Hibernate and it tells me that it is already
>> installed, I assume it checks all the jars.
>>
>> Ideas?
>>
>> David
>>
>> Martin Taal wrote:
>>> Hi David,
>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>>> Afaics the package (org.eclipse.emf.teneo.hibernate.mapping.internal)
>>> is exported by that plugin.
>>>
>>> gr. Martin
>>>
>>> David Wynter wrote:
>>>> Hi,
>>>>
>>>> That jar you mention does not appear to be in the std install of
>>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>
>>>> Where do I get it from?
>>>>
>>>> Thx.
>>>>
>>>> David
>>>>
>>>> Martin Taal wrote:
>>>>> Hi David,
>>>>> It is still there though, see line 218 in the EMFTuplizer. This is
>>>>> related to a very detailed thing:
>>>>> This interface ensures that the cglib proxyfactory does not
>>>>> encounter a security exception
>>>>> because the EMF InternalEObject is signed with a different signature.
>>>>>
>>>>> The TeneoInternalEObject is located in a separate jar file inside
>>>>> of org.eclipse.emf.teneo.hibernate
>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it
>>>>> from being signed by the build process.
>>>>>
>>>>> gr. Martin
>>>>>
>>>>>
>>>>> David Wynter wrote:
>>>>>> Hi,
>>>>>>
>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>>> message here I built an override class for the EMFTupelizer ( I
>>>>>> cannot even remember why now...).
>>>>>>
>>>>>> When I upgraded the import
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and with
>>>>>> it the interface used here:
>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>
>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>> TeneoInternalEObject gone?
>>>>>>
>>>>>> Thx.
>>>>>>
>>>>>> David
>>>>>
>>>>>
>>>
>>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431275 is a reply to message #431273] Tue, 07 July 2009 10:47 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi again,

When I use the auto complete on the import for that
org.eclipse.emf.teneo.hibernate.mapping.internal package it does not
show up.

Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
org.eclipse.emf.teneo.hibernate.mapping.elist,
org.eclipse.emf.teneo.hibernate.mapping.identifier and
org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.

So I opened the jar file and there is not internal under mapping! So it
must be in a different jar? I am looking at
org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar

Thx.

David

Martin Taal wrote:
> Hi David,
> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar file in
> org.eclipse.emf.teneo.hibernate. This package which contains the
> TeneoInternalEOject is org.eclipse.emf.teneo.hibernate.mapping.internal.
> This package is exported by the org.eclipse.emf.teneo.hibernate plugin.
> So I would hope that after adding the org.eclipse.emf.teneo.hibernate
> plugin to the dependency that you can use the TeneoInternalEObject....
> Or can you try import packages with the
> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>
> gr. Martin
>
> David Wynter wrote:
>> Hi,
>>
>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>> dependency in MANIFEST.MF, it did not complain. But when I show the
>> plugin dependencies it does not include the
>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
>> cannot be resolved to a type. when I click "Find unused dependencies"
>> it finds org.eclipse.emf.teneo.hibenate?
>>
>> Thx.
>>
>> David
>>
>>
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> That explains it. I do not have that plugin in the Galileo install,
>>> org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but not
>>> org.eclipse.emf.teneo.hibernate. In fact the only plugins listed are
>>>
>>> org.eclipse.emf.teneo.hibernate.eclipse
>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>
>>> I did an update of Teneo Hibernate and it tells me that it is already
>>> installed, I assume it checks all the jars.
>>>
>>> Ideas?
>>>
>>> David
>>>
>>> Martin Taal wrote:
>>>> Hi David,
>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>>>> Afaics the package
>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported by
>>>> that plugin.
>>>>
>>>> gr. Martin
>>>>
>>>> David Wynter wrote:
>>>>> Hi,
>>>>>
>>>>> That jar you mention does not appear to be in the std install of
>>>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>
>>>>> Where do I get it from?
>>>>>
>>>>> Thx.
>>>>>
>>>>> David
>>>>>
>>>>> Martin Taal wrote:
>>>>>> Hi David,
>>>>>> It is still there though, see line 218 in the EMFTuplizer. This is
>>>>>> related to a very detailed thing:
>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>> encounter a security exception
>>>>>> because the EMF InternalEObject is signed with a different signature.
>>>>>>
>>>>>> The TeneoInternalEObject is located in a separate jar file inside
>>>>>> of org.eclipse.emf.teneo.hibernate
>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it
>>>>>> from being signed by the build process.
>>>>>>
>>>>>> gr. Martin
>>>>>>
>>>>>>
>>>>>> David Wynter wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>>>> message here I built an override class for the EMFTupelizer ( I
>>>>>>> cannot even remember why now...).
>>>>>>>
>>>>>>> When I upgraded the import
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and
>>>>>>> with it the interface used here:
>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>
>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>> TeneoInternalEObject gone?
>>>>>>>
>>>>>>> Thx.
>>>>>>>
>>>>>>> David
>>>>>>
>>>>>>
>>>>
>>>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431276 is a reply to message #431275] Tue, 07 July 2009 10:50 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
And do you see the extra jar file in the plugin itself? The TeneoInternalEObject is located in that jar file.

The strange thing is that if I try this with the development projects it works (importing the TeneoInternalEObject in
another class in another plugin is possible).

gr. Martin

David Wynter wrote:
> Hi again,
>
> When I use the auto complete on the import for that
> org.eclipse.emf.teneo.hibernate.mapping.internal package it does not
> show up.
>
> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
> org.eclipse.emf.teneo.hibernate.mapping.elist,
> org.eclipse.emf.teneo.hibernate.mapping.identifier and
> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>
> So I opened the jar file and there is not internal under mapping! So it
> must be in a different jar? I am looking at
> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>
> Thx.
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar file
>> in org.eclipse.emf.teneo.hibernate. This package which contains the
>> TeneoInternalEOject is
>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I would
>> hope that after adding the org.eclipse.emf.teneo.hibernate plugin to
>> the dependency that you can use the TeneoInternalEObject.... Or can
>> you try import packages with the
>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>
>> gr. Martin
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>>>

plugin dependencies it does not include the
>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
>>> cannot be resolved to a type. when I click "Find unused dependencies"
>>> it finds org.eclipse.emf.teneo.hibenate?
>>>
>>> Thx.
>>>
>>> David
>>>
>>>
>>>
>>> David Wynter wrote:
>>>> Hi,
>>>>
>>>> That explains it. I do not have that plugin in the Galileo install,
>>>> org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but not
>>>> org.eclipse.emf.teneo.hibernate. In fact the only plugins listed are
>>>>
>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>
>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>> already installed, I assume it checks all the jars.
>>>>
>>>> Ideas?
>>>>
>>>> David
>>>>
>>>> Martin Taal wrote:
>>>>> Hi David,
>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>>>>> Afaics the package
>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported by
>>>>> that plugin.
>>>>>
>>>>> gr. Martin
>>>>>
>>>>> David Wynter wrote:
>>>>>> Hi,
>>>>>>
>>>>>> That jar you mention does not appear to be in the std install of
>>>>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>
>>>>>> Where do I get it from?
>>>>>>
>>>>>> Thx.
>>>>>>
>>>>>> David
>>>>>>
>>>>>> Martin Taal wrote:
>>>>>>> Hi David,
>>>>>>> It is still there though, see line 218 in the EMFTuplizer. This
>>>>>>> is related to a very detailed thing:
>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>> encounter a security exception
>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>> signature.
>>>>>>>
>>>>>>> The TeneoInternalEObject is located in a separate jar file inside
>>>>>>> of org.eclipse.emf.teneo.hibernate
>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it
>>>>>>> from being signed by the build process.
>>>>>>>
>>>>>>> gr. Martin
>>>>>>>
>>>>>>>
>>>>>>> David Wynter wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>>>>> message here I built an override class for the EMFTupelizer ( I
>>>>>>>> cannot even remember why now...).
>>>>>>>>
>>>>>>>> When I upgraded the import
>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and
>>>>>>>> with it the interface used here:
>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>
>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>
>>>>>>>> Thx.
>>>>>>>>
>>>>>>>> David
>>>>>>>
>>>>>>>
>>>>>
>>>>>
>>
>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431278 is a reply to message #431276] Tue, 07 July 2009 10:59 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

Yes I should have read your response more carefully. It is in the extras
jar file. But it does not seem to be exported, I am on Ubuntu 9.0.4 now
not Windoze as previous, maybe that is a difference?

David

Martin Taal wrote:
> Hi David,
> And do you see the extra jar file in the plugin itself? The
> TeneoInternalEObject is located in that jar file.
>
> The strange thing is that if I try this with the development projects it
> works (importing the TeneoInternalEObject in another class in another
> plugin is possible).
>
> gr. Martin
>
> David Wynter wrote:
>> Hi again,
>>
>> When I use the auto complete on the import for that
>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does not
>> show up.
>>
>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>>
>> So I opened the jar file and there is not internal under mapping! So
>> it must be in a different jar? I am looking at
>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>
>> Thx.
>>
>> David
>>
>> Martin Taal wrote:
>>> Hi David,
>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar file
>>> in org.eclipse.emf.teneo.hibernate. This package which contains the
>>> TeneoInternalEOject is
>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I would
>>> hope that after adding the org.eclipse.emf.teneo.hibernate plugin to
>>> the dependency that you can use the TeneoInternalEObject.... Or can
>>> you try import packages with the
>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>
>>> gr. Martin
>>>
>>> David Wynter wrote:
>>>> Hi,
>>>>
>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>
> plugin dependencies it does not include the
>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
>>>> cannot be resolved to a type. when I click "Find unused
>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>
>>>> Thx.
>>>>
>>>> David
>>>>
>>>>
>>>>
>>>> David Wynter wrote:
>>>>> Hi,
>>>>>
>>>>> That explains it. I do not have that plugin in the Galileo install,
>>>>> org.eclipse.emf.teneo.hibernate.eclipse is there as a plugin but
>>>>> not org.eclipse.emf.teneo.hibernate. In fact the only plugins
>>>>> listed are
>>>>>
>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>
>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>> already installed, I assume it checks all the jars.
>>>>>
>>>>> Ideas?
>>>>>
>>>>> David
>>>>>
>>>>> Martin Taal wrote:
>>>>>> Hi David,
>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>>>>>> Afaics the package
>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported by
>>>>>> that plugin.
>>>>>>
>>>>>> gr. Martin
>>>>>>
>>>>>> David Wynter wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> That jar you mention does not appear to be in the std install of
>>>>>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>
>>>>>>> Where do I get it from?
>>>>>>>
>>>>>>> Thx.
>>>>>>>
>>>>>>> David
>>>>>>>
>>>>>>> Martin Taal wrote:
>>>>>>>> Hi David,
>>>>>>>> It is still there though, see line 218 in the EMFTuplizer. This
>>>>>>>> is related to a very detailed thing:
>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>> encounter a security exception
>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>> signature.
>>>>>>>>
>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it
>>>>>>>> from being signed by the build process.
>>>>>>>>
>>>>>>>> gr. Martin
>>>>>>>>
>>>>>>>>
>>>>>>>> David Wynter wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>>>>>> message here I built an override class for the EMFTupelizer ( I
>>>>>>>>> cannot even remember why now...).
>>>>>>>>>
>>>>>>>>> When I upgraded the import
>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and
>>>>>>>>> with it the interface used here:
>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>
>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>
>>>>>>>>> Thx.
>>>>>>>>>
>>>>>>>>> David
>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>>
>>>
>>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431279 is a reply to message #431278] Tue, 07 July 2009 11:07 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
I am on Ubuntu to :-)
I think the problem is that the TeneoInternalEObject is in a jar inside the plugin and the plugin is not unpacked.
Normally this is not a problem (who wants to get to this terrible object anyway ;-). But now I can see that you are
stuck with this.
Can you unzip the org.eclipse.emf.teneo.hibernate plugin? in the plugins directory (so it becomes a folder)? and then
remove the org.eclipse.emf.teneo.hibernate.jar file (so that only the folder remains), and then restart Eclipse with the
-clean in the eclipse.ini file.

gr. Martin

David Wynter wrote:
> Hi,
>
> Yes I should have read your response more carefully. It is in the extras
> jar file. But it does not seem to be exported, I am on Ubuntu 9.0.4 now
> not Windoze as previous, maybe that is a difference?
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> And do you see the extra jar file in the plugin itself? The
>> TeneoInternalEObject is located in that jar file.
>>
>> The strange thing is that if I try this with the development projects
>> it works (importing the TeneoInternalEObject in another class in
>> another plugin is possible).
>>
>> gr. Martin
>>
>> David Wynter wrote:
>>> Hi again,
>>>
>>> When I use the auto complete on the import for that
>>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does not
>>> show up.
>>>
>>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>>> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>>>
>>> So I opened the jar file and there is not internal under mapping! So
>>> it must be in a different jar? I am looking at
>>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>>
>>> Thx.
>>>
>>> David
>>>
>>> Martin Taal wrote:
>>>> Hi David,
>>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar file
>>>> in org.eclipse.emf.teneo.hibernate. This package which contains the
>>>> TeneoInternalEOject is
>>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>>>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I would
>>>> hope that after adding the org.eclipse.emf.teneo.hibernate plugin to
>>>> the dependency that you can use the TeneoInternalEObject.... Or can
>>>> you try import packages with the
>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>>
>>>> gr. Martin
>>>>
>>>> David Wynter wrote:
>>>>> Hi,
>>>>>
>>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>>
>> plugin dependencies it does not include the
>>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject still
>>>>> cannot be resolved to a type. when I click "Find unused
>>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>>
>>>>> Thx.
>>>>>
>>>>> David
>>>>>
>>>>>
>>>>>
>>>>> David Wynter wrote:
>>>>>> Hi,
>>>>>>
>>>>>> That explains it. I do not have that plugin in the Galileo
>>>>>> install, org.eclipse.emf.teneo.hibernate.eclipse is there as a
>>>>>> plugin but not org.eclipse.emf.teneo.hibernate. In fact the only
>>>>>> plugins listed are
>>>>>>
>>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>>
>>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>>> already installed, I assume it checks all the jars.
>>>>>>
>>>>>> Ideas?
>>>>>>
>>>>>> David
>>>>>>
>>>>>> Martin Taal wrote:
>>>>>>> Hi David,
>>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar file.
>>>>>>> Afaics the package
>>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported by
>>>>>>> that plugin.
>>>>>>>
>>>>>>> gr. Martin
>>>>>>>
>>>>>>> David Wynter wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> That jar you mention does not appear to be in the std install of
>>>>>>>> Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>>
>>>>>>>> Where do I get it from?
>>>>>>>>
>>>>>>>> Thx.
>>>>>>>>
>>>>>>>> David
>>>>>>>>
>>>>>>>> Martin Taal wrote:
>>>>>>>>> Hi David,
>>>>>>>>> It is still there though, see line 218 in the EMFTuplizer. This
>>>>>>>>> is related to a very detailed thing:
>>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>>> encounter a security exception
>>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>>> signature.
>>>>>>>>>
>>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent it
>>>>>>>>> from being signed by the build process.
>>>>>>>>>
>>>>>>>>> gr. Martin
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> David Wynter wrote:
>>>>>>>>>> Hi,
>>>>>>>>>>
>>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a previous
>>>>>>>>>> message here I built an override class for the EMFTupelizer (
>>>>>>>>>> I cannot even remember why now...).
>>>>>>>>>>
>>>>>>>>>> When I upgraded the import
>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and
>>>>>>>>>> with it the interface used here:
>>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>>
>>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>>
>>>>>>>>>> Thx.
>>>>>>>>>>
>>>>>>>>>> David
>>>>>>>>>
>>>>>>>>>
>>>>>>>
>>>>>>>
>>>>
>>>>
>>
>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431282 is a reply to message #431279] Tue, 07 July 2009 13:44 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

I unpacked the whole teneo.hibernate jar and linked to the extras jar as
a variable. But it stopped the plugin working as a plugin.

I also tried unpacking just the extras jar and putting that in the
plugin directory and linking to that as a variable, that worked.

David

Martin Taal wrote:
> I am on Ubuntu to :-)
> I think the problem is that the TeneoInternalEObject is in a jar inside
> the plugin and the plugin is not unpacked. Normally this is not a
> problem (who wants to get to this terrible object anyway ;-). But now I
> can see that you are stuck with this.
> Can you unzip the org.eclipse.emf.teneo.hibernate plugin? in the plugins
> directory (so it becomes a folder)? and then remove the
> org.eclipse.emf.teneo.hibernate.jar file (so that only the folder
> remains), and then restart Eclipse with the -clean in the eclipse.ini file.
>
> gr. Martin
>
> David Wynter wrote:
>> Hi,
>>
>> Yes I should have read your response more carefully. It is in the
>> extras jar file. But it does not seem to be exported, I am on Ubuntu
>> 9.0.4 now not Windoze as previous, maybe that is a difference?
>>
>> David
>>
>> Martin Taal wrote:
>>> Hi David,
>>> And do you see the extra jar file in the plugin itself? The
>>> TeneoInternalEObject is located in that jar file.
>>>
>>> The strange thing is that if I try this with the development projects
>>> it works (importing the TeneoInternalEObject in another class in
>>> another plugin is possible).
>>>
>>> gr. Martin
>>>
>>> David Wynter wrote:
>>>> Hi again,
>>>>
>>>> When I use the auto complete on the import for that
>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does not
>>>> show up.
>>>>
>>>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>>>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>>>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>>>> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>>>>
>>>> So I opened the jar file and there is not internal under mapping! So
>>>> it must be in a different jar? I am looking at
>>>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>>>
>>>> Thx.
>>>>
>>>> David
>>>>
>>>> Martin Taal wrote:
>>>>> Hi David,
>>>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar
>>>>> file in org.eclipse.emf.teneo.hibernate. This package which
>>>>> contains the TeneoInternalEOject is
>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>>>>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I would
>>>>> hope that after adding the org.eclipse.emf.teneo.hibernate plugin
>>>>> to the dependency that you can use the TeneoInternalEObject.... Or
>>>>> can you try import packages with the
>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>>>
>>>>> gr. Martin
>>>>>
>>>>> David Wynter wrote:
>>>>>> Hi,
>>>>>>
>>>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>>>
>>> plugin dependencies it does not include the
>>>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject
>>>>>> still cannot be resolved to a type. when I click "Find unused
>>>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>>>
>>>>>> Thx.
>>>>>>
>>>>>> David
>>>>>>
>>>>>>
>>>>>>
>>>>>> David Wynter wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> That explains it. I do not have that plugin in the Galileo
>>>>>>> install, org.eclipse.emf.teneo.hibernate.eclipse is there as a
>>>>>>> plugin but not org.eclipse.emf.teneo.hibernate. In fact the only
>>>>>>> plugins listed are
>>>>>>>
>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>>>
>>>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>>>> already installed, I assume it checks all the jars.
>>>>>>>
>>>>>>> Ideas?
>>>>>>>
>>>>>>> David
>>>>>>>
>>>>>>> Martin Taal wrote:
>>>>>>>> Hi David,
>>>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar
>>>>>>>> file. Afaics the package
>>>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported
>>>>>>>> by that plugin.
>>>>>>>>
>>>>>>>> gr. Martin
>>>>>>>>
>>>>>>>> David Wynter wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> That jar you mention does not appear to be in the std install
>>>>>>>>> of Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>>>
>>>>>>>>> Where do I get it from?
>>>>>>>>>
>>>>>>>>> Thx.
>>>>>>>>>
>>>>>>>>> David
>>>>>>>>>
>>>>>>>>> Martin Taal wrote:
>>>>>>>>>> Hi David,
>>>>>>>>>> It is still there though, see line 218 in the EMFTuplizer.
>>>>>>>>>> This is related to a very detailed thing:
>>>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>>>> encounter a security exception
>>>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>>>> signature.
>>>>>>>>>>
>>>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent
>>>>>>>>>> it from being signed by the build process.
>>>>>>>>>>
>>>>>>>>>> gr. Martin
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>> Hi,
>>>>>>>>>>>
>>>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a
>>>>>>>>>>> previous message here I built an override class for the
>>>>>>>>>>> EMFTupelizer ( I cannot even remember why now...).
>>>>>>>>>>>
>>>>>>>>>>> When I upgraded the import
>>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone and
>>>>>>>>>>> with it the interface used here:
>>>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>>>
>>>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>>>
>>>>>>>>>>> Thx.
>>>>>>>>>>>
>>>>>>>>>>> David
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>
>>>>>
>>>
>>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431288 is a reply to message #431282] Tue, 07 July 2009 15:15 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
Hmm, this does not sound like a long-term strategy. I am wondering if there is another way to do this. To understand the
background, for what reason do you extend the EMFTuplizer?

gr. Martin

David Wynter wrote:
> Hi,
>
> I unpacked the whole teneo.hibernate jar and linked to the extras jar as
> a variable. But it stopped the plugin working as a plugin.
>
> I also tried unpacking just the extras jar and putting that in the
> plugin directory and linking to that as a variable, that worked.
>
> David
>
> Martin Taal wrote:
>> I am on Ubuntu to :-)
>> I think the problem is that the TeneoInternalEObject is in a jar
>> inside the plugin and the plugin is not unpacked. Normally this is not
>> a problem (who wants to get to this terrible object anyway ;-). But
>> now I can see that you are stuck with this.
>> Can you unzip the org.eclipse.emf.teneo.hibernate plugin? in the
>> plugins directory (so it becomes a folder)? and then remove the
>> org.eclipse.emf.teneo.hibernate.jar file (so that only the folder
>> remains), and then restart Eclipse with the -clean in the eclipse.ini
>> file.
>>
>> gr. Martin
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> Yes I should have read your response more carefully. It is in the
>>> extras jar file. But it does not seem to be exported, I am on Ubuntu
>>> 9.0.4 now not Windoze as previous, maybe that is a difference?
>>>
>>> David
>>>
>>> Martin Taal wrote:
>>>> Hi David,
>>>> And do you see the extra jar file in the plugin itself? The
>>>> TeneoInternalEObject is located in that jar file.
>>>>
>>>> The strange thing is that if I try this with the development
>>>> projects it works (importing the TeneoInternalEObject in another
>>>> class in another plugin is possible).
>>>>
>>>> gr. Martin
>>>>
>>>> David Wynter wrote:
>>>>> Hi again,
>>>>>
>>>>> When I use the auto complete on the import for that
>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does
>>>>> not show up.
>>>>>
>>>>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>>>>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>>>>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>>>>> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>>>>>
>>>>> So I opened the jar file and there is not internal under mapping!
>>>>> So it must be in a different jar? I am looking at
>>>>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>>>>
>>>>> Thx.
>>>>>
>>>>> David
>>>>>
>>>>> Martin Taal wrote:
>>>>>> Hi David,
>>>>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar
>>>>>> file in org.eclipse.emf.teneo.hibernate. This package which
>>>>>> contains the TeneoInternalEOject is
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>>>>>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I would
>>>>>> hope that after adding the org.eclipse.emf.teneo.hibernate plugin
>>>>>> to the dependency that you can use the TeneoInternalEObject.... Or
>>>>>> can you try import packages with the
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>>>>
>>>>>> gr. Martin
>>>>>>
>>>>>> David Wynter wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>>>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>>>>
>>>> plugin dependencies it does not include the
>>>>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject
>>>>>>> still cannot be resolved to a type. when I click "Find unused
>>>>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>>>>
>>>>>>> Thx.
>>>>>>>
>>>>>>> David
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> David Wynter wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> That explains it. I do not have that plugin in the Galileo
>>>>>>>> install, org.eclipse.emf.teneo.hibernate.eclipse is there as a
>>>>>>>> plugin but not org.eclipse.emf.teneo.hibernate. In fact the only
>>>>>>>> plugins listed are
>>>>>>>>
>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>>>>
>>>>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>>>>> already installed, I assume it checks all the jars.
>>>>>>>>
>>>>>>>> Ideas?
>>>>>>>>
>>>>>>>> David
>>>>>>>>
>>>>>>>> Martin Taal wrote:
>>>>>>>>> Hi David,
>>>>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar
>>>>>>>>> file. Afaics the package
>>>>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported
>>>>>>>>> by that plugin.
>>>>>>>>>
>>>>>>>>> gr. Martin
>>>>>>>>>
>>>>>>>>> David Wynter wrote:
>>>>>>>>>> Hi,
>>>>>>>>>>
>>>>>>>>>> That jar you mention does not appear to be in the std install
>>>>>>>>>> of Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>>>>
>>>>>>>>>> Where do I get it from?
>>>>>>>>>>
>>>>>>>>>> Thx.
>>>>>>>>>>
>>>>>>>>>> David
>>>>>>>>>>
>>>>>>>>>> Martin Taal wrote:
>>>>>>>>>>> Hi David,
>>>>>>>>>>> It is still there though, see line 218 in the EMFTuplizer.
>>>>>>>>>>> This is related to a very detailed thing:
>>>>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>>>>> encounter a security exception
>>>>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>>>>> signature.
>>>>>>>>>>>
>>>>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent
>>>>>>>>>>> it from being signed by the build process.
>>>>>>>>>>>
>>>>>>>>>>> gr. Martin
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>>> Hi,
>>>>>>>>>>>>
>>>>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a
>>>>>>>>>>>> previous message here I built an override class for the
>>>>>>>>>>>> EMFTupelizer ( I cannot even remember why now...).
>>>>>>>>>>>>
>>>>>>>>>>>> When I upgraded the import
>>>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone
>>>>>>>>>>>> and with it the interface used here:
>>>>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>>>>
>>>>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>>>>
>>>>>>>>>>>> Thx.
>>>>>>>>>>>>
>>>>>>>>>>>> David
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>
>>>>>>
>>>>
>>>>
>>
>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431382 is a reply to message #431288] Wed, 08 July 2009 10:20 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

Back in Nov 18th 2008 I added a override class for EMFTuplizer. You
advised this because at the time Teneo was getting a CCE due to taking a
class out of an unordered List of some kind, I cannot find the email. I
searched the Release notes of all Teneo releases since then for the term
EMFTuplizer and could not find it, so am not sure whatever it was that
was wrong is now fixed.

I reverted to not use my override and use EMFTuplizer and I still get
the class not found error at runtime for EMFTuplizer. I have removed the
extras jar and the reference to it, back to a std install of Teneo 1.1.0.

I tried to update to Teneo 1.1.1 SDK but ended up in the usual
dependency hell that p2 is supposed to prevent. It is trying to install
the already install V1.1.0 and the V1.1.1 in the dropins directory at
the same time. Also comparing th eTeneo SDK 1.1.1 with an the EMF
Moidelling plugin?

I reverted to just the Teneo 1.1.1 runtime and the dropins does not get
deployed, I click update and it says nothing to deploy, what a pile of
crap p2 is. Take me back to the old UM, at least it worked.

So at the moment I am stalled.

David

Martin Taal wrote:
> Hi David,
> Hmm, this does not sound like a long-term strategy. I am wondering if
> there is another way to do this. To understand the background, for what
> reason do you extend the EMFTuplizer?
>
> gr. Martin
>
> David Wynter wrote:
>> Hi,
>>
>> I unpacked the whole teneo.hibernate jar and linked to the extras jar
>> as a variable. But it stopped the plugin working as a plugin.
>>
>> I also tried unpacking just the extras jar and putting that in the
>> plugin directory and linking to that as a variable, that worked.
>>
>> David
>>
>> Martin Taal wrote:
>>> I am on Ubuntu to :-)
>>> I think the problem is that the TeneoInternalEObject is in a jar
>>> inside the plugin and the plugin is not unpacked. Normally this is
>>> not a problem (who wants to get to this terrible object anyway ;-).
>>> But now I can see that you are stuck with this.
>>> Can you unzip the org.eclipse.emf.teneo.hibernate plugin? in the
>>> plugins directory (so it becomes a folder)? and then remove the
>>> org.eclipse.emf.teneo.hibernate.jar file (so that only the folder
>>> remains), and then restart Eclipse with the -clean in the eclipse.ini
>>> file.
>>>
>>> gr. Martin
>>>
>>> David Wynter wrote:
>>>> Hi,
>>>>
>>>> Yes I should have read your response more carefully. It is in the
>>>> extras jar file. But it does not seem to be exported, I am on Ubuntu
>>>> 9.0.4 now not Windoze as previous, maybe that is a difference?
>>>>
>>>> David
>>>>
>>>> Martin Taal wrote:
>>>>> Hi David,
>>>>> And do you see the extra jar file in the plugin itself? The
>>>>> TeneoInternalEObject is located in that jar file.
>>>>>
>>>>> The strange thing is that if I try this with the development
>>>>> projects it works (importing the TeneoInternalEObject in another
>>>>> class in another plugin is possible).
>>>>>
>>>>> gr. Martin
>>>>>
>>>>> David Wynter wrote:
>>>>>> Hi again,
>>>>>>
>>>>>> When I use the auto complete on the import for that
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does
>>>>>> not show up.
>>>>>>
>>>>>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>>>>>> org.eclipse.emf.teneo.hibernate.mapping.property show up as packages.
>>>>>>
>>>>>> So I opened the jar file and there is not internal under mapping!
>>>>>> So it must be in a different jar? I am looking at
>>>>>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>>>>>
>>>>>> Thx.
>>>>>>
>>>>>> David
>>>>>>
>>>>>> Martin Taal wrote:
>>>>>>> Hi David,
>>>>>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar
>>>>>>> file in org.eclipse.emf.teneo.hibernate. This package which
>>>>>>> contains the TeneoInternalEOject is
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package is
>>>>>>> exported by the org.eclipse.emf.teneo.hibernate plugin. So I
>>>>>>> would hope that after adding the org.eclipse.emf.teneo.hibernate
>>>>>>> plugin to the dependency that you can use the
>>>>>>> TeneoInternalEObject.... Or can you try import packages with the
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>>>>>
>>>>>>> gr. Martin
>>>>>>>
>>>>>>> David Wynter wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>>>>>> dependency in MANIFEST.MF, it did not complain. But when I show the
>>>>>
>>>>> plugin dependencies it does not include the
>>>>>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject
>>>>>>>> still cannot be resolved to a type. when I click "Find unused
>>>>>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>>>>>
>>>>>>>> Thx.
>>>>>>>>
>>>>>>>> David
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> David Wynter wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> That explains it. I do not have that plugin in the Galileo
>>>>>>>>> install, org.eclipse.emf.teneo.hibernate.eclipse is there as a
>>>>>>>>> plugin but not org.eclipse.emf.teneo.hibernate. In fact the
>>>>>>>>> only plugins listed are
>>>>>>>>>
>>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>>>>>
>>>>>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>>>>>> already installed, I assume it checks all the jars.
>>>>>>>>>
>>>>>>>>> Ideas?
>>>>>>>>>
>>>>>>>>> David
>>>>>>>>>
>>>>>>>>> Martin Taal wrote:
>>>>>>>>>> Hi David,
>>>>>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar
>>>>>>>>>> file. Afaics the package
>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is exported
>>>>>>>>>> by that plugin.
>>>>>>>>>>
>>>>>>>>>> gr. Martin
>>>>>>>>>>
>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>> Hi,
>>>>>>>>>>>
>>>>>>>>>>> That jar you mention does not appear to be in the std install
>>>>>>>>>>> of Galileo with EMF? org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>>>>>
>>>>>>>>>>> Where do I get it from?
>>>>>>>>>>>
>>>>>>>>>>> Thx.
>>>>>>>>>>>
>>>>>>>>>>> David
>>>>>>>>>>>
>>>>>>>>>>> Martin Taal wrote:
>>>>>>>>>>>> Hi David,
>>>>>>>>>>>> It is still there though, see line 218 in the EMFTuplizer.
>>>>>>>>>>>> This is related to a very detailed thing:
>>>>>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>>>>>> encounter a security exception
>>>>>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>>>>>> signature.
>>>>>>>>>>>>
>>>>>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to prevent
>>>>>>>>>>>> it from being signed by the build process.
>>>>>>>>>>>>
>>>>>>>>>>>> gr. Martin
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>>>> Hi,
>>>>>>>>>>>>>
>>>>>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a
>>>>>>>>>>>>> previous message here I built an override class for the
>>>>>>>>>>>>> EMFTupelizer ( I cannot even remember why now...).
>>>>>>>>>>>>>
>>>>>>>>>>>>> When I upgraded the import
>>>>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone
>>>>>>>>>>>>> and with it the interface used here:
>>>>>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>>>>>
>>>>>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>>>>>
>>>>>>>>>>>>> Thx.
>>>>>>>>>>>>>
>>>>>>>>>>>>> David
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>
>>>>>
>>>
>>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431391 is a reply to message #431382] Wed, 08 July 2009 10:38 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi David,
The latest build (5 minutes old) contains an unpacked teneo.hibernate plugin:
http://www.eclipse.org/modeling/emf/downloads/?project=teneo &showAll=1&hlbuild=M200907080536#M200907080536

As a tip, the last few times I installed plugins/features I did not put them in dropins anymore but just directly in the
eclipse installation (so that the files end up in features/plugins). That seemed to work.... (but no guarantees from my
side).

gr. Martin

David Wynter wrote:
> Hi,
>
> Back in Nov 18th 2008 I added a override class for EMFTuplizer. You
> advised this because at the time Teneo was getting a CCE due to taking a
> class out of an unordered List of some kind, I cannot find the email. I
> searched the Release notes of all Teneo releases since then for the term
> EMFTuplizer and could not find it, so am not sure whatever it was that
> was wrong is now fixed.
>
> I reverted to not use my override and use EMFTuplizer and I still get
> the class not found error at runtime for EMFTuplizer. I have removed the
> extras jar and the reference to it, back to a std install of Teneo 1.1.0.
>
> I tried to update to Teneo 1.1.1 SDK but ended up in the usual
> dependency hell that p2 is supposed to prevent. It is trying to install
> the already install V1.1.0 and the V1.1.1 in the dropins directory at
> the same time. Also comparing th eTeneo SDK 1.1.1 with an the EMF
> Moidelling plugin?
>
> I reverted to just the Teneo 1.1.1 runtime and the dropins does not get
> deployed, I click update and it says nothing to deploy, what a pile of
> crap p2 is. Take me back to the old UM, at least it worked.
>
> So at the moment I am stalled.
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> Hmm, this does not sound like a long-term strategy. I am wondering if
>> there is another way to do this. To understand the background, for
>> what reason do you extend the EMFTuplizer?
>>
>> gr. Martin
>>
>> David Wynter wrote:
>>> Hi,
>>>
>>> I unpacked the whole teneo.hibernate jar and linked to the extras jar
>>> as a variable. But it stopped the plugin working as a plugin.
>>>
>>> I also tried unpacking just the extras jar and putting that in the
>>> plugin directory and linking to that as a variable, that worked.
>>>
>>> David
>>>
>>> Martin Taal wrote:
>>>> I am on Ubuntu to :-)
>>>> I think the problem is that the TeneoInternalEObject is in a jar
>>>> inside the plugin and the plugin is not unpacked. Normally this is
>>>> not a problem (who wants to get to this terrible object anyway ;-).
>>>> But now I can see that you are stuck with this.
>>>> Can you unzip the org.eclipse.emf.teneo.hibernate plugin? in the
>>>> plugins directory (so it becomes a folder)? and then remove the
>>>> org.eclipse.emf.teneo.hibernate.jar file (so that only the folder
>>>> remains), and then restart Eclipse with the -clean in the
>>>> eclipse.ini file.
>>>>
>>>> gr. Martin
>>>>
>>>> David Wynter wrote:
>>>>> Hi,
>>>>>
>>>>> Yes I should have read your response more carefully. It is in the
>>>>> extras jar file. But it does not seem to be exported, I am on
>>>>> Ubuntu 9.0.4 now not Windoze as previous, maybe that is a difference?
>>>>>
>>>>> David
>>>>>
>>>>> Martin Taal wrote:
>>>>>> Hi David,
>>>>>> And do you see the extra jar file in the plugin itself? The
>>>>>> TeneoInternalEObject is located in that jar file.
>>>>>>
>>>>>> The strange thing is that if I try this with the development
>>>>>> projects it works (importing the TeneoInternalEObject in another
>>>>>> class in another plugin is possible).
>>>>>>
>>>>>> gr. Martin
>>>>>>
>>>>>> David Wynter wrote:
>>>>>>> Hi again,
>>>>>>>
>>>>>>> When I use the auto complete on the import for that
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package it does
>>>>>>> not show up.
>>>>>>>
>>>>>>> Only the org.eclipse.emf.teneo.hibernate.mapping.econtainer,
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.elist,
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.identifier and
>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.property show up as
>>>>>>> packages.
>>>>>>>
>>>>>>> So I opened the jar file and there is not internal under mapping!
>>>>>>> So it must be in a different jar? I am looking at
>>>>>>> org.eclipse.emf.teneo.hibernate_1.1.0.v200906180911.jar
>>>>>>>
>>>>>>> Thx.
>>>>>>>
>>>>>>> David
>>>>>>>
>>>>>>> Martin Taal wrote:
>>>>>>>> Hi David,
>>>>>>>> org.eclipse.emf.teneo.hibernate.extra is not a plugin but a jar
>>>>>>>> file in org.eclipse.emf.teneo.hibernate. This package which
>>>>>>>> contains the TeneoInternalEOject is
>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal. This package
>>>>>>>> is exported by the org.eclipse.emf.teneo.hibernate plugin. So I
>>>>>>>> would hope that after adding the org.eclipse.emf.teneo.hibernate
>>>>>>>> plugin to the dependency that you can use the
>>>>>>>> TeneoInternalEObject.... Or can you try import packages with the
>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal package?
>>>>>>>>
>>>>>>>> gr. Martin
>>>>>>>>
>>>>>>>> David Wynter wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> I manually added org.eclipse.emf.teneo.hibernate as a plugin
>>>>>>>>> dependency in MANIFEST.MF, it did not complain. But when I show
>>>>>>>>> the
>>>>>>
>>>>>> plugin dependencies it does not include the
>>>>>>>>> org.eclipse.emf.teneo.hibernate.extra and TeneoInternalEOject
>>>>>>>>> still cannot be resolved to a type. when I click "Find unused
>>>>>>>>> dependencies" it finds org.eclipse.emf.teneo.hibenate?
>>>>>>>>>
>>>>>>>>> Thx.
>>>>>>>>>
>>>>>>>>> David
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> David Wynter wrote:
>>>>>>>>>> Hi,
>>>>>>>>>>
>>>>>>>>>> That explains it. I do not have that plugin in the Galileo
>>>>>>>>>> install, org.eclipse.emf.teneo.hibernate.eclipse is there as a
>>>>>>>>>> plugin but not org.eclipse.emf.teneo.hibernate. In fact the
>>>>>>>>>> only plugins listed are
>>>>>>>>>>
>>>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse
>>>>>>>>>> org.eclipse.emf.teneo.hibernate.eclipse.source
>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapper.source
>>>>>>>>>> org.eclipse.emf.teneo.hibernate.hibernate.source
>>>>>>>>>>
>>>>>>>>>> I did an update of Teneo Hibernate and it tells me that it is
>>>>>>>>>> already installed, I assume it checks all the jars.
>>>>>>>>>>
>>>>>>>>>> Ideas?
>>>>>>>>>>
>>>>>>>>>> David
>>>>>>>>>>
>>>>>>>>>> Martin Taal wrote:
>>>>>>>>>>> Hi David,
>>>>>>>>>>> It is inside the org.eclipse.emf.teneo.hibernate plugin/jar
>>>>>>>>>>> file. Afaics the package
>>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.mapping.internal) is
>>>>>>>>>>> exported by that plugin.
>>>>>>>>>>>
>>>>>>>>>>> gr. Martin
>>>>>>>>>>>
>>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>>> Hi,
>>>>>>>>>>>>
>>>>>>>>>>>> That jar you mention does not appear to be in the std
>>>>>>>>>>>> install of Galileo with EMF?
>>>>>>>>>>>> org.eclipse.emf.teneo.hibernate.extra.jar
>>>>>>>>>>>>
>>>>>>>>>>>> Where do I get it from?
>>>>>>>>>>>>
>>>>>>>>>>>> Thx.
>>>>>>>>>>>>
>>>>>>>>>>>> David
>>>>>>>>>>>>
>>>>>>>>>>>> Martin Taal wrote:
>>>>>>>>>>>>> Hi David,
>>>>>>>>>>>>> It is still there though, see line 218 in the EMFTuplizer.
>>>>>>>>>>>>> This is related to a very detailed thing:
>>>>>>>>>>>>> This interface ensures that the cglib proxyfactory does not
>>>>>>>>>>>>> encounter a security exception
>>>>>>>>>>>>> because the EMF InternalEObject is signed with a different
>>>>>>>>>>>>> signature.
>>>>>>>>>>>>>
>>>>>>>>>>>>> The TeneoInternalEObject is located in a separate jar file
>>>>>>>>>>>>> inside of org.eclipse.emf.teneo.hibernate
>>>>>>>>>>>>> (org.eclipse.emf.teneo.hibernate.extra.jar). This to
>>>>>>>>>>>>> prevent it from being signed by the build process.
>>>>>>>>>>>>>
>>>>>>>>>>>>> gr. Martin
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> David Wynter wrote:
>>>>>>>>>>>>>> Hi,
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I have updated to Teneo 1.1.1 and Galileo. Based on a
>>>>>>>>>>>>>> previous message here I built an override class for the
>>>>>>>>>>>>>> EMFTupelizer ( I cannot even remember why now...).
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> When I upgraded the import
>>>>>>>>>>>>>> org.eclipse.emf.teneo.hibernate.mapping.internal has gone
>>>>>>>>>>>>>> and with it the interface used here:
>>>>>>>>>>>>>> proxyInterfaces.add(TeneoInternalEObject.class);
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I could not find the Javadoc for Teneo online. where has
>>>>>>>>>>>>>> TeneoInternalEObject gone?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Thx.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> David
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>>
>>>>
>>>>
>>
>>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431398 is a reply to message #431382] Wed, 08 July 2009 10:46 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Here is the stack trace using the std EMFTuplizer

2009-07-0811:41:20.804 GMT+0100 14620 [main] ERROR org.mortbay.log -
failed HibernateSessionRequestFilter
org.hibernate.HibernateException: Could not build tuplizer
[org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer]
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping .buildEntityTuplizer(EntityEntityModeToTuplizerMapping.java: 134)
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping . <init>(EntityEntityModeToTuplizerMapping.java:72)
at
org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:325)
at
org.hibernate.persister.entity.AbstractEntityPersister.<init >(AbstractEntityPersister.java:457)
at
org.hibernate.persister.entity.SingleTableEntityPersister.<init >(SingleTableEntityPersister.java:131)
at
org.hibernate.persister.PersisterFactory.createClassPersiste r(PersisterFactory.java:84)
at
org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:261)
at
org.hibernate.cfg.Configuration.buildSessionFactory(Configur ation.java:1327)
at
org.eclipse.emf.teneo.hibernate.HbSessionDataStore.buildSess ionFactory(HbSessionDataStore.java:171)
at
org.eclipse.emf.teneo.hibernate.HbSessionDataStore.initializ e(HbSessionDataStore.java:83)
at
org.eclipse.emf.teneo.hibernate.HbBaseSessionDataStore.getSe ssionFactory(HbBaseSessionDataStore.java:57)
at com.yambina.secm.dwr.HibernateUtil.init(HibernateUtil.java:1 11)
at
com.yambina.secm.dwr.HibernateUtil.getSessionFactory(Hiberna teUtil.java:30)
at
com.yambina.secm.dwr.HibernateSessionRequestFilter.init(Hibe rnateSessionRequestFilter.java:96)
at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder. java:97)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at
org.mortbay.jetty.servlet.ServletHandler.initialize(ServletH andler.java:589)
at org.mortbay.jetty.servlet.Context.startContext(Context.java: 139)
at
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppCo ntext.java:1220)
at
org.mortbay.jetty.handler.ContextHandler.doStart(ContextHand ler.java:510)
at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext .java:448)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at
org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrap per.java:130)
at org.mortbay.jetty.Server.doStart(Server.java:222)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at com.yambina.secm.jetty.JettyLauncher.start(JettyLauncher.jav a:194)
at com.yambina.secm.jetty.JettyLauncher.main(JettyLauncher.java :91)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(Native ConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(De legatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:5 13)
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping .buildEntityTuplizer(EntityEntityModeToTuplizerMapping.java: 131)
... 26 more
Caused by: java.lang.NoClassDefFoundError:
org/eclipse/emf/teneo/hibernate/mapping/internal/TeneoIntern alEObject
at
org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer.buildPr oxyFactory(EMFTuplizer.java:185)
at
org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:158)
at
org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer.<init>(EMFTuplizer.java:77)
... 31 more
Caused by: java.lang.ClassNotFoundException:
org.eclipse.emf.teneo.hibernate.mapping.internal.TeneoIntern alEObject
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301 )
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
... 34 more
2009-07-0811:41:20.807 GMT+0100 14623 [main] ERROR org.mortbay.log -
Failed startup of context
org.mortbay.jetty.webapp.WebAppContext@5ecd2e33{/secm,/home/david/workspace/GenSec2/./web}
org.hibernate.HibernateException: Could not build tuplizer
[org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer]
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping .buildEntityTuplizer(EntityEntityModeToTuplizerMapping.java: 134)
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping . <init>(EntityEntityModeToTuplizerMapping.java:72)
at
org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:325)
at
org.hibernate.persister.entity.AbstractEntityPersister.<init >(AbstractEntityPersister.java:457)
at
org.hibernate.persister.entity.SingleTableEntityPersister.<init >(SingleTableEntityPersister.java:131)
at
org.hibernate.persister.PersisterFactory.createClassPersiste r(PersisterFactory.java:84)
at
org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:261)
at
org.hibernate.cfg.Configuration.buildSessionFactory(Configur ation.java:1327)
at
org.eclipse.emf.teneo.hibernate.HbSessionDataStore.buildSess ionFactory(HbSessionDataStore.java:171)
at
org.eclipse.emf.teneo.hibernate.HbSessionDataStore.initializ e(HbSessionDataStore.java:83)
at
org.eclipse.emf.teneo.hibernate.HbBaseSessionDataStore.getSe ssionFactory(HbBaseSessionDataStore.java:57)
at com.yambina.secm.dwr.HibernateUtil.init(HibernateUtil.java:1 11)
at
com.yambina.secm.dwr.HibernateUtil.getSessionFactory(Hiberna teUtil.java:30)
at
com.yambina.secm.dwr.HibernateSessionRequestFilter.init(Hibe rnateSessionRequestFilter.java:96)
at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder. java:97)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at
org.mortbay.jetty.servlet.ServletHandler.initialize(ServletH andler.java:589)
at org.mortbay.jetty.servlet.Context.startContext(Context.java: 139)
at
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppCo ntext.java:1220)
at
org.mortbay.jetty.handler.ContextHandler.doStart(ContextHand ler.java:510)
at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext .java:448)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at
org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrap per.java:130)
at org.mortbay.jetty.Server.doStart(Server.java:222)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCy cle.java:39)
at com.yambina.secm.jetty.JettyLauncher.start(JettyLauncher.jav a:194)
at com.yambina.secm.jetty.JettyLauncher.main(JettyLauncher.java :91)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(Native ConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(De legatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:5 13)
at
org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping .buildEntityTuplizer(EntityEntityModeToTuplizerMapping.java: 131)
... 26 more
Caused by: java.lang.NoClassDefFoundError:
org/eclipse/emf/teneo/hibernate/mapping/internal/TeneoIntern alEObject
at
org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer.buildPr oxyFactory(EMFTuplizer.java:185)
at
org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:158)
at
org.eclipse.emf.teneo.hibernate.tuplizer.EMFTuplizer.<init>(EMFTuplizer.java:77)
... 31 more
Caused by: java.lang.ClassNotFoundException:
org.eclipse.emf.teneo.hibernate.mapping.internal.TeneoIntern alEObject
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301 )
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
... 34 more
Re: [Teneo] No longer need EMFTupelizer override? [message #431401 is a reply to message #431391] Wed, 08 July 2009 11:02 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

Yeah I tried that too, but they never show up as plugins anymore if I
put them directly into the plugins and features directories. So then I
cannot include them as dependencies in my plugin.xml.

Tried with your latest build, but does not deploy from the dropins and
is not recognized as a plugin if I place it directly in the plugins and
features directories. Way to go p2 team!

Might have to do a fresh install of Eclipse and start again.

David

Martin Taal wrote:
> Hi David,
> The latest build (5 minutes old) contains an unpacked teneo.hibernate
> plugin:
> http://www.eclipse.org/modeling/emf/downloads/?project=teneo &showAll=1&hlbuild=M200907080536#M200907080536
>
>
> As a tip, the last few times I installed plugins/features I did not put
> them in dropins anymore but just directly in the eclipse installation
> (so that the files end up in features/plugins). That seemed to work....
> (but no guarantees from my side).
>
> gr. Martin
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431403 is a reply to message #431401] Wed, 08 July 2009 11:09 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi,
Well good luck that's what I can say....

The build runs all testcases on an eclipse installation with the same plugins installed as the ones which are
downloadable, the testcases all pass.

I hope that having the teneo.hibernate plugin unpacked will solve your class not found exception.

gr. Martin

David Wynter wrote:
> Hi,
>
> Yeah I tried that too, but they never show up as plugins anymore if I
> put them directly into the plugins and features directories. So then I
> cannot include them as dependencies in my plugin.xml.
>
> Tried with your latest build, but does not deploy from the dropins and
> is not recognized as a plugin if I place it directly in the plugins and
> features directories. Way to go p2 team!
>
> Might have to do a fresh install of Eclipse and start again.
>
> David
>
> Martin Taal wrote:
>> Hi David,
>> The latest build (5 minutes old) contains an unpacked teneo.hibernate
>> plugin:
>> http://www.eclipse.org/modeling/emf/downloads/?project=teneo &showAll=1&hlbuild=M200907080536#M200907080536
>>
>>
>> As a tip, the last few times I installed plugins/features I did not
>> put them in dropins anymore but just directly in the eclipse
>> installation (so that the files end up in features/plugins). That
>> seemed to work.... (but no guarantees from my side).
>>
>> gr. Martin
>>
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] No longer need EMFTupelizer override? [message #431418 is a reply to message #431403] Wed, 08 July 2009 16:58 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

It seems that publishing the new versions of Teneo without an Update
site is now a waste of time, as according to the guys on Equinox now
that Teneo is a managed set of bundles, dropins don't work.


I did try expanding teneo.hibernate jar for 1.1.0 that comes with
Galileo, but that created a whole new set of exceptions. So I will have
to wait until the next release with an Update Site for download.

David

Martin Taal wrote:
> Hi,
> Well good luck that's what I can say....
>
> The build runs all testcases on an eclipse installation with the same
> plugins installed as the ones which are downloadable, the testcases all
> pass.
>
> I hope that having the teneo.hibernate plugin unpacked will solve your
> class not found exception.
>
> gr. Martin
>
> David Wynter wrote:
>> Hi,
>>
>> Yeah I tried that too, but they never show up as plugins anymore if I
>> put them directly into the plugins and features directories. So then I
>> cannot include them as dependencies in my plugin.xml.
>>
>> Tried with your latest build, but does not deploy from the dropins and
>> is not recognized as a plugin if I place it directly in the plugins
>> and features directories. Way to go p2 team!
>>
>> Might have to do a fresh install of Eclipse and start again.
>>
>> David
>>
>> Martin Taal wrote:
>>> Hi David,
>>> The latest build (5 minutes old) contains an unpacked teneo.hibernate
>>> plugin:
>>> http://www.eclipse.org/modeling/emf/downloads/?project=teneo &showAll=1&hlbuild=M200907080536#M200907080536
>>>
>>>
>>> As a tip, the last few times I installed plugins/features I did not
>>> put them in dropins anymore but just directly in the eclipse
>>> installation (so that the files end up in features/plugins). That
>>> seemed to work.... (but no guarantees from my side).
>>>
>>> gr. Martin
>>>
>>
>
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431439 is a reply to message #431418] Thu, 09 July 2009 14:37 Go to previous messageGo to next message
Matt Biggs is currently offline Matt BiggsFriend
Messages: 71
Registered: July 2009
Member
Using dropins works fine in 3.5 if you unzip the teneo SDK into your
dropins folder, then goto 'Check for Updates'. It finds it and updates.
Re: [Teneo] No longer need EMFTupelizer override? [message #431441 is a reply to message #431439] Thu, 09 July 2009 15:52 Go to previous messageGo to next message
David Wynter is currently offline David WynterFriend
Messages: 4624
Registered: July 2009
Senior Member
Hi,

Not according to the equinox team. See thread on e.t.equinox. I tried it
several times on Ubuntu 9.0.4 and all it did was screw up my
teneo.hibernate plugin. According to the equinox guy teneo is now a part
of the 'managed' bundles for Galileo and therefore dropins will not
work, which is my experience.

David

Matt Biggs wrote:
> Using dropins works fine in 3.5 if you unzip the teneo SDK into your
> dropins folder, then goto 'Check for Updates'. It finds it and updates.
>
Re: [Teneo] No longer need EMFTupelizer override? [message #431446 is a reply to message #431441] Thu, 09 July 2009 17:48 Go to previous messageGo to next message
Matt Biggs is currently offline Matt BiggsFriend
Messages: 71
Registered: July 2009
Member
What Simon Kaegi said on e.t.equinox is correct.

You need to install the latest version of teneo (1.1.0) using the eclipse
update site. (p2 enabled).

Then close eclipse. Manually download 1.1.1.

Then unzip the 1.1.1 release into your dropins folder.

Then fire up eclipse and do 'Check for update'. It will recognise you had
teneo installed via p2 and will see there is a newer version in dropins
and will then install / update it to 1.1.1. Until you do this stage, it
will not override teneo 1.1.0 with the later version (as Simon suggested
since its a manual install).

I am running gentoo linux, with teneo installed in the above manner
without any problems. My partner has just updated using the exact same
method on her vista laptop and had no problems.

Only thing i can suggest if you still have problems is perhaps you need to
use a fresh copy of 3.5. It may have collected some garbage along the way.
Re: [Teneo] No longer need EMFTupelizer override? [message #431447 is a reply to message #431446] Thu, 09 July 2009 17:52 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
and to add some possibly unrelated things. In 3.4 when I accidentally left the zip file in the dropins folder (together
with its unzipped content) then 3.4 p2 would not pick up the new stuff in the dropins folder.

Also David, as you want to get to the embedded jar, you should take one of the latest maintenance build (I did one today
to try to get it on an update site which apparently failed again.... :-(.

gr. Martin

Matt Biggs wrote:
> What Simon Kaegi said on e.t.equinox is correct.
> You need to install the latest version of teneo (1.1.0) using the
> eclipse update site. (p2 enabled).
> Then close eclipse. Manually download 1.1.1.
>
> Then unzip the 1.1.1 release into your dropins folder.
> Then fire up eclipse and do 'Check for update'. It will recognise you
> had teneo installed via p2 and will see there is a newer version in
> dropins and will then install / update it to 1.1.1. Until you do this
> stage, it will not override teneo 1.1.0 with the later version (as Simon
> suggested since its a manual install).
> I am running gentoo linux, with teneo installed in the above manner
> without any problems. My partner has just updated using the exact same
> method on her vista laptop and had no problems.
> Only thing i can suggest if you still have problems is perhaps you need
> to use a fresh copy of 3.5. It may have collected some garbage along the
> way.


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Previous Topic:Inheritance of EOperations
Next Topic:[CDO] data type precisions by annotations
Goto Forum:
  


Current Time: Thu Mar 28 19:23:29 GMT 2024

Powered by FUDForum. Page generated in 0.04307 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top