Code Monkey home page Code Monkey logo

Comments (15)

nkzawa avatar nkzawa commented on August 11, 2024

Namespace is supported.
Did you call socket.connect(); ? Socket doesn't connect automatically.

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

Yeah, here's the java code:
https://github.com/Urucas/sting/blob/master/app/src/main/java/com/urucas/sting/library/Sting.java#L76

is this the correct way to create a chatroom

socket = IO.socket("http://sting.jit.su/urucas-sting");

where chatroom is "/urucas-sting" ?

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

You usually use room feature for chatroom on server side.

http://socket.io/docs/rooms-and-namespaces/

I'd like to know the details of your problem.
Do you mean you can't connect to the server with namespace at all?
Please set log level of java.util.logging to FINE if you can, it would be helpful.

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

yes, im using .of() for namesspaces but I dont know with it isnt connecting on android.

How do I set a room in the android code ?

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

You can't set a room in the android code. It's the feature for server side.

Can you connect to server without namespace?

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

Yes, without using namespace the library works great.

One question, how do I set the android app to connect to a certain room o namespace ? 'cause in js it works just using io("/chat-1"), I thouhgt in this library would the same

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

IO.socket("http://sting.jit.su/urucas-sting"); is the correct way to connect to a namespace.
So I don't know why you can't connect.
It might be a bug.

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

Please try to set log level ofjava.util.logging to FINE if you can. I'd like to see logs.

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

My connection works, 'cause the Log dumps connected -> yes

socket.on(Socket.EVENT_CONNECT, new Emitter.Listener() {
@Override
public void call(Object... args) {
    Log.i("connected", "yes")
}
});

But I think it is not sending the emit to the correct namespace.
I already put the java.util.logging to FINER. i'll copy some logs

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

07-22 09:53:31.697 16775-16775/? I/IO﹕ new io instance for http://sting.jit.su:80/urucas/sting
07-22 09:53:54.347 16775-16818/com.urucas.library.sting I/args﹕ [Ljava.lang.Object;@42749b50
07-22 09:53:54.347 16775-16818/com.urucas.library.sting I/connected﹕ yes

That all I get from logcat

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

do you know that socket.broadcast.emit("new user"); send data only to other sockets?
So if you want to listen 'new user' event and receive data, you have to connect with another client too.

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

Umm, you can't see the logs of socket.io-client.java and engine.io-client.java? I don't know why.

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

The idea is the android app control a slide on the web.
The android app emits socket.emit("right"), the server gets it and emit socket.broadcast.emit("right") and the slides on the web moves to the right.

Maybe i'll create a node server for each slide for now. This way I avoid using namespaces.

from socket.io-client-java.

nkzawa avatar nkzawa commented on August 11, 2024

Creating many servers is not good idea IMO.

If you want to emit to all clients of a namespace, do the following on the server side:

io.of('/urucas-sting').emit('new user');

it equivalent to:

// send to myself
socket.emit('new user');
// send to others
socket.broadcast.emit('new user');

from socket.io-client-java.

vrunoa avatar vrunoa commented on August 11, 2024

Found it, I was using .of() but I add another server router for the android client,
https://github.com/Urucas/sting/blob/master/js/app.js#L78

This was the original,
https://github.com/Urucas/sting/blob/master/js/app.js#L78

Using both it works!

Thanks for your replies.

from socket.io-client-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.