Hi everybody,
I have user lib pomelo-unityclient-socket to connect server pomelo. But when using domain name it not working.
string host = "mydomaincom";// Not working with domain name
int port = 80;
pc = new PomeloClient(host, port);
pc.connect(null, (data)=>{
JsonObject msg = new JsonObject();
msg["uid"] = "123456";
pc.request("gate.gateHandler.queryEntry", msg, OnQuery);
});
And i don't know using ssl to connect server.
Can any one tell me how using?