coder2000 / jabber-net

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

Need help on Hosting a XMPP server which works with C#.net client #121

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,
I am new to XMPP. Could some one give me some guide line on which XMPP server 
to install and which client i should use to connect if i am using C#.net to 
implement in client side.

I tried with OpenFire server and a Jabber-net client. But when i try to connect 
to my Openfire server which is hosted locally it says 

Error binding resource: <error type="modify" code="400"><bad-request 
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /></error>

These are the setting that i applied to my client to connect

JabberClient j = new JabberClient();
            // what user/pass to log in as
            j.User = "desmond";
            j.Server = "duocontact.com";  
            j.Password = "123";
            j.Server = "192.168.0.16";
            j.Port = 5222;

            j.AutoPresence = false;
            j.AutoRoster = false;
            j.AutoReconnect = -1;

            j.Connect();

I in advance appreciate your help to help me jump in to the Jubber

Regards
Desmond

Original issue reported on code.google.com by desmond8...@gmail.com on 26 Sep 2011 at 11:11

GoogleCodeExporter commented 8 years ago
You're setting the Server twice.  Try setting NetworkHost the second time.

Original comment by hil...@gmail.com on 27 Sep 2011 at 7:56

GoogleCodeExporter commented 8 years ago
Issue 122 has been merged into this issue.

Original comment by hil...@gmail.com on 27 Sep 2011 at 7:57