Latest Platform Changes

22 views
Skip to first unread message

Hans Schroeder

unread,
Nov 24, 2012, 6:08:35 PM11/24/12
to clou...@googlegroups.com
Today we activated new proxies and balancers to prepare for more load. The infrastructure supports websockets and the changes should be transparent for your apps. If your are experiencing side effects, let me know.

Volgar Volgar

unread,
Dec 3, 2012, 12:27:45 AM12/3/12
to clou...@googlegroups.com
Hi,

I have difficulty with the creation of new apps through the configuration of your firewall prevents access to the 843 port. A Flash applications pass the security policy file to this port. You have disabled the firewall on one of my game and everything works fine. Now I just copied the files to another application (and change urls and port in config) and nothing works. What can be done to solve the problem?

воскресенье, 25 ноября 2012 г., 2:08:35 UTC+3 пользователь Hans Schroeder написал:

Hans J. Schroeder

unread,
Dec 10, 2012, 3:30:02 PM12/10/12
to clou...@googlegroups.com
Port 843 is open and was not affected by the change. What app isnot working?
> --
> You received this message because you are subscribed to the Google Groups
> "Cloudnode" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/cloudnode/-/JCp4u60xzE0J.
>
> To post to this group, send email to clou...@googlegroups.com.
> To unsubscribe from this group, send email to
> cloudnode+...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/cloudnode?hl=en.

Volgar Volgar

unread,
Dec 14, 2012, 3:59:33 AM12/14/12
to clou...@googlegroups.com
Hi,

How my server can listen two ports?
Here is my server code. My app - iogame.cloudno.de

var policyStr = ''
+ '<?xml version="1.0"?>\r\n'
+ '<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">\r\n'
+ '<cross-domain-policy>\r\n'
+ '\t<allow-access-from domain="*" to-ports="9220"/>\r\n'
+ '</cross-domain-policy>\0';
var policyServer = net.createServer(function (socket) {
console.log("policyServer-client connected");
socket.on("end", function() {
console.log("policyServer-client disconnected");
});
socket.write(policyStr);
socket.end();
});
policyServer.listen(843);

var socketServerUpdateIntervalId = setInterval(echoToAllClients, 5000);
var clientSocketConnections = [ ];
var socketServer = net.createServer(onSocketServerConnect);
socketServer.listen(9220);

понедельник, 10 декабря 2012 г., 23:30:02 UTC+3 пользователь Hans Schroeder написал:

Volgar Volgar

unread,
Dec 14, 2012, 4:00:50 AM12/14/12
to clou...@googlegroups.com
This fine work on local node.js server.

пятница, 14 декабря 2012 г., 11:59:33 UTC+3 пользователь Volgar Volgar написал:

Hans Schroeder

unread,
Dec 15, 2012, 11:21:51 AM12/15/12
to clou...@googlegroups.com
Hi,

Your port 843 collides with the global policy server. You don't to start an own policy server. Just leave that part and your app should work fine.

- Hans
Reply all
Reply to author
Forward
0 new messages