Can't view the applet in the browser

I have created an applet form using JDeveloper 3.1 to connect to the Oracle8i Rel2. However the following error appear during the connection:
cannot instantiate class:oracle.jbo.common.jboInitialContextFactory
Please assist.

Applet Deployment for JDev 3.1
Deployment issues for client and server:
1. Make sure you have the JDK 1.2 plugin installed on the client.
2. If your webserver and database are not on the same machine, you will have to configure your applet differently, or install the Net8 Connection Manager. See the Oracle JDBC Developer's Guide for more information (exact location of applet info depends on which version of the DB).
Creating your Applet within JDeveloper:
1. Create a new workspace.
2. Create a new Business Components project. You will define your data model and business logic in this project. This is effectively your middle tier, but can be deployed to any tier you choose. In this project you will use the Business Components wizard to create:
a. entity objects for each of the tables/views you want to develop against
b. view objects (and optionally view links, associations) for each of the entity objects or combination of entity objects
c. application module(s) to represent your data model(s)
3. Save and build your business components project.
4. Create a new empty project to contain your applet code.
5. Launch the Infobus DataForm wizard to create your DAC applet. Choose the app module you created in step 2 as a data source. (Alternately, you can create the applet from scratch using the controls and binding your sessioninfo object to your app module).
Deployment Steps within JDeveloper:
1. Deploy your business components project.
a. decide how you will deploy your app module (local, visibroker, etc.)
b. if you decide to deploy in local mode, use the Deployment Profile Wizard and choose 'Simple Archive', including all of the business components project's XML and .JAVA files in the archive.
c. if you will deploy to visibroker, see the online help for deploying your business components, and see the Release Notes for additional changes you need to make to your applet project.
2. (if deploying BC4J project in local mode) Create a library using the archive you generated in Step 1. Add this library to your applet project from the Project Properties Libraries tab.
3. Clear out a directory on your local machine where the deployment wizard can copy everything you need to deploy.
4. Deploy your applet project.
a. Run the JDeveloper Deployment Profile Wizard and choose the Web Application to Web Server option on Page 1.
b. On page 2, select all of the .class files in your project that make up the applet.
c. Select all the libraries listed and shuttle them to the selected list. The contents of these libraries will automatically be added to your applet's HTML file during deployment
d. Give the .jar file a name, and run the deployment to generate that jar file.
e. select the location of the 'clean' directory you created in step 3.
Deploying to your WebServer:
1. Copy everything that the deployment process placed in your 'clean' directory to your WebServer.
If you deployed your BC4J project locally, you will need to deploy the archive file containing your business components to the webserver along with all of the other archives.
2. If you want to put the dependency archives in a different location from the applet's HTML file under the webserver root, then you need to set the CODEBASE tag in the HTML file to the (relative) location of the archives.
Troubleshooting:
1. Try both Netscape and IE. Different Browsers sometimes give different errors and one might be more helpful/indicative of the problem's source.
2. Use the Java Console to get a more detailed stack trace. For Netscape, choose Communicator->Tools->Java Console.
References w/in Oracle -
JDBC Developer's Guide
Net8 Admin Guide
References outside Oracle -
Borland JBuilder doc: http://www.borland.com/techpubs/jbuilder/jbuilder3-s/pg/applets.html
JavaSoft Plugin Download: http://java.sun.com/products/plugin/
null

Similar Messages

  • Chat Applet using RMI .... trouble running the Applet using the IE browser.

    Hi,
    I'm trying to run a chat application using RMI technology. Actually, this wasn't created from the scratch. I got this one from from the cd that comes with the book I bought and I did some refinements on it to suit what I wanted to:
    These are the components of the chat application:
    1. RApplet.html - invokes the applet
    html>
    <head>
    <title>Sample Applet Using Dialog Box (1.0.2) - example 1</title>
    </head>
    <body>
    <h1>The Sample Applet</h1>
    <applet code="RApplet.class" width=460 height=160>
    </applet>
    </body>
    </html>
    2. RApplet.java - Chat session client applet.
    import java.rmi.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.*;
    import java.rmi.server.*;
    //import ajp.rmi.*;
    public class RApplet extends Applet implements ActionListener {
    // The buttons
    Button sendButton;
    Button quitButton;
    Button startButton;
    Button clearButton;
    // The Text fields
    TextField nameField;
    TextArea typeArea;
    // The dialog for entering your name
    Dialog nameDialog;
    // The name the server knows us as
    String privateName;
    // The name we want to be known as in the chat session
    String publicName;
    // The remote chats erver
    ChatServer chatServer;
    // The ChatCallback
    ChatCallbackImplementation cCallback;
    // The main Chat window and its panels
    Frame mainFrame;
    Panel center;
    Panel south;
    public void init() {
    // Create class that implements ChatCallback.
    cCallback = new ChatCallbackImplementation();
         // Create the main Chat frame.
         mainFrame = new Frame("Chat Server on : " +
                        getCodeBase().getHost());
         mainFrame.setSize(new Dimension(600, 600));
         cCallback.displayArea = new TextArea();
         cCallback.displayArea.setEditable(false);
         typeArea = new TextArea();
         sendButton = new Button("Send");
         quitButton = new Button("Quit");
         clearButton = new Button("Clear");
         // Add the applet as a listener to the button events.
         clearButton.addActionListener(this);
         sendButton.addActionListener(this);
         quitButton.addActionListener(this);
         center = new Panel();
         center.setLayout(new GridLayout(2, 1));
         center.add(cCallback.displayArea);
         center.add(typeArea);
         south = new Panel();
         south.setLayout(new GridLayout(1, 3));
         south.add(sendButton);
         south.add(quitButton);
         south.add(clearButton);
         mainFrame.add("Center", center);
         mainFrame.add("South", south);
         center.setEnabled(false);
         south.setEnabled(false);
         mainFrame.show();
         // Create the login dialog.
         nameDialog = new Dialog(mainFrame, "Enter Name to Logon: ");
         startButton = new Button("Logon");
         startButton.addActionListener(this);
         nameField = new TextField();
         nameDialog.add("Center", nameField);
         nameDialog.add("South", startButton);
         try {
         // Export ourselves as a ChatCallback to the server.
         UnicastRemoteObject.exportObject(cCallback);
         // Get the remote handle to the server.
         chatServer = (ChatServer)Naming.lookup("//" + "WW7203052W2K" +
                                  "/ChatServer");
         catch(Exception e) {
         e.printStackTrace();
         nameDialog.setSize(new Dimension(200, 200));
         nameDialog.show();
    * Handle the button events.
    public void actionPerformed(ActionEvent e) {
         if (e.getSource().equals(startButton)) {
         try {
              nameDialog.setVisible(false);;
              publicName = nameField.getText();
              privateName = chatServer.register(cCallback, publicName);
              center.setEnabled(true);
              south.setEnabled(true);
              cCallback.displayArea.setText("Connected to chat server as: " +
                             publicName);
              chatServer.sendMessage(privateName, publicName +
                             " just connected to server");
         catch(Exception ex) {
              ex.printStackTrace();
         else if (e.getSource().equals(quitButton)) {
         try {
              cCallback.displayArea.setText("");
              typeArea.setText("");
              center.setEnabled(false);
              south.setEnabled(false);
              chatServer.unregister(privateName);
              nameDialog.show();
         catch(Exception ex) {
              ex.printStackTrace();
         else if (e.getSource().equals(sendButton)) {
         try{
              chatServer.sendMessage(privateName, typeArea.getText());
              typeArea.setText("");
         catch(Exception ex) {
              ex.printStackTrace();
         else if (e.getSource().equals(clearButton)) {
         cCallback.displayArea.setText("");
    public void destroy() {
         try {
         super.destroy();
         mainFrame.setVisible(false);;
         mainFrame.dispose();
         chatServer.unregister(privateName);
         catch(Exception e) {
         e.printStackTrace();
    3. Chatcallback.java - interface used by clients to connect to the server.
    import java.rmi.*;
    public interface ChatCallback extends Remote {
    public void addMessage(String publicName,
                   String message) throws RemoteException;
    4. ChatcallbackImplementation.java - implements Chatcallback interface.
    import java.rmi.*;
    import java.io.*;
    import java.awt.event.*;
    import java.awt.*;
    public class ChatCallbackImplementation implements ChatCallback {
    // The buttons
    // The Text fields
    TextArea displayArea;
    public void addMessage(String publicName,
                   String message) throws RemoteException {
    displayArea.append("\n" + "[" + publicName + "]: " + message);
    5. Chatserver.java - interface for the chat server.
    import java.rmi.*;
    import java.io.*;
    public interface ChatServer extends Remote {
    public String register(ChatCallback object,
                   String publicName) throws RemoteException;
    * Remove the client associated with the specified registration string.
    * @param registeredString the string returned to the client upon registration.
    public void unregister(String registeredString) throws RemoteException;
    * The client is sending new data to the server.
    * @param assignedName the string returned to the client upon registration.
    * @param data the chat data.
    public void sendMessage(String registeredString, String message) throws RemoteException;
    6. ChatServerImplementation.java - implements Chatserver interface.
    import java.rmi.*;
    import java.util.*;
    import java.rmi.server.*;
    import java.io.*;
    * A class that bundles the ChatCallback reference with a public name used
    * by the client.
    class ChatClient {
    private ChatCallback callback;
    private String publicName;
    ChatClient(ChatCallback cbk, String name) {
         callback = cbk;
         publicName = name;
    // returns the name.
    String getName() {
         return publicName;
    // returns a reference to the callback object.
    ChatCallback getCallback() {
         return callback;
    public class ChatServerImplementation extends UnicastRemoteObject
    implements ChatServer {
    // The table of clients connected to the server.
    Hashtable clients;
    // Tne number of current connections to the server.
    private int currentConnections;
    // The maximum number of connections to the server.
    private int maxConnections;
    // The output stream to write messages to.
    PrintWriter writer;
    * Create a ChatServer.
    * @param maxConnections the total number if connections allowed.
    public ChatServerImplementation(int maxConnections) throws RemoteException {
         clients = new Hashtable(maxConnections);
         this.maxConnections = maxConnections;
    * Increment the counter keeping track of the number of connections.
    synchronized boolean incrementConnections() {
         boolean ret = false;
         if (currentConnections < maxConnections) {
         currentConnections++;
         ret = true;
         return ret;
    * Decrement the counter keeping track of the number of connections.
    synchronized void decrementConnections() {
         if (currentConnections > 0) {
         currentConnections--;
    * Register with the ChatServer, with a String that publicly identifies
    * the chat client. A String that acts as a "magic cookie" is returned
    * and is sent by the client on future remote method calls as a way of
    * authenticating the client request.
    * @param object The ChatCallback object to be used for updates.
    * @param publicName The String the object would like to be known as.
    * @return The actual String assigned to the object for removing, etc. or
    * null if the client could not register.
    public synchronized String register(ChatCallback object, String publicString) throws RemoteException {
         String assignedName = null;
         if (incrementConnections()) {
         ChatClient client = new ChatClient(object, publicString);
         assignedName = "" + client.hashCode();
         clients.put(assignedName, client);
         out("Added callback for: " + client.getName());
         return assignedName;
    * Remove the client associated with the specified registration string.
    * @param registeredString the string returned to the client upon registration.
    public synchronized void unregister(String registeredString) throws RemoteException {
         ChatCallback cbk;
         ChatClient sender;
         if (clients.containsKey(registeredString)) {
         ChatClient c = (ChatClient)clients.remove(registeredString);
         decrementConnections();
         out("Removed callback for: " + c.getName());
         for (Enumeration e = clients.elements(); e.hasMoreElements(); ) {
              cbk = ((ChatClient)e.nextElement()).getCallback();
              cbk.addMessage("ChatServer",
                        c.getName() + " has left the building...");
         else {
         out("Illegal attempt at removing callback (" + registeredString + ")");
    * Sets the logging stream.
    * @param out the stream to log messages to.
    protected void setLogStream(Writer out) throws RemoteException {
         writer = new PrintWriter(out);
    * The client is sending new message to the server.
    * @param assignedName the string returned to the client upon registration.
    * @param data the chat data.
    public synchronized void sendMessage(String registeredString, String message) throws RemoteException {
         ChatCallback cbk;
         ChatClient sender;
         try {
         out("Recieved from " + registeredString);
         out("Message: " + message);
         if (clients.containsKey(registeredString)) {
              sender = (ChatClient)clients.get(registeredString);
              for (Enumeration e = clients.elements(); e.hasMoreElements(); ) {
                   cbk = ((ChatClient)e.nextElement()).getCallback();
                   cbk.addMessage(sender.getName(), message);
         else {
              out("Client " + registeredString+ " not registered");
         catch(Exception ex){
         out("Exception thrown in newData: " + ex);
         ex.printStackTrace(writer);
         writer.flush();
    * Write s string to the current logging stream.
    * @param message the string to log.
    protected void out(String message){
         if(writer != null){
         writer.println(message);
         writer.flush();
    * Start up the Chat server.
    public static void main(String args[]) throws Exception {
         try {
         // Create the security manager
         System.setSecurityManager(new RMISecurityManager());
         // Instantiate a server
         ChatServerImplementation c = new ChatServerImplementation(10);
         // Set the output stream of the server to System.out
         c.setLogStream(new OutputStreamWriter(System.out));
         // Bind the server's name in the registry
         Naming.rebind("//" + args[0] + "/ChatServer", c);
         c.out("Bound in registry.");
         catch (Exception e) {
         System.out.println("ChatServerImplementation error:" +
                        e.getMessage());
         e.printStackTrace();
    Using my own machine (connected to a network), I tried to test this one out by setting mine as the server and also the client. I did the following:
    1. Compile the source code.
    2. Use rmic to generate the skeletons and/or stubs from the ChatCallbackImplementation and ChatServerImplementation.
    3. Start the rmiregistry with no CLASSPATH
    4. Start the server successfully.
    5. Start the applet using the AppletViewer command.
    It worked fined.
    The problem is when I ran the applet using the browser, IE explorer, the dialog boxes, frame and buttons did appear. I was able to do the part of logging on. But after that, the applet seemed to have hang. No message appeared that says I'm connected (which appeared using the appletviewer). I clicked the send button. No response.
    I double-checked my classpath. I did have my classpath set correctly. I'm still trying to figure out the problem. Up to now, I don't have any clue what it is.
    I will appreciate much if someone can help me figure what's could have possibly been wrong ....
    Thanks a lot ...

    Hi Domingo,
    I had a similar problem running applet/rmi with IE.
    Looking in IE..view..JavaConsole error messages my applet was unable to find java.rmi.* classes.
    I checked over java classes in msJVM, they're not present.
    ( WinZip C:\WINDOWS\JAVA\Packages\9rl3f9ft.zip and others from msVM installed )
    ( do not contain the java.rmi.* packages )
    I have downloaded and installed the latest msJVM for IE5. ( I think its included in later versions)
    @http://www.objectweb.org/rmijdbc/RJfaq.html I found ref to rmi.zip download to provide
    these classes. I couldn't get the classes from the site but I managed to find a ref to IBM
    site @http://alphaworks.ibm.com/aw.nsf/download/rmi which had similar download.
    The download however didn't solve my problems. I was unable to install rmi.zip with
    RmiPatch.exe install.
    I solved this by extracting the class files from rmi.zip and installing them at C:\WINDOWS\JAVA\trustlib ( msJVM installation trusted classes lib defined in
    registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Java VM\TrustedLibsDirectory )
    This solved the problem. My rmi/applet worked.
    Hope this helps you.
    Chris
    ([email protected])

  • Can you view text outside of the canvas? as with the view menu you can see animation paths, bounding boxes and handles??? many thanks

    re: Motion 5
    can you view text outside of the canvas? as when using the view menu you can see animation paths, bounding boxes and handles???
    I'm in the middle of a text animation design treatment and unless my memory is completely failing I thought this was an option.
    An example would be selecting all layers and being able to see all bounding boxes and animation paths while moving along the timeline.
    Of course this could be quite a mess if you couldn't selectively chose which layers, its just with this current project it would be so helpful if
    I could see the text beyond the canvas to aid in my animations.
    many thanks,
    robert
    Motion 5
    2014 MacBook Pro 2.6Ghz i7
    16GB RAM
    OS X 10.9.5
    2011 Mac Pro
    4 Boot drives OS X 10.9.4, 10.10, 10.7, 10.8
    960GB OWC Mercury Accelsior_E2 PCI Express SSD (Current screaming fast boot drive)
    64GB RAM

    thanks for both of your responses
    I do understand shift + v " to "Show Full View Area" and shift + z to fill screen, etc.
    and command + & - for zooming
    what I'd like to do is selectively view, say, the text outside of the canvas as you can see the bounding box
    which contains the text or object when selecting one or all layers in the layers column
    I haven't used this feature in a while though I do recall using it in the past.
    Any help would greatly appreciated
    thanks,
    R.

  • Flash Player Plugin 14.0.0.145 can't view swf embedded in the powerpoint anymore?

    Flash Player Plugin 14.0.0.145 can't view swf embedded in the powerpoint anymore?

    Hello,
    There is a known issue with Flash not working in Power Point in Flash Player 14.0.0.145.  It will be fixed in the next release.  In the mean time, you can download a beta build containing the fix at http://www.adobe.com/go/flashplayerbeta.
    If you have comments on the beta build, please post them at Flash Player Beta Channel, instead of here on the 'Using Flash Player forums.
    Maria

  • Why i can't select my applet by the AID?

    why i can't select my applet by the AID successed? but the applet has really been loaded into the card.
    because i sent "Get Status" command, i can read the applet package id from the card,
    real applet AID is "A0 00 00 00 62 03 01 0D 02 02",
    but return by card is "a0 00 00 00 62 00 00 00 00 02"
    and if i use the "false AID "a0 00 00 00 62 00 00 00 00 02,every operation step would be ok.
    can anyone tell me why this happen? thanks
    "get status instruction"
    => 80 f2 10 00 02 4f 00 00
    <= 08 54 46 52 49 41 49 01 02 01 00 01 09 54 46 52 49 41 49 01 02 01 06 a0 00 00 00 03 10 01 00 02
    07 a0 00 00 00 03 10 10 07 a0 00 00 00 03 10 4d 07 54 46 52 41 60 45 44 01 00 02 08 54 46 52 41
    60 45 44 01 0a 54 46 52 41 60 45 44 50 53 45 07 54 46 52 49 41 85 85 01 00 00 08 54 46 52 49 41
    10 01 08 01 00 01 09 54 46 52 49 41 10 01 08 01 09 a0 00 00 00 62 03 01 0d 02 01 00 01 0a a0 00
    *00 00 62 00 00 00 00 02* 90 00
    the whole download cap file procedure as follw:
    => 80 50 00 00 08 01 11 3d bc d4 4b fb 61
    <= 00 00 23 d1 22 92 01 00 56 7e 0d 02 00 a0 4f 83 e1 65 d4 4b 5c 1e ee 30 ad d8 99 63 90 00
    => 84 82 00 00 10 b8 d7 57 d8 be b7 02 28 20 88 80 13 14 f6 d0 11
    <= 90 00
    => 80 e6 02 00 16 09 a0 00 00 00 62 03 01 0d 02 08 a0 00 00 00 03 00 00 00 00 00 00
    <= 00 90 00
    => 80 e8 00 00 80 c4 82 01 eb 01 00 25 de ca ff ed 02 02 04 00 01 09 a0 00 00 00 62 03 01 0d 02 11
    63 6f 6d 2f 74 65 73 74 2f 64 65 73 63 72 79 70 74 02 00 21 00 25 00 21 00 0e 00 1f 00 5a 00 10
    00 c6 00 0a 00 23 00 00 00 b8 03 5a 00 00 00 00 00 00 03 01 00 04 00 1f 03 02 01 07 a0 00 00 00
    62 01 01 02 01 07 a0 00 00 00 62 01 02 02 01 07 a0 00 00 00 62 02 01 03 00 0e 01 0a a0 00 00 00
    62 00 00 00 00
    <= 90 00
    => 80 e8 00 01 80 02 00 01 06 00 10 00 00 00 80 03 03 00 03 07 02 00 00 00 6f 00 1e 07 00 c6 00 01
    30 8f 00 07 8c 00 15 7a 03 10 18 8c 00 0a 18 10 08 04 8d 00 04 87 00 18 8b 00 08 7a 06 32 03 32
    1d 60 07 05 29 04 70 05 04 29 04 18 06 10 40 03 8d 00 0f 94 00 00 13 87 01 18 08 03 8d 00 0c 87
    02 ad 01 1a 10 0d 8e 03 00 13 05 ad 02 ad 01 16 04 8b 00 0e ad 02 1a 08 10 08 ad 00 03 8b 00 03
    3b ad 00 03 1a
    <= 90 00
    => 80 e8 00 02 80 08 10 08 8d 00 0b 3b 7a 03 23 19 8b 00 09 2d 19 8b 00 11 5b 32 18 8c 00 10 60 03
    7a 1a 03 25 60 08 11 6e 00 8d 00 05 1a 04 25 73 00 1b 00 01 00 02 00 0b 00 13 18 04 1a 8b 00 14
    70 10 18 03 1a 8b 00 14 70 08 11 6d 00 8d 00 05 19 8b 00 0d 29 04 19 10 10 8b 00 12 19 08 10 10
    8b 00 06 7a 08 00 0a 00 00 00 00 00 00 00 00 00 00 05 00 5a 00 16 02 00 02 02 02 00 02 00 02 00
    02 01 03 82 01
    <= 90 00
    => 80 e8 80 03 6f 01 06 80 08 0d 06 80 07 01 03 80 0a 04 01 00 02 00 03 80 03 01 03 80 0a 01 06 80
    03 00 06 80 10 02 06 82 01 00 03 80 0a 07 03 82 01 03 06 81 0d 00 04 00 02 03 03 80 0a 06 03 80
    0a 09 01 81 0a 00 03 00 02 08 06 00 00 0a 09 00 23 00 09 18 22 08 02 0a 02 07 06 07 00 16 04 03
    07 07 06 18 04 08 0b 0a 0c 0b 08 05 06 0e 14 08 08 04 08 07
    <= 00 90 00
    => 80 e6 0c 00 26 09 a0 00 00 00 62 03 01 0d 02 0a a0 00 00 00 62 03 01 0d 02 02 0a a0 00 00 00 62
    03 01 0d 02 02 01 00 02 c9 00 00
    <= 6a 80
    => 80 f2 10 00 02 4f 00 00
    <= 08 54 46 52 49 41 49 01 02 01 00 01 09 54 46 52 49 41 49 01 02 01 06 a0 00 00 00 03 10 01 00 02
    07 a0 00 00 00 03 10 10 07 a0 00 00 00 03 10 4d 07 54 46 52 41 60 45 44 01 00 02 08 54 46 52 41
    60 45 44 01 0a 54 46 52 41 60 45 44 50 53 45 07 54 46 52 49 41 85 85 01 00 00 08 54 46 52 49 41
    10 01 08 01 00 01 09 54 46 52 49 41 10 01 08 01 09 a0 00 00 00 62 03 01 0d 02 01 00 01 0a a0 00
    00 00 62 00 00 00 00 02 90 00
    => 80 e6 0c 00 26 09 a0 00 00 00 62 03 01 0d 02 0a a0 00 00 00 62 00 00 00 00 02 0a a0 00 00 00 62
    00 00 00 00 02 01 00 02 c9 00 00
    <= 00 90 00
    => 00 a4 04 00 0a a0 00 00 00 62 03 01 0d 02 02
    <= 6a 82
    => 00 a4 04 00 0a a0 00 00 00 62 00 00 00 00 02
    <= 90 00

    => 80 e6 0c 00 26 09 a0 00 00 00 62 03 01 0d 02 0a a0 00 00 00 62 00 00 00 00 02 0a a0 00 00 00 62
    00 00 00 00 02 01 00 02 c9 00 00
    <= 00 90 00 Your applet is successfully installed with an instance AID of a0000000620000000002
    80 e6 0c 00 26
        09 a00000006203010d02 // Load file AID
        0a a0000000620000000002  // Module AID
        0a a0000000620000000002  // Application/instance AID
        01 00
        02 c900
        00
    => 00 a4 04 00 0a a0 00 00 00 62 03 01 0d 02 02
    <= 6a 82 This is selecting by load file AID (package AID) and will fail
    => 00 a4 04 00 0a a0 00 00 00 62 00 00 00 00 02
    <= 90 00This is selecting by application AID and succeeds as expected.
    - Shane

  • How can I view a video with the extension .wlmp?

    How can I view a video with the extension .wlmp?

    Nevermind. Found wlmp reference elsewhere in these discussions.

  • I can't run an applet from the browser

    I created an applet using the JDeveloper 3.1 wizard. The applet works in the JDeveloper environment and from the command line using the appletviewer. However, it won't work from the browser (ie 5.0 or netscape 4.7). The error I am receiving from the java console is:
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.debugoutput read)'
    Diagnostics: Silencing all diagnostic output (use -Djbo.debugoutput=console to see it)
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.timing read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.function read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.level read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.linecount read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.trace.threshold read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.jdbc.driver.verbose read)'
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.sql.SQLPermission setLog)
    Please help.

    these are java 2 security permissions you'll need to address ..
    review the java 2 security permission chapter of the "java developer's guide"
    you can find the documentation in the "java documentation" section of documentation for your rdbms version at the following link : http://otn.oracle.com/docs/products/oracle8i/doc_index.htm
    null

  • I recently updated iphoto 11 and now I can't view my photos in the iphoto library.  Screen is blank,  but photos will show if played as slide show.  What's going on? ? ?

    On Friday, October 28th I updated my iphoto 11 because I received notice from Apple that I should do so for better stability in the program.    Today I opened I photo and found that although all my events show they are present and the number of photos in the library appears correct,  when I click on an event to view the contents, I get a black screen.   I am told there are no photos in the event.   When I return to the iphoto page it again shows all my events with pictures of the photos in the event thumbnails and the number of pictures in each event.    I can not actually view these photos individually.      Now here's the strange part,  when I select an event thumbnail and right click,  I can choose to view the event as a slide show, complete with music and special effects and it will play normally.   But no way can I view the event photos individually.     I have one event that claims to be empty, no photos in it,  yet when I click on that event  all 346 pictures pop up for individual viewing,  but will not play as a slide show.    I am totally confused and want my iphoto put back to normal.  
    Has anyone else had this problem?
    How do I uninstall the update,  or failing that how do I get my photos back? ?

    Hi Liz,
    Sorry to hear you are having a similar problem.  Last night I went to the tool bar at the top of iphoto, clicked on "File",  then clicked "Browse Backups" in the drop down menu.    I have an external hard drive that is set up to Time Machine.   The Browse Backups  opened the iphoto pages in the Time Machine.  I selected a date one day ahead of the day I performed the now infamous update, and it showed my iphoto library as it had existed that day.   I then clicked  "Restore Library" at the bottom right corner of the Time Machine screen.   Roughly 2 hours later my iphoto was back to normal.   When I opened iphoto there was a message saying I need to upgrade my program to be compatible with the new version of iphoto(version 9.2.1).  I clicked "Upgrade" and within seconds it had done whatever upgrading it needed to do. 
    The only glitch in the restoration was that it restored the library as it appeared last week, so I no longer had photos I had imported this past weekend.   I simply went back to the Browse Backups in the drop down menu,  when Time Machine opened I selected the page showing my pictures from this weekend and again said to Restore Library.   Roughly 45 minutes later the library was restored including the most recent photos.  
    I am now a happy camper. 
    I don't know if any of this will be of help to you because your email says you are having trouble with photos imported after the upgrade was performed.   Have you had any pop up notices when you first open iphoto,  that tell you you need an upgrade to be compatible with the new iphoto?     If so have you clicked "upgrade"? 
    Good luck Liz,  if you have Time Machine running as a back up to your library, maybe you wil be able to get help there, by following my instructions above.   Otherwise,   good luck with your investigations.   I'd be interested in hearing how you make out.
    Karen

  • Can't view Quicktime Movies on the web

    this is what im trying to view
    http://www.solent.ac.uk/360/hamwic_bedroom.html
    it worked a while back but not now, now i get the light blue logo with the question mark
    cant change file types in preferences they are not greyed out they dont even show as a list, it says programatically set
    i found qtp whatever it was in regedit changed everything to full control
    moved quicktime .xml file onto desktop from apple computer folder
    uninstalled and installed quicktime a few times
    tried with ie8 google chrome and cometbird
    no luck
    quicktime is terrible, i dont know why so many things on the web need it to play, they may as well ask notepad to open the files.
    cheers

    I'm having the exact same problem... Don't know when but IE and Firefox are refusing to play quicktime files. I can run the quicktime player and play MP3 and MOV files (which is what I normally do) but nothing is playing from the browser.
    I've tried pretty much everything I can think of... in the end, QuickTime is not showing up under Set Default Programs or Set Program Associations (via QuickTime Preferences->Browser->MIME Settings or File Types).
    I can install QT-Lite, and everything works for the browser... except now I don't have a standalone player that plays MP3 and MOV files because I cannot have QT-Lite installed alongside QuickTime.
    Please advise.
    Thanks,
    Jason

  • Not seeing the applet in the browser

    Hello!
    I "compile"(correct expression?) this "hello.java" with Javac hello.java and that works fine(no eror msg), but when I try to view the applet in IE, it is not working. When loading it in the browser, after a while it says, in the status bar "Applethello not loaded"
    Thanks in advance.
    Klas
    import java.applet.Applet;
    import java.awt.Graphics;
    class hello extends Applet{
    public void paint(Graphics g){
    g.drawString("Hello world!",20,15);
    And the HTML file (hello.html) :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> Java </TITLE>
    </HEAD>
    <BODY>
    <applet code="hello" width=100 height=100>
    </applet>
    </BODY>
    </HTML>

    Hello!
    Thanks for the answers, really. Now have a new problem, when I tried to "Javac hello.java", in Dos, it says "Error occorred during initialization of VM, Could not reserve enough space for object heap"
    I took a "mem", it says
    Biggest exe-able size 566k(the hello.java is just 211 byte long)
    Windows 98, 64MB
    Klas

  • Can not view monitor values in the management portal

    hi 
    in the last 3 days when trying to view the monitoring values on cash we receive the following error
    The server could not retrieve metrics (Internal Server Error).
    we can not see the usage values .
    is there an alternative method to see the numbers
    best
    Guy  

    Hi,
    I receive this error even if I create a new cache preview yesterday, however, it didn't give me error today, all cache preview works fine today, what about yours? May be a glitch.
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I view multiple sheets at the same time?

    My search fu hasn't been up to finding how, or if it is possible, to view multiple sheets of the same document at the same time. Can it be done? Either a split view in a single window or multiple windows would be fine.

    marchyman wrote:
    Thanks for the answer. Another workaround is to copy the table that I'm interested in and move it to the sheet where I want to see it. When done I can copy it back or delete it. Just seems like extra effort for something that should be built in.
    No need to copy the sheet. You could just drag it to the sheet where you want to see it, and when done, drag it back 'home'. (This can be done using the icons in the sidebar.)
    Caution: Changing to this method will require vigilance on your part to prevent accidently deleting the table instead of moving it. frequent Saves are recommended.
    Regards,
    Barry

  • How can I view 2 pages on the screen?

    With old Pages there was an option in Zoom to see One Up or Two Up. But this has now disappeared. How can I see Two Up?

    A temporary work around if you're stuck in the new Pages is to go to File>Print and then open in Preview and select the 2 page view. At least you can see what it looks like but you won't be able to edit anything.
    Make sure you submit a review on the App Store and list this feature as missing. Features that are most in demand will rise to the top of the to-do list unless there is some reason why Apple won't re-instate the feature.

  • How can I distinguish between applets from the servlet end??

    What I'm looking for is just a way to distiguish between one applet from another on the servlet side. I know the session name and id will be helpful in this case. I was wondering, can I get the name of the client applet(Ex: appletClientOne or appletClientTwo) so that I can keep track of which messages to send to specific applet.

    Yes. Store the name of the applet in a cookie or HTML hidden input tag. Your other option is to connect to different URL's on your Servlet. Finally, you could use a combination of the above, and then set which applet a user is using in his/her HttpSession.
    - Saish

  • When I open Facebook in Firefox, I can't view messages or use the drop-down menus in the top toolbar.

    These problems only occur when I access Facebook in Firefox. The same problems don't occur in Chrome.
    I can view my Facebook message inbox, but when I try to open a message/message thread, it doesn't load. I just see the loading icon.
    Similarly, if I try to use the icons in the top menu bar (notification icons on the left, arrow on the right), I don't get a drop-down if I click on them. If I click the notification icons on the top left, I should get a drop-down showing the recent activity, but instead it just switches to the icon showing that I don't have any new activity. If I click the arrow on the right, I should get a drop-down with account options, but instead it just takes me straight to the "General Account Settings" page.

    Thanks! I just did this, and now Facebook messaging and the drop-down menu both work.
    To be honest, I'm not sure why this fixed the problem-- I had already gone into my list of exceptions and set www.facebook.com to "Allow," but for some reason adding facebook.com and setting it to "Allow" solved the problem.

Maybe you are looking for

  • QM PLant settings - Cost center

    HI QM Gurus, In the inspection lot completion tab for QM Plant settings in customization we have two feilds Cost Center - Scrap and Destruction What is the significance of Cost center feilds in QM Plant settings? What will happen if I do not use any

  • WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?

    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ? I have installed KB2734608, but when I search MS13-101 , no patch for Win 2012. Can you help me resolve this problem ? Thanks

  • SharePoint 2013 Standalone installation issue

    Hi Everyone I tried to install SharePoint 2013 Standalone installation and encountered an issue during Config wizard Error : Cannot create configuration database. User not found. Any help please Regards Prashanth SharePoint Administrator

  • V.V.Urgent

    Hi, My Object is I want Equipment data Send From SAP R/3 to SAP XI. When ever a Change,Create of Equipment Generated By Using IE01,IE02 Transactions it generatres a event  comes to  table "ZABC" creating a new record. I want to post the last record D

  • Mail Filters - up to rule #9

    I'm up to up to rule #9 with no end in sight. The more rules I set up, the more junk still gets through. Is there something else I can do? .... short of passing a new zero tolerance spamming law ..... wading thru this crap several times a day is eati