Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Riena » riena server outside eclipse
riena server outside eclipse [message #2901] Thu, 22 May 2008 07:49 Go to next message
david leloup is currently offline david leloupFriend
Messages: 36
Registered: July 2009
Member
hi

i have a riena server and rcp application/riena client
they work perfectly well when i launch them within eclipse

but when i try to export my server plugins and launch them directly , it
failed
with "unresolved compilation problem"
and unresolved "import" problem

i have to say , i'm using hibernate. and that's really a pain to setup up
the
manifest file for this plug-in and the one that are using it

has someone got a step by step guide to export and launch a riena server ??
or does someone succeded in this task ??

tia

David
Re: riena server outside eclipse [message #2919 is a reply to message #2901] Thu, 22 May 2008 11:02 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

david,

sorry - I cannot help at the moment -
perhaps in 1 week or so.

one question:
are you using only riena server for remote services
or are you also using Riena ObjectTransactions
together with hibernate )

ekke
Re: riena server outside eclipse [message #2937 is a reply to message #2919] Thu, 22 May 2008 14:13 Go to previous messageGo to next message
david leloup is currently offline david leloupFriend
Messages: 36
Registered: July 2009
Member
just for remote services


"ekke" <ekkehard@gentz-software.de> wrote in message
news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
> david,
>
> sorry - I cannot help at the moment -
> perhaps in 1 week or so.
>
> one question:
> are you using only riena server for remote services
> or are you also using Riena ObjectTransactions
> together with hibernate )
>
> ekke
>
Re: riena server outside eclipse [message #2954 is a reply to message #2937] Fri, 23 May 2008 09:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

I'll let you know if I have figured out all issues to make my solution run:
RCP client with Eclipse DataBinding
Riena Server, Hibernate/JPA, jBPM, Drools
and using ObjectTransactions between client/server

ekke

news.eclipse.org wrote:

> just for remote services


> "ekke" <ekkehard@gentz-software.de> wrote in message
> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>> david,
>>
>> sorry - I cannot help at the moment -
>> perhaps in 1 week or so.
>>
>> one question:
>> are you using only riena server for remote services
>> or are you also using Riena ObjectTransactions
>> together with hibernate )
>>
>> ekke
>>
Re: riena server outside eclipse [message #2971 is a reply to message #2954] Fri, 23 May 2008 10:02 Go to previous messageGo to next message
david leloup is currently offline david leloupFriend
Messages: 36
Registered: July 2009
Member
ok thanks

have you got some documentation on object transaction ?

there is no links on riena wiki


"ekke" <ekkehard@gentz-software.de> wrote in message
news:a62a21a91aa53a29ab826988a7b4e1c0$1@www.eclipse.org...
> I'll let you know if I have figured out all issues to make my solution
> run:
> RCP client with Eclipse DataBinding
> Riena Server, Hibernate/JPA, jBPM, Drools and using ObjectTransactions
> between client/server
>
> ekke
>
> news.eclipse.org wrote:
>
>> just for remote services
>
>
>> "ekke" <ekkehard@gentz-software.de> wrote in message
>> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>>> david,
>>>
>>> sorry - I cannot help at the moment -
>>> perhaps in 1 week or so.
>>>
>>> one question:
>>> are you using only riena server for remote services
>>> or are you also using Riena ObjectTransactions
>>> together with hibernate )
>>>
>>> ekke
>>>
>
>
Re: riena server outside eclipse [message #2988 is a reply to message #2971] Fri, 23 May 2008 10:06 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

you have to go thru the unit tests
and look inside the code - its well documented

of course, a Getting Started with ObjectTransactions is missing on riena
wiki
and I hope the Riena team is working on it

I'll publish some things next days what I found out
and the solutions for my application

ekke

news.eclipse.org wrote:

> ok thanks

> have you got some documentation on object transaction ?

> there is no links on riena wiki


> "ekke" <ekkehard@gentz-software.de> wrote in message
> news:a62a21a91aa53a29ab826988a7b4e1c0$1@www.eclipse.org...
>> I'll let you know if I have figured out all issues to make my solution
>> run:
>> RCP client with Eclipse DataBinding
>> Riena Server, Hibernate/JPA, jBPM, Drools and using ObjectTransactions
>> between client/server
>>
>> ekke
>>
>> news.eclipse.org wrote:
>>
>>> just for remote services
>>
>>
>>> "ekke" <ekkehard@gentz-software.de> wrote in message
>>> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>>>> david,
>>>>
>>>> sorry - I cannot help at the moment -
>>>> perhaps in 1 week or so.
>>>>
>>>> one question:
>>>> are you using only riena server for remote services
>>>> or are you also using Riena ObjectTransactions
>>>> together with hibernate )
>>>>
>>>> ekke
>>>>
>>
>>
Re: riena server outside eclipse [message #3063 is a reply to message #2901] Mon, 26 May 2008 23:05 Go to previous message
Christian Campo is currently offline Christian CampoFriend
Messages: 597
Registered: July 2009
Senior Member
maybe I am getting this wrong. But it seems you are actually asking two questions.

how to create a WAR file for the Riena server ?

how to create the manifest.mf for Hibernate ?


Riena Server is no different than any equinox based application in a servlet container. So you can use a standard
description how to set up the WAR file like this one I googled.

http://www.eclipse.org/equinox/server/http_in_container.php

This should work and if not let me know, what the problem is


About hibernate there is a little bit of an issue that you also have with other persistence frameworks or
even with remote services.

it is about using buddies. hibernate needs to be able to look up classes by name in each bundle that contain
you persistance class code. since you cannot and should not make hibernate dependant on any of your business classes
that problem is solvede with buddies. hibernate's manifest.mf must specify in an extra line
Eclipse-BuddyPolicy: registered

and all business plugins must say
Eclipse-RegisterBuddy: org.hibernate (or whatever your the plugin id of hibernate is that you choose)

also (very imporant)
your business plugins must be defined as dependant on the hibernate plugin (otherwise Buddy dont work)


was that of any help ?

if not, give me some details of the problem you are having

christian campo


news.eclipse.org schrieb:
> hi
>
> i have a riena server and rcp application/riena client
> they work perfectly well when i launch them within eclipse
>
> but when i try to export my server plugins and launch them directly , it
> failed
> with "unresolved compilation problem"
> and unresolved "import" problem
>
> i have to say , i'm using hibernate. and that's really a pain to setup
> up the
> manifest file for this plug-in and the one that are using it
>
> has someone got a step by step guide to export and launch a riena server ??
> or does someone succeded in this task ??
>
> tia
>
> David
>
>
Re: riena server outside eclipse [message #571355 is a reply to message #2901] Thu, 22 May 2008 11:02 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

david,

sorry - I cannot help at the moment -
perhaps in 1 week or so.

one question:
are you using only riena server for remote services
or are you also using Riena ObjectTransactions
together with hibernate )

ekke
Re: riena server outside eclipse [message #571378 is a reply to message #2919] Thu, 22 May 2008 14:13 Go to previous message
david leloup is currently offline david leloupFriend
Messages: 36
Registered: July 2009
Member
just for remote services


"ekke" <ekkehard@gentz-software.de> wrote in message
news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
> david,
>
> sorry - I cannot help at the moment -
> perhaps in 1 week or so.
>
> one question:
> are you using only riena server for remote services
> or are you also using Riena ObjectTransactions
> together with hibernate )
>
> ekke
>
Re: riena server outside eclipse [message #571413 is a reply to message #2937] Fri, 23 May 2008 09:41 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

I'll let you know if I have figured out all issues to make my solution run:
RCP client with Eclipse DataBinding
Riena Server, Hibernate/JPA, jBPM, Drools
and using ObjectTransactions between client/server

ekke

news.eclipse.org wrote:

> just for remote services


> "ekke" <ekkehard@gentz-software.de> wrote in message
> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>> david,
>>
>> sorry - I cannot help at the moment -
>> perhaps in 1 week or so.
>>
>> one question:
>> are you using only riena server for remote services
>> or are you also using Riena ObjectTransactions
>> together with hibernate )
>>
>> ekke
>>
Re: riena server outside eclipse [message #571436 is a reply to message #2954] Fri, 23 May 2008 10:02 Go to previous message
david leloup is currently offline david leloupFriend
Messages: 36
Registered: July 2009
Member
ok thanks

have you got some documentation on object transaction ?

there is no links on riena wiki


"ekke" <ekkehard@gentz-software.de> wrote in message
news:a62a21a91aa53a29ab826988a7b4e1c0$1@www.eclipse.org...
> I'll let you know if I have figured out all issues to make my solution
> run:
> RCP client with Eclipse DataBinding
> Riena Server, Hibernate/JPA, jBPM, Drools and using ObjectTransactions
> between client/server
>
> ekke
>
> news.eclipse.org wrote:
>
>> just for remote services
>
>
>> "ekke" <ekkehard@gentz-software.de> wrote in message
>> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>>> david,
>>>
>>> sorry - I cannot help at the moment -
>>> perhaps in 1 week or so.
>>>
>>> one question:
>>> are you using only riena server for remote services
>>> or are you also using Riena ObjectTransactions
>>> together with hibernate )
>>>
>>> ekke
>>>
>
>
Re: riena server outside eclipse [message #571474 is a reply to message #2971] Fri, 23 May 2008 10:06 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

you have to go thru the unit tests
and look inside the code - its well documented

of course, a Getting Started with ObjectTransactions is missing on riena
wiki
and I hope the Riena team is working on it

I'll publish some things next days what I found out
and the solutions for my application

ekke

news.eclipse.org wrote:

> ok thanks

> have you got some documentation on object transaction ?

> there is no links on riena wiki


> "ekke" <ekkehard@gentz-software.de> wrote in message
> news:a62a21a91aa53a29ab826988a7b4e1c0$1@www.eclipse.org...
>> I'll let you know if I have figured out all issues to make my solution
>> run:
>> RCP client with Eclipse DataBinding
>> Riena Server, Hibernate/JPA, jBPM, Drools and using ObjectTransactions
>> between client/server
>>
>> ekke
>>
>> news.eclipse.org wrote:
>>
>>> just for remote services
>>
>>
>>> "ekke" <ekkehard@gentz-software.de> wrote in message
>>> news:06f3d24acf20ef19ba35c9fbb8985e76$1@www.eclipse.org...
>>>> david,
>>>>
>>>> sorry - I cannot help at the moment -
>>>> perhaps in 1 week or so.
>>>>
>>>> one question:
>>>> are you using only riena server for remote services
>>>> or are you also using Riena ObjectTransactions
>>>> together with hibernate )
>>>>
>>>> ekke
>>>>
>>
>>
Re: riena server outside eclipse [message #571644 is a reply to message #2901] Mon, 26 May 2008 23:05 Go to previous message
Christian Campo is currently offline Christian CampoFriend
Messages: 597
Registered: July 2009
Senior Member
maybe I am getting this wrong. But it seems you are actually asking two questions.

how to create a WAR file for the Riena server ?

how to create the manifest.mf for Hibernate ?


Riena Server is no different than any equinox based application in a servlet container. So you can use a standard
description how to set up the WAR file like this one I googled.

http://www.eclipse.org/equinox/server/http_in_container.php

This should work and if not let me know, what the problem is


About hibernate there is a little bit of an issue that you also have with other persistence frameworks or
even with remote services.

it is about using buddies. hibernate needs to be able to look up classes by name in each bundle that contain
you persistance class code. since you cannot and should not make hibernate dependant on any of your business classes
that problem is solvede with buddies. hibernate's manifest.mf must specify in an extra line
Eclipse-BuddyPolicy: registered

and all business plugins must say
Eclipse-RegisterBuddy: org.hibernate (or whatever your the plugin id of hibernate is that you choose)

also (very imporant)
your business plugins must be defined as dependant on the hibernate plugin (otherwise Buddy dont work)


was that of any help ?

if not, give me some details of the problem you are having

christian campo


news.eclipse.org schrieb:
> hi
>
> i have a riena server and rcp application/riena client
> they work perfectly well when i launch them within eclipse
>
> but when i try to export my server plugins and launch them directly , it
> failed
> with "unresolved compilation problem"
> and unresolved "import" problem
>
> i have to say , i'm using hibernate. and that's really a pain to setup
> up the
> manifest file for this plug-in and the one that are using it
>
> has someone got a step by step guide to export and launch a riena server ??
> or does someone succeded in this task ??
>
> tia
>
> David
>
>
Previous Topic:new objects and IObjectID
Next Topic:Riena 1.0.M2 and required bundles vs import
Goto Forum:
  


Current Time: Tue Mar 19 10:55:36 GMT 2024

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

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

Back to the top