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

I need to create a socket connection between my machine and a server. Then I need to send some sms to server from my mechine using smpp protocol. Now I am not being able to create the socket connection. Can any body help me by giving some code to create the socket connection.

My code is:

 import java.io.IOException;
 import java.net.Socket;

 import com.logica.smpp.TCPIPConnection;

 public class SocketConnection {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub

        SocketConnection tl= new SocketConnection();
        tl.connect();

    }


    public void connect()
    {
        TCPIPConnection tc = new TCPIPConnection("172.16.7.92", 9410);
        try {
            tc.accept();
            System.out.println("connected");

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
 }

this code is not working.

Thanks,

koushik

share|improve this question
3  
What does "not working" mean? Any error message? – Waldheinz Jul 14 '11 at 11:12

3 Answers

If you are trying to connect outwards to a server (rather than listen for incoming connections), then you shouldn't be calling accept.

share|improve this answer

Here's a simple example how to open a plain socket (to www.google.com, on port 80/HTTP) and use it to send and read data:

try {
    Socket socket = new Socket("www.google.com", 80);
    PrintWriter writer = new PrintWriter(socket.getOutputStream(), true);
    BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    writer.println("GET /");
    String line;
    while ((line = reader.readLine()) != null) {
        System.out.println(line);
    }
    socket.close();
} catch (Exception e) {
    e.printStackTrace();
}

For your case there seems to be an open() method for the TCPIPConnection. Probably you should use that instead of accept().

share|improve this answer

I'm not familar with this library, but looking into the Javadoc should call open or receive and not accept. The latter means your starting a server socket, but my understanding is that you want to connect to a remote server already started.

http://opensmpp.logica.com/CommonPart/Documentation/javadoc/library_1_3/index.html

share|improve this answer

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.