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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Enterprise Manager in WebBrowser

Re: Enterprise Manager in WebBrowser

From: Gerald Anleitner <ga_at_phil.uni-passau.de>
Date: Wed, 1 Sep 1999 16:44:07 +0200
Message-ID: <37cd3b27.0@news.rz.uni-passau.de>

> Is there a possibility to run the Enterprise Manager of Oracle in a
> non-Windows web browser? The necessary plug-in is only available for
> Windows, so how can I run the web-enabled EM in a browser without
the
> plug-in?
Some things I just thought:
I need the html-code that starts the plug-in. Well, how can I get it? It's somehow hidden that litlle cgi that is located in oem_webstage's cgi-bin directory, right? Okay, when I start that cgi with some paramter ("gerald" in my case), I get this output:

<OBJECT classid="clsid:9F77A997-F0F3-11D1-9195-00C04FC990DC" WIDTH = 2
HEIGHT =2
        codebase="/oem_webstage/java-plugin/install_win32.html">
<PARAM NAME="java_code" VALUE="oracle.sysman.vtcConsole.VTCConsole">
<PARAM NAME="java_archive" VALUE="consoleStage1.jar">
<PARAM NAME="oem.BootPort" VALUE="7771">
<PARAM NAME="oem.BootHost" VALUE="gerald">
<PARAM NAME="oem.BootPort" VALUE="7771">
<PARAM NAME="org.omg.CORBA.ORBClass"

VALUE="com.visigenic.vbroker.orb.ORB">
<PARAM NAME="ORBdisableLocator" VALUE="true">
<PARAM NAME="java_codebase" VALUE="/oem_webstage">
<PARAM NAME="LaunchApplicationLaunchee"
VALUE="oracle.sysman.vtcConsole.VTCConsole">
<PARAM NAME="type"

VALUE="application/x-jinit-applet;version=1.1.7.8.1">
<COMMENT>
<EMBED

        type="application/x-jinit-applet;version=1.1.7.8.1"
        pluginspage="/oem_webstage/java-plugin/install_win32.html"
        width="2"
        height="2"
        java_code = "oracle.sysman.vtcConsole.VTCConsole"
        java_archive = "consoleStage1.jar"
        oem.BootPort = "7771"
        oem.BootHost = "gerald"
   java_codebase = "/oem_webstage"
        org.omg.CORBA.ORBClass = "com.visigenic.vbroker.orb.ORB"
        ORBdisableLocator = "true"
        LaunchApplicationLaunchee =

"oracle.sysman.vtcConsole.VTCConsole">
<NOEMBED>
</COMMENT>
</NOEMBED>
</EMBED>
</OBJECT>

Looks nice, right?
So why not try a applet-tag like this:
<applet

 codebase="http://vangogh.fmi.uni-passau.de:1974/oem_webstage/"  code="oracle.sysman.vtcConsole.VTCConsole"  archive="consoleStage1.jar"
 width="2"
 height="2"
>
<param name="BootPort" value="7771">
<param name="BootHost" value"vangogh.fmi.uni-passau.de">
</applet>

Unfortunately, this doesn't work, it throws some exceptions. There's an illegal argument exception and some problems with digital signatures of jar-files :-(
Might have something to do with the cryptic number at the beginning of that object-tag ("classid").
Perhaps someone could help here?

Other thought: Could the java-code of the EM execute in the standard Netscape JavaVM?

Bye,
Gerald Received on Wed Sep 01 1999 - 09:44:07 CDT

Original text of this message

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