-
Hello,I did not found where I can create the room,so I have no room address.I can just create the room address written in database directly or other place?
It's done in the same place - "Join chatroom". If the room exists you will simply join. If not - it will be created.
I joined a chat room already,but the devices in the chat room can not chat with each others.Is my properties in config.tdsl is wrong?
Your configuration is ok.
Did you create the room in Stork? I tested it yesterday and it worked just fine.
-
@woj-tek Thank you,maybe something configuration was wrong,I paste my complete configuration here
admins = [ xxx ] 'config-type' = 'default' debug = [ 'server' ] 'default-virtual-host' = 'xx.xx.xxx' dataSource () { default () { uri = 'jdbc:mysql://xxx:xxx/tigasedb?user=im&password=123456&useSSL=false&useLegacyDatetimeCode=false&allowPublicKeyRetrieval=true' } } http () { setup () { 'admin-password' = 'xxxxxxx' 'admin-user' = 'xxx' } } pubsub () { trusted = [ 'http@{clusterNode}' ] } message-archive () { } muc() { defaultRoomConfig { 'tigase#presence_delivery_logic' = 'PREFERE_LAST' 'muc#roomconfig_persistentroom' = 'true' } } 'sess-man' { amp () {} message (active: true) {} msgoffline (active: true) {} 'http://jabber.org/protocol/jingle' (class: tigase.xmpp.impl.Jingle,active: true) { threadsNo = 1 } 'presence-offline' (class: tigase.xmpp.impl.PresenceOffline, active: false) { threadsNo = 1 } 'presence-state' (class: tigase.xmpp.impl.PresenceState) { threadsNo = 1 } 'presence-subscription' (class: tigase.xmpp.impl.PresenceSubscription) { threadsNo = 1 } 'jabber:iq:roster' { 'auto-authorize' = 'true' } 'presence-subscription' () { 'auto-authorize' = 'true' } }
All of my configuration is here,I use my private service.I can't chat with each others who join the chat room and the tables(tig_muc_rooms,tig_muc_room_history and tig_muc_room_affiliations) in mysql are empty after I create room or send messages in the chat room.
-
I have tested at public service named tigase.im,and it can't chat each others in chat room.The name of chat room is testxy@tigase.im
It is maybe a question not bug.I can just join chat room but I can't create it.When I join a new chat room,it always says 'Invalid room address,please check and try again'.
My tigase server version is 8.1.2,and my config.tdsl file for muc is
It is some wrong for my properties or the stork doesn't support for create chat room. If it can join chat room,what address should I input Thank you!