Client/Server
hello all..
i have a client/server chatting swing applet ,i have already put the
client.class,server.class ,html code in the web server
in my server computer.
i have already used htmlconvertor .
but when i run the applet in my server computer writting:
http://chatprj/chatting/chat.html
it works well and opens ,but when i open the same page in another computer
the following message appears "class client not found".
where client is my applet in which is put in the html code.
what is the problem ,please i need help..
thanks
[602 byte] By [
Mhmha] at [2007-9-19]

hello..
i have used microsoft explorer 5 ,and here is the following original code followed by the converted
one:
<HTML>
<HEAD>
<TITLE>A Simple Program</TITLE>
</HEAD>
<BODY>
Here is the output of my program:
<applet code="chatClient.class" width=500 height=300>
</applet>
</BODY>
</HTML>
the converted one :
<HTML>
<HEAD>
<TITLE>A Simple Program</TITLE>
</HEAD>
<BODY>
Here is the output of my program:
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 500 HEIGHT = 300 codebase="http://java.sun.com/products/plugin/1.1.1/jinstall-111-win32.cab#Version=1,1,1,0">
<PARAM NAME = CODE VALUE = "chatClient.class" >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.1">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.1" java_CODE = "chatClient.class" WIDTH = 500 HEIGHT = 300pluginspage="http://java.sun.com/products/plugin/1.1.1/plugin-install.html"><NOEMBED></COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET CODE = "chatClient.class" WIDTH = 500 HEIGHT = 300 >
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
</BODY>
</HTML>
note that i do not use codebase because they are all in tha same directory.
please help thanks.