Click here to Skip to main content
15,887,585 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
This is asp.net web application for chatting, developed using agsxmpp and signalR to integrate google chat and facebook chat.

We use these settings for establishing an xmpp connection:

C#
XmppConnection = new XmppFacebookClientConnection();((XmppFacebookClientConnection)XmppConnection).ApiKey = ApplicationKey;
((XmppFacebookClientConnection)XmppConnection).AccessToken = AccessToken;
XmppConnection.Server = "chat.facebook.com";
XmppConnection.Port = 443;
XmppConnection.AutoAgents = true;
XmppConnection.AutoRoster = true;
XmppConnection.UseSSL = true;
XmppConnection.UseStartTLS = true;
XmppConnection.Priority = 0;
XmppConnection.UseCompression = true;
XmppConnection.AutoResolveConnectServer = false;
XmppConnection.ClientVersion = "1.0";


The chat application works fine on machines which are not protected by any firewall, but when we try to access the same app from a firewall protected machine the connection is not established.

What should we do to get 'through' the firewall? Is there something I can do in my code or do the users need to change their firewall settings? How?
Posted
Updated 21-May-14 0:52am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900