Path: news.easynews.com!newsfeed1.easynews.com!easynews.com!easynews!news.he.net!news-hog.berkeley.edu!ucberkeley!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
From: kkubis@poczta.gazeta.pl (kkubis)
Newsgroups: comp.databases.oracle.tools
Subject: I want to create in JDeveloper Applet with JClient Components.
Date: 12 Dec 2002 07:48:09 -0800
Organization: http://groups.google.com/
Lines: 15
Message-ID: <df5d8976.0212120748.29d58977@posting.google.com>
NNTP-Posting-Host: 193.109.133.10
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1039708090 1531 127.0.0.1 (12 Dec 2002 15:48:10 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: 12 Dec 2002 15:48:10 GMT
Xref: newsfeed1.easynews.com comp.databases.oracle.tools:55340
X-Received-Date: Thu, 12 Dec 2002 08:47:45 MST (news.easynews.com)

I do it in this way:
  1. Create JClient panel "PanelEmpView"
  2. Create applet and add to it code:
    JUMetaObjectManager.setBaseErrorHandler( new JUErrorHandlerDialog( ) );
    JUApplication app = JUMetaObjectManager.createApplicationObject    
                  ("Project5.Mypackage17Module", null, new JUEnvInfoProvider());
    PanelEmpView panelEmpView = new PanelEmpView( app );
    this.getContentPane( ).setLayout( new BorderLayout( ) );
    this.getContentPane( ).add( panelEmpView, BorderLayout.CENTER );    

  I can run this applet in JDeveloper and JDeveloper's Appletviewer bat 
  I cannot run it in Internet Exploler. Applet can't create Application Object
 
     JUMetaObjectManager.createApplicationObject    
                  ("Project5.Mypackage17Module", null, new JUEnvInfoProvider());
