Win a copy of Getting started with Java on the Raspberry Pi this week in the Raspberry Pi forum!
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Jeanne Boyarsky
Sheriffs:
  • Rob Spoor
  • Devaka Cooray
  • Liutauras Vilda
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Piet Souris

live website chat application!

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all,

I want to make a live chat service for the website. Now, that i'm new to java, to start with i tried to run a chat application that i got from the search link.

http://www.cn-java.com/download/data/book/socket_chat.pdf

I'm using jdk 1.5_07 and an appletviewer to view my client applet.

The application consists of chat server, server thread ,chatclient and a clientapplet that uses a server socket on server side to listen the requests from clients n a socket on client side to connect to serversocket n threads for each user.Its a multiclient chat application.



The chat server is working fine.

But the chat client is working fine if client and server r run on the same local machine.

The client is also running fine on one of the systems in the LAN.


For rest of the systems chat clients is generating the following error:


error:

java.security.AccessControlException: access denied (java.net.SocketPermission 1
92.168.0.18:5000 connect,resolve)
at java.security.AccessControlContext.checkPermission(AccessControlConte
xt.java:264)
at java.security.AccessController.checkPermission(AccessController.java:
427)
at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
at java.lang.SecurityManager.checkConnect(SecurityManager.java:1034)
at java.net.Socket.connect(Socket.java:510)
at java.net.Socket.connect(Socket.java:466)
at java.net.Socket.<init>(Socket.java:366)
at java.net.Socket.<init>(Socket.java:179)
at Client.<init>(Client.java:40)
at ClientApplet.init(ClientApplet.java:18)
at sun.applet.AppletPanel.run(AppletPanel.java:378)
at java.lang.Thread.run(Thread.java:595)



I feel this is some kinda security check automatically performed by the jdk 1.5 as a result of which my client socket cannot get the access to server ip address.To fix this error, i even tried applying policy on the server side..but still its not working.

I'm using jdk 1.5_07 and an appletviewer to view my client applet.

Can anybody please tel me what can be done to resolve this issue. Since I'm new to this java world n this being my first live application...any help would be appreciated.

Can u also tell me the best technology that can be used to make a live chat application on website.

Thanks in advance.
 
Ranch Hand
Posts: 59
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Chat server/clients are very easy to write on your own.

Create a server using java.net.ServerSocket. Create a client using JApplet that uses java.net.Socket to connect to ServerSocket. Have the server fork a Thread for each connected client. And any Strings from the ServerSocket InputStream go the clients OutputStream. Any Strings from the client's OutputStream go to the servers InputStream, very simple.
 
reply
    Bookmark Topic Watch Topic
  • New Topic