Socket « osgi « Java Enterprise Q&A





1. How to develop a client-server system with OSGi?    stackoverflow.com

I'm learning how to develop with OSGi in recent days, but facing a lot of problems. I don't know how to design my client-server system based OSGi with Equinox as framework. ...

2. Something wrong with my socket program    stackoverflow.com

I wrote a program communicated with sockets.But I don't know why they don't work. Server Code:

this.serverSocket = new ServerSocket(ServerConnector.port);
        this.socketListener = this.serverSocket.accept();
    ...

3. Serializable issues about resultset objects    stackoverflow.com

I want to implement a CS application using Sockets. The db query result are of different classes and I don't mean to put those methods handling the result in the server ...

4. How to send commands and recieve responses to OSGi console via a Java Socket?    stackoverflow.com

I want to run OSGi framework on another computer (in a main method). so wanted to know is there any way to connect to the OSGi console from the other computer ...