Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Can't connect to any server with QXmpp

Can't connect to any server with QXmpp

Scheduled Pinned Locked Moved Solved General and Desktop
10 Posts 4 Posters 1.4k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lertpan
    wrote on last edited by
    #1

    I want to write a windows client to connect to an Openfire server. I'm using qxmpp library and c++ in Qt creator. Firstly I've tried to write simple app to find out if it connects to server. But it doesn't and I don't know why
    I tried to connect my openfire server and some public xmpp servers, couldn't connect both. (I've tried to connect the server via Spark and Kaidan client and it worked).

    There is no information that there is any error, only what I know is that my client is not connecting to the server. Its like "11:10:25 2019 INFO Connecting to 127.0.0.1:5222" and nothing more. Is there any way to check why my client is not connecting? Maybe here is somone who can help

    My .pro file inculudes those

     QT  += core gui
     QT  += network xml
     QT  += widgets
    
     INCLUDEPATH += C:\qxmpp\include\qxmpp
     LIBS                  += -L"C:\qxmpp\lib" -l:libqxmpp.dll \
    

    that is my mainwindow.cpp

    
    
    #include "mainwindow.h"
    #include <ui_mainwindow.h>
    #include <QXmppClient.h>
    #include <QXmppLogger.h>
    #include <QXmppPresence.h>
    #include <QDebug>
    
    MainWindow::MainWindow(QWidget *parent) :
        QMainWindow(parent),
        ui(new Ui::MainWindow)
    {
        ui->setupUi(this);
    }
    
    MainWindow::~MainWindow()
    {
        delete ui;
    }
    
    void MainWindow::on_pushButton_clicked()
    {
    
        QXmppClient client;
        QXmppConfiguration config;
        //config.setHost("localhost");
        config.setHost("127.0.0.1");
        //config.setHost("192.168.1.1");
        //config.setJid("adminu@dismail.de");
        config.setDomain("umut");
        config.setPort(5222);
        config.setUser("admin");
        config.setPassword("admin");
    //    qDebug() << "jid"   << config.jid()     << "jid";
    //    qDebug() << "user"  << config.user()    << "user";
    //    qDebug() << "pw"    << config.password() << "pw";
    //    qDebug() << "port"  << config.port()    << "port";
    //    qDebug() << "host"  << config.host()    << "host";
        if( client.isConnected())
            qDebug() << "#######Connected to server#######";
    
    
        client.logger()->setLoggingType(QXmppLogger::StdoutLogging);
        QXmppPresence pres;
        pres.setType(QXmppPresence::Available);
    
        //client.connectToServer("ab123@dismail.de", "password");
        client.connectToServer(config, pres);
    
        if( client.isConnected())
            qDebug() << "#######Connected to server#######";
    
    }
    

    I've tried few combinations, other QT clients(like qchat). they just printed "connecting to server" and nothing else. I think it may related to windows firewall or stuff

    jsulmJ VRoninV 2 Replies Last reply
    0
    • L Lertpan

      I want to write a windows client to connect to an Openfire server. I'm using qxmpp library and c++ in Qt creator. Firstly I've tried to write simple app to find out if it connects to server. But it doesn't and I don't know why
      I tried to connect my openfire server and some public xmpp servers, couldn't connect both. (I've tried to connect the server via Spark and Kaidan client and it worked).

      There is no information that there is any error, only what I know is that my client is not connecting to the server. Its like "11:10:25 2019 INFO Connecting to 127.0.0.1:5222" and nothing more. Is there any way to check why my client is not connecting? Maybe here is somone who can help

      My .pro file inculudes those

       QT  += core gui
       QT  += network xml
       QT  += widgets
      
       INCLUDEPATH += C:\qxmpp\include\qxmpp
       LIBS                  += -L"C:\qxmpp\lib" -l:libqxmpp.dll \
      

      that is my mainwindow.cpp

      
      
      #include "mainwindow.h"
      #include <ui_mainwindow.h>
      #include <QXmppClient.h>
      #include <QXmppLogger.h>
      #include <QXmppPresence.h>
      #include <QDebug>
      
      MainWindow::MainWindow(QWidget *parent) :
          QMainWindow(parent),
          ui(new Ui::MainWindow)
      {
          ui->setupUi(this);
      }
      
      MainWindow::~MainWindow()
      {
          delete ui;
      }
      
      void MainWindow::on_pushButton_clicked()
      {
      
          QXmppClient client;
          QXmppConfiguration config;
          //config.setHost("localhost");
          config.setHost("127.0.0.1");
          //config.setHost("192.168.1.1");
          //config.setJid("adminu@dismail.de");
          config.setDomain("umut");
          config.setPort(5222);
          config.setUser("admin");
          config.setPassword("admin");
      //    qDebug() << "jid"   << config.jid()     << "jid";
      //    qDebug() << "user"  << config.user()    << "user";
      //    qDebug() << "pw"    << config.password() << "pw";
      //    qDebug() << "port"  << config.port()    << "port";
      //    qDebug() << "host"  << config.host()    << "host";
          if( client.isConnected())
              qDebug() << "#######Connected to server#######";
      
      
          client.logger()->setLoggingType(QXmppLogger::StdoutLogging);
          QXmppPresence pres;
          pres.setType(QXmppPresence::Available);
      
          //client.connectToServer("ab123@dismail.de", "password");
          client.connectToServer(config, pres);
      
          if( client.isConnected())
              qDebug() << "#######Connected to server#######";
      
      }
      

      I've tried few combinations, other QT clients(like qchat). they just printed "connecting to server" and nothing else. I think it may related to windows firewall or stuff

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @Lertpan said in Can't connect to any server with QXmpp:

      connectToServer

      Isn't this method assynchronous?

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      L 1 Reply Last reply
      0
      • jsulmJ jsulm

        @Lertpan said in Can't connect to any server with QXmpp:

        connectToServer

        Isn't this method assynchronous?

        L Offline
        L Offline
        Lertpan
        wrote on last edited by Lertpan
        #3

        @jsulm ı have no idea, shall I use some other methods or shall I use this one in different way? I just want to see "connected to server" so I continue to develop

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          Hi,

          @jsulm is correct, that method is not blocking. From the code of the client class:

          Use signals connected(), error(QXmppClient::Error)  and disconnected() to know the status of the connection.
          

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          2
          • L Offline
            L Offline
            Lertpan
            wrote on last edited by Lertpan
            #5

            signals and slots worked... exept seems it wasn't my real problem. This is the result when I run the code.
            (I run the code in main instead pushbutton, it seemd i get better results)

            qt.network.ssl: QSslSocket: cannot resolve SSL_CTX_set_ciphersuites
            qt.network.ssl: QSslSocket: cannot resolve SSL_set_psk_use_session_callback
            Sal Tem 9 10:01:51 2019 DEBUG Looking up server for domain dismail.de
            Sal Tem 9 10:01:51 2019 INFO Connecting to xmpp.dismail.de:5222
            Sal Tem 9 10:01:51 2019 INFO Socket connected to 116.203.3.253 5222
            Sal Tem 9 10:01:51 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
            Sal Tem 9 10:01:51 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='c02f15e3-2bc1-478f-99f0-d1bab828efb1' version='1.0' xmlns='jabber:client'><stream:features><starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'><required/></starttls></stream:features>
            Sal Tem 9 10:01:51 2019 SENT <starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
            Sal Tem 9 10:01:51 2019 RECEIVED <proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
            Sal Tem 9 10:01:51 2019 DEBUG Starting encryption
            qt.network.ssl: QSslSocket: cannot call unresolved function SSL_set_psk_use_session_callback
            Sal Tem 9 10:01:52 2019 DEBUG Socket encrypted
            Sal Tem 9 10:01:52 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
            Sal Tem 9 10:01:52 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='31257eb2-522a-4812-9787-107a42444c7a' version='1.0' xmlns='jabber:client'><stream:features><mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'><mechanism>PLAIN</mechanism><mechanism>SCRAM-SHA-1</mechanism><mechanism>SCRAM-SHA-1-PLUS</mechanism></mechanisms><register xmlns='http://jabber.org/features/iq-register'/></stream:features>
            Sal Tem 9 10:01:52 2019 INFO SASL mechanism 'SCRAM-SHA-1' selected
            Sal Tem 9 10:01:52 2019 SENT <auth xmlns="urn:ietf:params:xml:ns:xmpp-sasl" mechanism="SCRAM-SHA-1">biwsbj1hZG1pbnUscj1vS1pPNllwU2hnUnRibzN2cUJYY09mSTM5Qk5BL0xST1BaQ2Ixb1dDWGU4PQ==</auth>
            Sal Tem 9 10:01:52 2019 RECEIVED <challenge xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>cj1vS1pPNllwU2hnUnRibzN2cUJYY09mSTM5Qk5BL0xST1BaQ2Ixb1dDWGU4PWMzZWEyMjNmLWEzNWYtNGRmZi1hMzkzLWQ5OTBiMGU4NGFmYSxzPU0yUXhZak5sWldJdE9XTmlZeTAwTldVMkxUZ3habUl0WW1FMllUQmxZall4TVdVMyxpPTQwOTY=</challenge>
            Sal Tem 9 10:01:52 2019 SENT <response xmlns="urn:ietf:params:xml:ns:xmpp-sasl">Yz1iaXdzLHI9b0taTzZZcFNoZ1J0Ym8zdnFCWGNPZkkzOUJOQS9MUk9QWkNiMW9XQ1hlOD1jM2VhMjIzZi1hMzVmLTRkZmYtYTM5My1kOTkwYjBlODRhZmEscD1ydUF2M2ZnYjBaTThYeThrYWVSdlZCWHlJUms9</response>
            Sal Tem 9 10:01:52 2019 RECEIVED <success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>dj1vVk43OHVRWHo0eUdLbzJYWjVWZWRPQ0FweXc9</success>
            Sal Tem 9 10:01:52 2019 DEBUG Authenticated
            Sal Tem 9 10:01:52 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
            Sal Tem 9 10:01:52 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='4ba9df6a-1f0d-4479-bce4-260561adc033' version='1.0' xmlns='jabber:client'><stream:features><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><required/></bind><session xmlns='urn:ietf:params:xml:ns:xmpp-session'><optional/></session><ver xmlns='urn:xmpp:features:rosterver'/><csi xmlns='urn:xmpp:csi:0'/><c hash='sha-1' ver='Nz/v/SF7wWEVWQVaki85LGo2xVo=' node='http://prosody.im' xmlns='http://jabber.org/protocol/caps'/><sm xmlns='urn:xmpp:sm:2'><optional/></sm><sm xmlns='urn:xmpp:sm:3'><optional/></sm></stream:features>
            Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp4" type="set"><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"><resource>QXmpp</resource></bind></iq>
            Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp4' type='result'><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><jid>adminu@dismail.de/QXmpp</jid></bind></iq>
            Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp6" to="dismail.de" type="set"><session xmlns="urn:ietf:params:xml:ns:xmpp-session"/></iq>
            Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp6' type='result' to='adminu@dismail.de/QXmpp' from='dismail.de'/>
            Sal Tem 9 10:01:52 2019 SENT <enable xmlns="urn:xmpp:sm:3" resume="true"/>
            Sal Tem 9 10:01:52 2019 RECEIVED <enabled id='3e6c4f39-faa9-4338-9690-2597f29a21bc' resume='true' max='120' xmlns='urn:xmpp:sm:3'/>
            Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp8" from="adminu@dismail.de/QXmpp" type="get"><query xmlns="jabber:iq:roster"/></iq>
            Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
            Sal Tem 9 10:01:52 2019 SENT <presence><c xmlns="http://jabber.org/protocol/caps" hash="sha-1" node="https://github.com/qxmpp-project/qxmpp" ver="A4UNkhgwYKwoeSXg5kRDnndukYY="/></presence>
            Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
            Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp8' type='result' to='adminu@dismail.de/QXmpp'><query ver='2' xmlns='jabber:iq:roster'><item jid='admin@dismail.de' ask='subscribe' subscription='none' name='admin@dismail.de'/></query></iq><a h='1' xmlns='urn:xmpp:sm:3'/><presence from='adminu@dismail.de/QXmpp'><c hash='sha-1' ver='A4UNkhgwYKwoeSXg5kRDnndukYY=' node='https://github.com/qxmpp-project/qxmpp' xmlns='http://jabber.org/protocol/caps'/><x xmlns='vcard-temp:x:update'/></presence><iq id='GkbtPm4f' type='set'><query ver='2' xmlns='jabber:iq:roster'><item jid='admin@dismail.de' ask='subscribe' subscription='none' name='admin@dismail.de'/></query></iq><presence type='unavailable' to='adminu@dismail.de' from='admin@dismail.de'/><a h='2' xmlns='urn:xmpp:sm:3'/>
            Sal Tem 9 10:01:52 2019 SENT <iq id="GkbtPm4f" type="result"/>
            Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
            Sal Tem 9 10:01:52 2019 RECEIVED <r xmlns='urn:xmpp:sm:3'/>
            Sal Tem 9 10:01:52 2019 SENT <a xmlns="urn:xmpp:sm:3" h="4"/>
            Sal Tem 9 10:01:52 2019 RECEIVED <a h='3' xmlns='urn:xmpp:sm:3'/>
            

            don't know if contains super secret info.
            result doesn't change if password correct or not.
            also tried on some machine does not prints ssl errors, result was familar to this

            L 1 Reply Last reply
            0
            • L Lertpan

              signals and slots worked... exept seems it wasn't my real problem. This is the result when I run the code.
              (I run the code in main instead pushbutton, it seemd i get better results)

              qt.network.ssl: QSslSocket: cannot resolve SSL_CTX_set_ciphersuites
              qt.network.ssl: QSslSocket: cannot resolve SSL_set_psk_use_session_callback
              Sal Tem 9 10:01:51 2019 DEBUG Looking up server for domain dismail.de
              Sal Tem 9 10:01:51 2019 INFO Connecting to xmpp.dismail.de:5222
              Sal Tem 9 10:01:51 2019 INFO Socket connected to 116.203.3.253 5222
              Sal Tem 9 10:01:51 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
              Sal Tem 9 10:01:51 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='c02f15e3-2bc1-478f-99f0-d1bab828efb1' version='1.0' xmlns='jabber:client'><stream:features><starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'><required/></starttls></stream:features>
              Sal Tem 9 10:01:51 2019 SENT <starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
              Sal Tem 9 10:01:51 2019 RECEIVED <proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
              Sal Tem 9 10:01:51 2019 DEBUG Starting encryption
              qt.network.ssl: QSslSocket: cannot call unresolved function SSL_set_psk_use_session_callback
              Sal Tem 9 10:01:52 2019 DEBUG Socket encrypted
              Sal Tem 9 10:01:52 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
              Sal Tem 9 10:01:52 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='31257eb2-522a-4812-9787-107a42444c7a' version='1.0' xmlns='jabber:client'><stream:features><mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'><mechanism>PLAIN</mechanism><mechanism>SCRAM-SHA-1</mechanism><mechanism>SCRAM-SHA-1-PLUS</mechanism></mechanisms><register xmlns='http://jabber.org/features/iq-register'/></stream:features>
              Sal Tem 9 10:01:52 2019 INFO SASL mechanism 'SCRAM-SHA-1' selected
              Sal Tem 9 10:01:52 2019 SENT <auth xmlns="urn:ietf:params:xml:ns:xmpp-sasl" mechanism="SCRAM-SHA-1">biwsbj1hZG1pbnUscj1vS1pPNllwU2hnUnRibzN2cUJYY09mSTM5Qk5BL0xST1BaQ2Ixb1dDWGU4PQ==</auth>
              Sal Tem 9 10:01:52 2019 RECEIVED <challenge xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>cj1vS1pPNllwU2hnUnRibzN2cUJYY09mSTM5Qk5BL0xST1BaQ2Ixb1dDWGU4PWMzZWEyMjNmLWEzNWYtNGRmZi1hMzkzLWQ5OTBiMGU4NGFmYSxzPU0yUXhZak5sWldJdE9XTmlZeTAwTldVMkxUZ3habUl0WW1FMllUQmxZall4TVdVMyxpPTQwOTY=</challenge>
              Sal Tem 9 10:01:52 2019 SENT <response xmlns="urn:ietf:params:xml:ns:xmpp-sasl">Yz1iaXdzLHI9b0taTzZZcFNoZ1J0Ym8zdnFCWGNPZkkzOUJOQS9MUk9QWkNiMW9XQ1hlOD1jM2VhMjIzZi1hMzVmLTRkZmYtYTM5My1kOTkwYjBlODRhZmEscD1ydUF2M2ZnYjBaTThYeThrYWVSdlZCWHlJUms9</response>
              Sal Tem 9 10:01:52 2019 RECEIVED <success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>dj1vVk43OHVRWHo0eUdLbzJYWjVWZWRPQ0FweXc9</success>
              Sal Tem 9 10:01:52 2019 DEBUG Authenticated
              Sal Tem 9 10:01:52 2019 SENT <?xml version='1.0'?><stream:stream to='dismail.de' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
              Sal Tem 9 10:01:52 2019 RECEIVED <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' xml:lang='en' from='dismail.de' id='4ba9df6a-1f0d-4479-bce4-260561adc033' version='1.0' xmlns='jabber:client'><stream:features><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><required/></bind><session xmlns='urn:ietf:params:xml:ns:xmpp-session'><optional/></session><ver xmlns='urn:xmpp:features:rosterver'/><csi xmlns='urn:xmpp:csi:0'/><c hash='sha-1' ver='Nz/v/SF7wWEVWQVaki85LGo2xVo=' node='http://prosody.im' xmlns='http://jabber.org/protocol/caps'/><sm xmlns='urn:xmpp:sm:2'><optional/></sm><sm xmlns='urn:xmpp:sm:3'><optional/></sm></stream:features>
              Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp4" type="set"><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"><resource>QXmpp</resource></bind></iq>
              Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp4' type='result'><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><jid>adminu@dismail.de/QXmpp</jid></bind></iq>
              Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp6" to="dismail.de" type="set"><session xmlns="urn:ietf:params:xml:ns:xmpp-session"/></iq>
              Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp6' type='result' to='adminu@dismail.de/QXmpp' from='dismail.de'/>
              Sal Tem 9 10:01:52 2019 SENT <enable xmlns="urn:xmpp:sm:3" resume="true"/>
              Sal Tem 9 10:01:52 2019 RECEIVED <enabled id='3e6c4f39-faa9-4338-9690-2597f29a21bc' resume='true' max='120' xmlns='urn:xmpp:sm:3'/>
              Sal Tem 9 10:01:52 2019 SENT <iq id="qxmpp8" from="adminu@dismail.de/QXmpp" type="get"><query xmlns="jabber:iq:roster"/></iq>
              Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
              Sal Tem 9 10:01:52 2019 SENT <presence><c xmlns="http://jabber.org/protocol/caps" hash="sha-1" node="https://github.com/qxmpp-project/qxmpp" ver="A4UNkhgwYKwoeSXg5kRDnndukYY="/></presence>
              Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
              Sal Tem 9 10:01:52 2019 RECEIVED <iq id='qxmpp8' type='result' to='adminu@dismail.de/QXmpp'><query ver='2' xmlns='jabber:iq:roster'><item jid='admin@dismail.de' ask='subscribe' subscription='none' name='admin@dismail.de'/></query></iq><a h='1' xmlns='urn:xmpp:sm:3'/><presence from='adminu@dismail.de/QXmpp'><c hash='sha-1' ver='A4UNkhgwYKwoeSXg5kRDnndukYY=' node='https://github.com/qxmpp-project/qxmpp' xmlns='http://jabber.org/protocol/caps'/><x xmlns='vcard-temp:x:update'/></presence><iq id='GkbtPm4f' type='set'><query ver='2' xmlns='jabber:iq:roster'><item jid='admin@dismail.de' ask='subscribe' subscription='none' name='admin@dismail.de'/></query></iq><presence type='unavailable' to='adminu@dismail.de' from='admin@dismail.de'/><a h='2' xmlns='urn:xmpp:sm:3'/>
              Sal Tem 9 10:01:52 2019 SENT <iq id="GkbtPm4f" type="result"/>
              Sal Tem 9 10:01:52 2019 SENT <r xmlns="urn:xmpp:sm:3"/>
              Sal Tem 9 10:01:52 2019 RECEIVED <r xmlns='urn:xmpp:sm:3'/>
              Sal Tem 9 10:01:52 2019 SENT <a xmlns="urn:xmpp:sm:3" h="4"/>
              Sal Tem 9 10:01:52 2019 RECEIVED <a h='3' xmlns='urn:xmpp:sm:3'/>
              

              don't know if contains super secret info.
              result doesn't change if password correct or not.
              also tried on some machine does not prints ssl errors, result was familar to this

              L Offline
              L Offline
              Lertpan
              wrote on last edited by Lertpan
              #6

              @Lertpan said in Can't connect to any server with QXmpp:

              am I being nonsense ? should it look like this? Sorry if so.

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #7

                You are missing the OpenSSL dlls. Get them for the same architecture and compiler as the Qt version you are using and copy them in the same folder as your application.

                Or modify the PATH environment variable in Qt Creator in the Run part of the Project panel and add the path to the folder containing them. Depending on the Qt version you are using, either need the 1.0 or the 1.1 release. You can't mix both because the OpenSSL project broke compatibility between the two series.

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                1
                • L Lertpan

                  I want to write a windows client to connect to an Openfire server. I'm using qxmpp library and c++ in Qt creator. Firstly I've tried to write simple app to find out if it connects to server. But it doesn't and I don't know why
                  I tried to connect my openfire server and some public xmpp servers, couldn't connect both. (I've tried to connect the server via Spark and Kaidan client and it worked).

                  There is no information that there is any error, only what I know is that my client is not connecting to the server. Its like "11:10:25 2019 INFO Connecting to 127.0.0.1:5222" and nothing more. Is there any way to check why my client is not connecting? Maybe here is somone who can help

                  My .pro file inculudes those

                   QT  += core gui
                   QT  += network xml
                   QT  += widgets
                  
                   INCLUDEPATH += C:\qxmpp\include\qxmpp
                   LIBS                  += -L"C:\qxmpp\lib" -l:libqxmpp.dll \
                  

                  that is my mainwindow.cpp

                  
                  
                  #include "mainwindow.h"
                  #include <ui_mainwindow.h>
                  #include <QXmppClient.h>
                  #include <QXmppLogger.h>
                  #include <QXmppPresence.h>
                  #include <QDebug>
                  
                  MainWindow::MainWindow(QWidget *parent) :
                      QMainWindow(parent),
                      ui(new Ui::MainWindow)
                  {
                      ui->setupUi(this);
                  }
                  
                  MainWindow::~MainWindow()
                  {
                      delete ui;
                  }
                  
                  void MainWindow::on_pushButton_clicked()
                  {
                  
                      QXmppClient client;
                      QXmppConfiguration config;
                      //config.setHost("localhost");
                      config.setHost("127.0.0.1");
                      //config.setHost("192.168.1.1");
                      //config.setJid("adminu@dismail.de");
                      config.setDomain("umut");
                      config.setPort(5222);
                      config.setUser("admin");
                      config.setPassword("admin");
                  //    qDebug() << "jid"   << config.jid()     << "jid";
                  //    qDebug() << "user"  << config.user()    << "user";
                  //    qDebug() << "pw"    << config.password() << "pw";
                  //    qDebug() << "port"  << config.port()    << "port";
                  //    qDebug() << "host"  << config.host()    << "host";
                      if( client.isConnected())
                          qDebug() << "#######Connected to server#######";
                  
                  
                      client.logger()->setLoggingType(QXmppLogger::StdoutLogging);
                      QXmppPresence pres;
                      pres.setType(QXmppPresence::Available);
                  
                      //client.connectToServer("ab123@dismail.de", "password");
                      client.connectToServer(config, pres);
                  
                      if( client.isConnected())
                          qDebug() << "#######Connected to server#######";
                  
                  }
                  

                  I've tried few combinations, other QT clients(like qchat). they just printed "connecting to server" and nothing else. I think it may related to windows firewall or stuff

                  VRoninV Offline
                  VRoninV Offline
                  VRonin
                  wrote on last edited by VRonin
                  #8

                  @Lertpan said in Can't connect to any server with QXmpp:

                  -l:libqxmpp.dll

                  Does this actually work?!

                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                  ~Napoleon Bonaparte

                  On a crusade to banish setIndexWidget() from the holy land of Qt

                  L 1 Reply Last reply
                  0
                  • VRoninV VRonin

                    @Lertpan said in Can't connect to any server with QXmpp:

                    -l:libqxmpp.dll

                    Does this actually work?!

                    L Offline
                    L Offline
                    Lertpan
                    wrote on last edited by Lertpan
                    #9

                    @VRonin I have no errors or "Issues" with

                    -l:libqxmpp.dll

                    I'm stuck here like 5 days I've tried lot of dumb things. I've changed INCLUDEPATH and LIBS a lot, right now i dont have ""QXmppClient.h" could not find" error. But im worried if I couldn't build/integrate QXmpp library properly.

                    I think I dont have to specify im noob.
                    How it should be btw?
                    totally works btw

                    jsulmJ 1 Reply Last reply
                    0
                    • L Lertpan

                      @VRonin I have no errors or "Issues" with

                      -l:libqxmpp.dll

                      I'm stuck here like 5 days I've tried lot of dumb things. I've changed INCLUDEPATH and LIBS a lot, right now i dont have ""QXmppClient.h" could not find" error. But im worried if I couldn't build/integrate QXmpp library properly.

                      I think I dont have to specify im noob.
                      How it should be btw?
                      totally works btw

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #10

                      @Lertpan

                      -lqxmpp
                      

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      2

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved