Session is not created

I try to make Online Multiplay Game following Blueprint Multiplayer, posted on Unreal Engine page.

But I have something problem.

Above 4 pic is my Blueprint graph.

First is MainMenu Widget construct and Ready button event.

Second one is Create Session Event, which is on GameInstance

Third one is Join Game, and it’s on GameInstance too.

4th is Login Event. It called from MainMenu’s Ready button event.

Following these graphs, There’s nothing to printed after print “Cannot find any session” if session created normally.

But it isn’t.

I don’tt know where is problem.

Is there something wrong on Blueprints?

Do you mean there is no indication that it tried to Create Session after failing to Join Session?

What do your Output Logs say? Sometimes failures do not crash the game but they cause the Blueprint to stop executing on the wire they’re currently doing, but everything else keeps going and that same Blueprint keeps executing other things and further attempts on the same wires, just not the one that generated the warning.

This is logs

Did you set up OnlineSubsystem properly? On Null only LAN listings work

Note that you don’t need to create sessions to have multiplayer, users can still connect via IP addresses.

Yes it looks like you didn’t configure your ini file to use the OnlineSubsystem the way you’re trying to.

Thanks to help. I check OnlineSubsystem and it doesn’t set.

So I bought SubsystemConfigurator and set OnlineSubsystem.

Now it works.