Mmarzex / 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 #122

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. I stalled a XMPP server (Openfire)
2. I created a user in it and set the password 
3. I when the relevant setting are done and called the connect method it 
returns exception.

What is the expected output? What do you see instead?
It is supposed to connect

What version of the product are you using? On what operating system?
OpenFire 3.7.0

Please provide any additional information below.
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

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

GoogleCodeExporter commented 9 years ago

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