lucyllewy / jabber-net

Automatically exported from code.google.com/p/jabber-net
Other
0 stars 0 forks source link

HTTP Binding not working properly #110

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

jabber.client.JabberClient cl = new jabber.client.JabberClient();
            cl.User = "xxxxx";
            cl.Server = "gmail.com";
            cl.Password = "yyyyy";
            cl.Proxy = jabber.connection.ProxyType.HTTP;
            cl.ProxyHost = "192.168.xxx.xxx";
            cl.ProxyPort = xxxx;
            cl.OnConnect += new jabber.connection.StanzaStreamHandler(cl_OnConnect);
            cl.OnAuthenticate += new bedrock.ObjectHandler(cl_OnAuthenticate);
            cl.OnAuthError += new jabber.protocol.ProtocolHandler(cl_OnAuthError);
            cl.OnDisconnect += new bedrock.ObjectHandler(cl_OnDisconnect);
            cl.Connect();

What is the expected output? What do you see instead?
To get a message on Authentication. Get message for Disconnect.

What version of the product are you using? On what operating system?
Take the source and build the application for .NET 4.0, OS Windows 7

Please provide any additional information below.

Original issue reported on code.google.com by harira...@gmail.com on 25 Mar 2011 at 9:09

GoogleCodeExporter commented 8 years ago
Does your proxy require a password?  Can you get a network trace out?

Original comment by hil...@gmail.com on 28 Mar 2011 at 7:43