How can I use xmpp module in ue4?

I want use xmpp classes such as FXmppServer.
But I do not know the include path of header files.
How can I write the include header macro?
And what is need to add in project.Build.cs?
Can anyone help me.Thanks a lot.

I’m interested in finding examples of this as well. If I come up with a solution before one is posted I will submit it.

Look up API refrence:

https://docs.unrealengine.com/latest/INT/API/Runtime/XMPP/FXmppModule/index.html

Most UE4 modules have entry point which is Get function FXmppModule::Get(); it return module object from there CreateConnection:

https://docs.unrealengine.com/latest/INT/API/Runtime/XMPP/FXmppModule/CreateConnection/index.html

from connection object you set server:

https://docs.unrealengine.com/latest/INT/API/Runtime/XMPP/IXmppConnection/SetServer/index.html

And then call Login:

https://docs.unrealengine.com/latest/INT/API/Runtime/XMPP/IXmppConnection/Login/index.html

In module there is a test class with test code, you can use it as a example, but if you ask me everything is self explanatory in that module:

https://github.com/EpicGames/UnrealEngine/blob/dff3c48be101bb9f84633a733ef79c91c38d9542/Engine/Source/Runtime/Online/XMPP/Private/XmppTests.cpp

FXmppServer is a stuct, just make one. I’m not sure if this module actully works :stuck_out_tongue: And ofcorse you need to add it to depences in build script

It seems no solution?

I tried all the above links, but it seems they no longer exists. Does anyone have recent information about this? Thanks!