Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: list of EJB object published in database

Re: list of EJB object published in database

From: Steve Blomeley <steveblomeley_at_yahooDOTco.uk>
Date: Tue, 17 Apr 2001 22:05:35 +0100
Message-ID: <3ADCB01F.FD0AB7CC@yahooDOTco.uk>

Gianluca wrote:
>
> how is it possible to list of EJB object published in database ?
> I'm using Oracle 8.1.7.

Hi Gianluca,

You can use the Oracle sess_sh tool to list all the objects published in your database - It is documented in the "Java Tools Reference" manual (A83727-01). You start the tool with something like...

# sess_sh -service sess_iiop://<host>:<port>:<sid> -user <username> -password <password>

This starts up a unix-like interface to your databases session namespace, so you can use commands like "ls" to list publishing contexts and published objects...

$ ls

bin/          service/      test/         
etc/          system/       webdomains/   

$ ls test
myEjb1        myEjb2        myEjb4

myEjbTest

Use "help" to list all the available commands.

hth
Regards
SB Received on Tue Apr 17 2001 - 16:05:35 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US