[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-15 Thread jiwils
reverbel wrote : anonymous wrote : 
  |   | I have been interested in contributing an MBean that provided this type 
of behavior for a while now. 
  |   | 
  | Your contribution will be very welcome! (Good to see you in JBoss forums, 
Jimmy.)
Post http://www.jboss.org/index.html?module=bbop=viewtopict=62736 in the IIOP 
development forum spells out what I thinking (at the moment).  Can you take a 
look and see if there is anything to add/focus on?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874106#3874106

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874106


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-09 Thread reverbel
anonymous wrote : 
  | I have been interested in contributing an MBean that provided this type of 
behavior for a while now. 
  | 
Your contribution will be very welcome! (Good to see you in JBoss forums, 
Jimmy.)

Francisco


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873336#3873336

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873336


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-07 Thread nfg
Thanks for the reply. I will look into the MBean documentation in the JBoss 
guide some more before attempting this - but now I know that it is possible :)

Regards,
Francois

PS: I have no idea why the post came through in someone else's username but I 
suspect the link I in a sticky note instruction people not to post in the 
Corba developers forum had something to do with it.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873000#3873000

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873000


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-07 Thread radl01
Using MBean is the good point but you can write your own CORB-to-EJB proxy 
servants and run this servants in separate CORBA server. It is very easy to 
write proxy generator which does all the work for you. This solution has one 
big advantage:

You can use this scenerio for any J2EE App server. We use this solution for 
very lage system with a lot of SSB and SFB.

Regards

Jan

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873069#3873069

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873069


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-07 Thread jiwils
radl01 wrote : Using MBean is the good point but you can write your own 
CORB-to-EJB proxy servants and run this servants in separate CORBA server. It 
is very easy to write proxy generator which does all the work for you. This 
solution has one big advantage:
  | 
  | You can use this scenerio for any J2EE App server. We use this solution for 
very lage system with a lot of SSB and SFB.

I have been interested in contributing an MBean that provided this type of 
behavior for a while now.  It seems to me that while the external CORBA server 
idea would work, it could be much faster using the MBean method since 
everything would/could be in the same process and you could utilize EJB local 
interfaces.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873116#3873116

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873116


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Creating CORBA wrapper servants for EJB objects

2005-04-06 Thread reverbel
Yes, what you are asking makes complete sense. CORBA front-ends for stateless 
session beans are very useful in the scenario you described. Putting an IDL 
interface in front of an SLSB is the way of circumventing the oddities of the 
reverse Java-to-IDL mapping and making the SLSB more conveniently accessible to 
CORBA clients written in other languages.

You can write a service MBean whose start method instantiates a CORBA servant, 
registers the servant with a POA, and binds the corresponding CORBA reference 
into a CosNaming context to make it available to remote clients. You can 
register the servant with the root POA or you can create a new POA for your 
servant, with the POA policies of your choice.

It should be possible to write a generic service MBean to do this. The name of 
the servant class and the CosNaming name of the CORBA object would be 
configurable attributes of the MBean. 

Regards,

Francisco

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3872981#3872981

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3872981


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user