Trouble with chat applet

I am having trouble accessing the chat room on http://www.body4life.broehm.com/contact.htm (left side is the sign on). I am using Java 2 Platform Standard Edition. I tried to switch to the Microsoft VM, however there is no box in the tools>internet options>advanced to choose this.
This is what I get in the console:
java.lang.ClassCastException
     at com.diginet.digichat.network.w.g([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.network.w.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.network.w.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.j.h([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.i.a([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.h.a([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.r.run([DashoPro-V1.3BETA-091199])
     at java.lang.Thread.run(Unknown Source)
java.lang.ExceptionInInitializerError
     at com.diginet.digichat.awt.af.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.awt.af.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.i.a([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.h.a([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.client.r.run([DashoPro-V1.3BETA-091199])
     at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ClassCastException
     at com.diginet.digichat.network.w.g([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.network.w.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.network.w.<init>([DashoPro-V1.3BETA-091199])
     at com.diginet.digichat.common.a0.<clinit>([DashoPro-V1.3BETA-091199])
     ... 6 more
ChatClient.login()
What can I do?
Thanks, Jeff

Ok, here is what the webmaster said:
"I am sorry your having that problem. It seems to be problem with your system at home."
Gee, no kidding! In other words, he was no help.
Does anyone have any other ideas of what I might be able to do. I should note that at work, where I do not have any trouble getting in, I DO NOT have the Sun 2 installed.

Similar Messages

  • Trouble with an applet on  a jsp page

    hi, thanx for readin it!
    im developing a webapp tha have some swing applets , the problem is that the applets dont work, they appear but dont play anything, i use the jsp:plugin to load the applets on the jsp, i also have instaled the java plugin on my win xp pc, i use tomcat 5. well i hope you can help me

    were are the applet classes? under WEB-INF? If so, then they shouldn't be as the server won't server files under that directory and the browser needs them

  • How to activate browser(to top) whenever chat applet recieves new  message

    This is problem with Chat applet. This chat applet is placed in a web page. It is working fine with all the messages recived. But my problem is , the page(if winow is minimized)) sholud activate to top of all applications whenever applet recieves a new message .
    How can this be solved.
    Thanks

    Well, you could try getting the parent window of the applet (use getParent() till you find a Window object) and call toFront, but I don't think there's anything you can do if it's minimized.

  • Having trouble with my signed applet(if it's properly signed that is)

    hi
    I'm having trouble with my supposedly signed applet. I'm trying to execute a specific program in this case trilian from my browser. i'm using firefox
    first my java code
    package applet;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class RunApplet extends JApplet {
        JButton jButton = new JButton();
        FlowLayout flowLayout1 = new FlowLayout();
        public RunApplet() {
            try {
                init();
            } catch (Exception ex) {
                ex.printStackTrace();
        private void init() throws Exception {
            try {
                this.getContentPane().setLayout(flowLayout1);
                this.setSize(new Dimension(100, 200));
                jButton.setText("Trillian");
                jButton.addActionListener(new RunApplet_jButton_actionAdapter(this,
                        "\"C:\\Program Files\\Trillian\\trillian.exe\""));
                this.getContentPane().add(jButton, null);
            } catch (Exception e) {
                e.printStackTrace();
    class RunApplet_jButton_actionAdapter implements ActionListener {
        private RunApplet adaptee;
        private String programPath;
        RunApplet_jButton_actionAdapter(RunApplet adaptee, String programPath) {
            this.adaptee = adaptee;
            this.programPath = programPath;
        public void actionPerformed(ActionEvent e) {
            try {
                Runtime.getRuntime().exec(this.programPath);
            } catch (IOException ex) {
    }And my applet code
    <html>
    <body>
    <!--"CONVERTED_APPLET"-->
    <!-- HTML CONVERTER -->
    <object
        classid = "clsid:CAFEEFAC-0015-0000-0005-ABCDEFFEDCBA"
        codebase = "http://java.sun.com/update/1.5.0/jinstall-1_5_0_05-windows-i586.cab#Version=5,0,50,5"
        >
        <PARAM NAME = CODE VALUE = "applet.RunApplet.class" >
        <PARAM NAME = ARCHIVE VALUE = "myfile.jar" >
        <param name = "type" value = "application/x-java-applet;jpi-version=1.5.0_05">
        <param name = "scriptable" value = "false">
        <comment>
         <embed
                type = "application/x-java-applet;jpi-version=1.5.0_05" \
                CODE = "applet.RunApplet.class" \
                ARCHIVE = "myfile.jar"
             scriptable = false
             pluginspage = "http://java.sun.com/products/plugin/index.html#download">
             <noembed>
                </noembed>
         </embed>
        </comment>
    </object>
    <!--
    <applet CODE = "applet.RunApplet.class" ARCHIVE = "myfile.jar">
    </applet>
    -->
    <!--"END_CONVERTED_APPLET"-->
    </body>
    </html>Creating my key:
    keytool -genkey -alias sitekey -keystore "C:\Program Files\Java\jdk1.5.0_05\jre\lib\security\cacerts"Now the process of creating the jar file and signing it:
    1. jar cf myfile.jar *.class
    2. jarsigner -keystore "C:\Program Files\Java\
    jdk1.5.0_05\jre\lib\security\cacerts" myfile.jar sitekeyNow this is the way i've been using then and the first time i get the "do you want to trust" screen but still i get a security exception.
    Exception in thread "AWT-EventQueue-10" java.security.AccessControlException: access denied (java.io.FilePermission <<ALL FILES>> execute)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkExec(Unknown Source)
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at applet.RunApplet_jButton_actionAdapter.actionPerformed(RunApplet.java:73)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Is there anybody who have an idea what can be wrong?
    regards
    thallish

    ok i solved i myself. i assigned a different and thereby correct keystore and now it works like it should
    regards
    thallish

  • I am having trouble with my JAVA Applet. It isn't functioning on SAFARI.    It seems to have stopped working and I used it on SAFARI last year. Any suggestions ?

    I am having trouble with my JAVA Applet. It isn't functioning on SAFARI.    It seems to have stopped working and I used it on SAFARI last year. Any suggestions?

    Post in the Safari forum area.

  • I have a trouble with the clipboard inside an applet

    I have created simple text editor as applet (by JTextPane). I have a trouble with the clipboard. The clipboard works correctly inside the applet, but I'm not able to paste text from outside text editors (e.g. notepad). But I found out that clipboard works correctly inside appletviewer.
    You can visit the applet on: http://www.newlink.be/abst/
    Please help
    P.S.: I'm sorry for my bad english

    This is because applets do not have access to the system clipboard by default. The only way to get around this is to make a signed applet.

  • Trouble with applet tutorial about servers

    I downloaded the sources of this (http://java.sun.com/docs/books/tutorial/deployment/applet/clientExample.html) example and am trying to make them work. However I'm having trouble with the server program.It compiles fine but when I run it I get NullPointerException in QuoteServerThread class on this line:
    packet = new DatagramPacket(buf, 256);buf is a byte array and it's set to null.
    I don't have any experience with networking in java so if the problem is something really simple you'll know why I didn't find it.
    Oh, and the code of the thread is here http://java.sun.com/docs/books/tutorial/deployment/applet/examples/QuoteServerThread.java

    Replace
    byte[] buf = null;with
    byte[] buf = new byte[ 256 ];Other problems may happen if this sample was not tested properly.
    The problem is that the DatagramPacket requires you to supply a non-null buffer, as per:
    DatagramPacket
    public DatagramPacket(byte[] buf, int length)
    Constructs a DatagramPacket for receiving packets of length length.
    The length argument must be less than or equal to buf.length.
    Parameters:
    buf - buffer for holding the incoming datagram.
    length - the number of bytes to read.
    Edited by: baftos on Jul 18, 2008 3:38 PM

  • Yet another chat applet, but with good reason...

    Hi, I realise there are thousands of perfectly good chat applets out there (and millions of rubbish ones) but this is a last ditch to make something functional, fun and effective for my Computing Coursework. Thanks to AQA's sylabus, any remotely interesting topics are inplausable as it would result in me getting an instant U.
    My questions on this topic are as follows...
    What would be the best way to connect applets to server?
    - Straightfoward Sockets
    - RMI
    - XML-RPC
    With the last two would these run on joe user's browser without an additional extra bit being installed? Also, if sockets is the best answer is it possible to use XML as my data transfer medium? How can I encrypt this? If RMI is the best solution, are there any quick and concise tutorials kicking around? Will RMI be secure? How can I make it secure? Are all of the above clouding the issue too much and is there a better solution?
    Thanks in advance. Sorry if that left your head in a spin...
    - Andrew

    I did this a few years ago with straight socket communication. I would say start off with that, then if you'd like to use XML you can still send XML through the existing socket connections and parse it on the other end. But, there's no reason to make it more complicated than you need it, especially if you'll get a bad grade.

  • Trouble with Applet loading

    hi, new to java; after a mind-boggling and frustrating exercise of finally getting the 'Hello World' application to execute using DOS command, I am now stuck with the applet version/
    The html file written in note pad is saved in the same directory as the HelloWorldApp.java and the HelloWorldApp.class which I had initially used when running from DOS/
    from what I understand, I have to include the "HelloWorldApp.class" file within the applet as tag/
    after i execute the html file in the browser(Internet Explorer), all I get is a greyish square with no writing inside of it/
    please keep in mind i'm new at this and not very technicaly inclined at times, so don't say anything like, "the exe. file tags within the path of the ini. is a variable inside the memory location x0x0x0x0x which has to over-written with a command...."
    please help, appreciated :)

    from what I understand, I have to include the
    "HelloWorldApp.class" file within the applet as tag/
    after i execute the html file in the browser(Internet
    Explorer), all I get is a greyish square with no
    writing inside of it/Look in the taskbar or control panel for Java console. Open it and see the exception messages you are getting.
    please keep in mind i'm new at this and not very
    technicaly inclined at times, so don't say anything
    like, "the exe. file tags within the path of the ini.
    is a variable inside the memory location x0x0x0x0x
    which has to over-written with a command...."
    please help, appreciated :)Read the applet tutorial and verify that you have correctly followed all the steps
    http://java.sun.com/docs/books/tutorial/applet/

  • Update of photoshop CC - trouble with NVIDIA Quadro 1000M display driver. PS freezes

    Hey guys,
    Since today I've got trouble with my PS CC.
    I've updated PS CC yesterday 2014-12-12.
    I was doing some drawings today and two times PS freezes during switching layers of or selecting a mask.
    A message appeared that there was trouble with the display driver an PS switched off the GPU support because of that issue.
    Ok, I thought let's update the display driver and so I've done today. I switched to actual NVIDIA display driver version 314.21
    I'm working with an NVIDIA Quadro 1000M on a DELL mobile Workstation Precision M4600 with 8 GB RAM.
    Now when I start up PS and press alt+k, my 2 displays showing a black screen for 1-2 seconds.
    After closing the general setup window again black screen for 1-2 sec and the top menu bar is showing no entries.
    When I move the mouse pointer over the bar, the menus appear again. But the bar is like transparent at the parts where no menues are.
    When I unlock the window from the screen an put it back fitting to the screen everything looks like normal.
    Till today I hadn't any problem with my notebook in that kind of way.
    Maybe someone has or had similar problems.
    Would be nice if someone can help me.
    thanks

    Oh, that sounds very bad. It's not that bad for me. It's not crashing that often at the moment, only black screens at start up or if setting dialog is opened. But I will see tomorrow how often it will crash, during today it crashed 2 times when doing some ridiculous simple actions like switchid to another layer  and the other time when trying to edit an mask layer. I will contact the support chat on monday regarding this issue. Maybe there is a solution or an update soon... I keep may fingers crossed for you.

  • Trouble With Opening InDesign and now Photoshop and Illustrator

    First off I apologize if this isn't in the correct section. I couldn't find a section specific to my problem since it involves multiple aspects of Adobe products. I was having trouble with InDesign, it kept crashing. So I followed all of the advice I could find on the forums about deleting the preferences and cache information in the Library folder, and that didn't seem to make a difference. So then I thought maybe it needed an update, so I logged into Adobe Application Manager and sure enough, it did. So I clicked on "download" and it stalled there too. Then the manager became unresponsive. I couldn't cancel the update or log out or anything. So then I saw in the forum someone suggested the Adobe Creative Cloud Cleaner Tool if your manager becomes unresponsive. I ran that and then shut my computer off. When I turned it back on, InDesign started working BUT my Photoshop is completely gone from my system (I never messed with it in the first place since I wasn't having any trouble with it.) And the when I tried to click on Illustrator it said "Do you want to begin your trial?" Huh?
    I have had a subscription since 2012, why on earth would it suddenly think that I no longer should have access to these programs? If I log on to my Adobe account it shows my subscription and that it's up to date (last payment was April 5, 2015). The versions I was using were the CS versions that I had downloaded directly from Adobe and when I used to have any trouble or when I got a different computer I could just log into my account and then redownload them. They are no longer showing under my products, so I can't figure out what on earth is going on. The website has changed since the last time I downloaded them, so that partly could be me, but I thought they would at least be showing up under products. I contacted Adobe support and the first person I talked to on chat said "this is clearly a technical issue I am transferring you to someone better suited for this," but that's all he said. And I haven't heard from anyone since so I thought I'd make a topic and see if anyone else out there has had a similar problem.

    The versions I am using are the CS6 versions.*

  • How to design a chat applet?

    Hello,
    I have to design a chat applet in such a way that two users on different systems should be able to chat to each other after they login into a site. The applet should be able to save the transcript after the chat gets over (and that is considered to be done when one of the users logs out or closes the browser window).
    How do I design such an applet? Should I use sockets to enable communication between the browsers? Is there any place where I can get source code for similar applets?
    Regards,
    Arun Jayaprakash.

    The pages have to be designed in ASP. The applet should only provide the functionality of a chat room with the specifications that I had mentioned in an earlier post.
    Regards,
    Arun Jayaprakash.

  • Java Chat applet won't send messages

    So i got a brand new MacBook Air yesterday with Mac OS X 10.8.2 and installed Java 7 Update 9 from Oracle.
    When using Safari 6 i run into a problem with a browser based Java chat applet.
    First of all: Java and Javascript are actibated in Safari.
    So I go to the chat's website and start the chat.
    Java works fine at first and the chat starts.
    People can send me private messages and i can type in a reply.
    However I cannot send these replies. Neither in the private messages (applet) nor in the main chat (browser).
    Any idea how to fix this issue?
    (BTW: Java 7 was the first Java ever installed on my Air, so no going back to Apples Java 6)

    And Java 7 Update 10 did not solve the problem either.
    Can anybody offer any ideas for a solution?
    Help would be much appreciated.

  • Problems with Java Applets

    Ever since upgrading to 10.5.2 I have been having trouble with sites with java applets. I like to play bridge on Pogo, but sometimes the game room will not open and at other times I get messages advising me to check the URL or go back to home page. I have tried emptying the cache, repairing permissions and a few other tips I have seen on this forum, but the problem persists.

    I decided to take a look, but the Bridge program requires a signup. Not interested, but the free Poppit game plays fine as a guest on my machine on both Safari 3.1 and FireFox 3.0b4.
    With FireFox I'm running AdBlock Plus, which can create problems with some sites, but the games loaded and played.
    Based on this, I'd check the time of day you are trying to use their site and see if there are more problems with certain times.

  • Chat applet

    hello,
    i developed a chat applet using JDK 1.3 .It is a swing applet.when i compile and run the applet ,it runs well inthe appletviewer.In IE ,it shows the following error "java.lang.ClassNotFoundException: javax.swing.JApplet".I think it needs java plugin.In JDK 1.3, javaplugin is already builtin.Then why it shows the above said error?.Kindly clarify the error.THIS IS VERY URGENT.

    i also have done that type of applicaton with messenger , if you use Only Applet
    then client side browser have also java plugin in defult and suport Applet but
    if you use JApplet then u should have to use java plugin which support Swing
    at client side.
    i come at this Forum some time, if you u have any problem then u can
    contect me at [email protected]
    OK ?

Maybe you are looking for

  • Mailbox Role: Mailbox Service

    I am trying to reinstall exchange 2013 and I have been getting the errors below in the exchange setup log. I have been going through a lot of knowledge bases and the suggestions hasn't been helpful. [02-09-2015 08:42:24.0144] [2] [ERROR] Database is

  • No costs visible for statistical WBS element

    Hi, The followin steps are the setup: - Project with a statistical WBS element and a network below - Create a PO with Account category "Fixed Asset" - Fill in a fixed asset, but also a (statistical) WBS element (put field 'project' optional in custom

  • Error "file is not a resource file" after updating to LV2010

    Hello everybody, my problem is that I can't call a c++ dll after updating to LV2010 and Visual Studio 2010. The DLL is written in Visual Studio 2008 and worked perfectly. Now I compiled the dll again because add some new functionality. In the develop

  • Finder in Column View always auto arranged by Date Modified

    My preferred default view is always Column View with Arranged By Kind, Sort By Name. Many times when I navigate around folders, it automatically switch to Arrange By Date Modified. This is very annoying, I have to either go back to previous folder an

  • SNMP V3 ISSUE

    I have 5 switches Catalyst 3500XL. When I try to configure SNMP V3 in Auth Mode, the software that monitor the Switcht (SNMPc 7.0) display me the follwing error: 'V3: unknown engine id' error for Status Variable Request. But in CAT 3550, the same con