Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Note-I have tried to make my pc both server and client.

I tried a lot but cannot understand the reason my program hangs.

Whenever i click connect,program hangs.

Client Side

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.net.*;
import java.io.*;
 class chatboxClient {
 JFrame fr;
 JPanel p;
 JButton send;
 JTextArea ta;
 JRadioButton rb;
 chatboxServer cbS=new chatboxServer();

 chatboxClient() {

 fr=new JFrame("ChatBox_CLIENT");
 p=new JPanel();
 send=new JButton("send");
 send.addActionListener(new ActionListener() {       // action listener for send
  public void actionPerformed(ActionEvent ae) {
    sendActionPerformed(ae);
  }
 });
 ta=new JTextArea();
 ta.setRows(20);
 ta.setColumns(20);
 rb=new JRadioButton("Connect");               // action listener for connect
 rb.addActionListener(new ActionListener() {
 public void actionPerformed(ActionEvent ae) {
  connectActionPerformed(ae); 
  }
 });
 fr.add(p);
 p.add(ta);
 p.add(rb);
 p.add(send);
 fr.setSize(500,500);
 fr.setResizable(false);
 fr.setVisible(true);
}

 public void connectActionPerformed(ActionEvent ae) {
  try {
   cbS.Laccept();
   rb.setEnabled(false);
   JOptionPane.showMessageDialog(new JFrame()," Sockets InterConnected!");
  } catch(Exception exc) {
     JOptionPane.showMessageDialog(new JFrame()," Connection Error..");
  }
  }

 public void sendActionPerformed(ActionEvent ae) {
   try { 
String s=ta.getText();
InetAddress address=InetAddress.getLocalHost();
DatagramSocket ds=new DatagramSocket(3000,address);
byte buffer[]=new byte[800];
buffer=s.getBytes();
DatagramPacket dp=new DatagramPacket(buffer,buffer.length,address,3000);
if(true) {
     ds.send(dp);

     cbS.Receive(s); // call Receive method of chatboxServer class
    }
 }  catch(Exception exc) {
        JOptionPane.showMessageDialog(new JFrame(),"Error sending Message");
  }

}

 public static void main(String args[]) {
  new chatboxClient();
 }
}

SERVER SIDE

import java.awt.*;
import java.net.*;
import javax.swing.*;
import java.awt.event.*;
class chatboxServer {
 JFrame fr;
 JPanel p;
 JTextArea ta;
 JButton send;
 ServerSocket ss;
 byte buffer[]=new byte[800];

chatboxServer() {
fr=new JFrame("ChatBox_SERVER");
p=new JPanel();
ta=new JTextArea();
ta.setRows(20);
ta.setColumns(20);
send=new JButton("send");
fr.add(p);
p.add(ta);
p.add(send);
fr.setVisible(true);
fr.setSize(500,500);
fr.setResizable(false);

}

public void Receive(String sm) {
 try {
 buffer=sm.getBytes();
 InetAddress address=InetAddress.getLocalHost();
 DatagramSocket ds=new DatagramSocket(3000,address);
 DatagramPacket dp=new DatagramPacket(buffer,buffer.length);
 ds.receive(dp);
 String s=new String(dp.getData(),0,dp.getLength());
 ta.setText(s);  
}  catch(Exception exc) {
    System.out.println("Error Receiving..");
   }

}

  public void Laccept() {
    try {
      ss=new ServerSocket(3000);     // First making port number 3000 on server to listen
      Socket s=ss.accept();
    } catch(Exception exc) {
          JOptionPane.showMessageDialog(new JFrame(),"Accept Failed :3000 :Server Side");
      }  
  }
 } 

The part that i think is causing a problem is when i call to Laccept().

The output: enter image description here

enter image description here

Please help me in this.

share|improve this question
1  
Your code is not indented correctly - very hard to read! The pictures don't add any information. – Carlos Heuberger Mar 30 '11 at 9:53

2 Answers

up vote 1 down vote accepted

The program waits for a connection on TCP port 3000 in Laccept. Since this is called in actionPerformed it blocks the Event Dispatch Thread (EDT). This is the Thread responsible for managing GUI events and updating the screen. When the EDT is blocked, the GUI will be blocked - frames will not be updated, no reaction on input, ... the application hangs!
You must run such code in another Thread to avoid blocking the EDT: see Concurrency in Swing

Nowhere in the posted code a TCP connection to port 3000 is being opened!
Seams like you are mixing TCP (Socket, ServerSocket) and UDP (DatagramSocket).
See Networking Basics, All About Sockets and All About Datagrams as a start.

EDIT:
Basic idea:

// run outside the EDT
thread = new Thread(new Runnable() {
    @Override 
    public void run() { 
        Laccept();
    } 
}); 
thread.start();

Obs: invokeLater is used to force the code to run in the EDT. The documentation says:

Causes doRun.run() to be executed asynchronously on the AWT event dispatching thread.

share|improve this answer
@ Carlos Heuberger It still is not working...I tried this in main method SwingUtilities.invokeLater(new Runnable() { public void run() { new chatboxClient(); } }); – Suhail Gupta Mar 30 '11 at 13:01
@Suhail - this is no help since Laccept is not being executed in another Thread as it is still being called directly in actionPerformed! actionPerformed is always run in the EDT (when called by the GUI. Have you tried the tutorials I recommended above?? – Carlos Heuberger Mar 30 '11 at 13:12
@ Carlos Heuberger yes – Suhail Gupta Mar 30 '11 at 13:17
@Suhail Gupta: I'm impressed!! I updated my answer adding a sample. – Carlos Heuberger Mar 31 '11 at 12:05
@ Carlos Heuberger I have not successfull so far. I have tried this try { r=new Runnable() { public void run() { cbS.Laccept(); } }; } catch(Exception exc){} SwingUtilities.invokeLater(r); – Suhail Gupta Mar 31 '11 at 17:47
show 9 more comments

You are waiting for ever for a packet. I suggest you log when you send a packet and when you reciever it. Or you use a debugger to do the same.

UDP is a lossy protocol, unless your receiever is listening when the packet is sent, it will be lost (it can be lost anyway due to any number of reasons)

share|improve this answer
@ Peter Lawrey please edit your answer – Suhail Gupta Mar 30 '11 at 9:19
I have fixed some typos, thank you. Is there something specific you wanted me to add? – Peter Lawrey Mar 30 '11 at 9:22
@ Peter Lawrey i cannot understand your answer. – Suhail Gupta Mar 30 '11 at 9:37
I don't know what you don't understand unless you give me a hint. ;) – Peter Lawrey Mar 30 '11 at 9:58
1  
I explained why it makes a difference. What is your doubt? Using UDP reliably is an advanced programming technique. I would suggest you should know how to do this with TCP Sockets before attempting to use UDP. – Peter Lawrey Mar 30 '11 at 11:46
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.