Questions tagged [amazon-gamelift]

26 questions
0
votes
0 answers

C# System.Net.Sockets.SocketException: Network is unreachable (10051)

I'm working on a Unity game that uses Mirror to establish a TCP socket connection to a game server hosted on GameLift. The server picks a random port to listen on between 45000 and 46000 before a game session starts. One of our users cannot connect…
Francesco Puglisi
  • 2,140
  • 2
  • 18
  • 26
0
votes
1 answer

Web Socket Cannot send message and disconnected from Game Lift

I developed a game lift back-end server using a websocket sharp. The local test function provided by GameLift worked fine, but Web socket communication is not possible with the game session of Fleet created by the GameLift server. To be exact, the…
조희재
  • 1
  • 1
0
votes
0 answers

Logging AWS GameLift to CloudWatch using C#

I'm trying to send GameLift logs to CloudWatch using C# and Unity (I'm new to all of them). I have followed all the steps in the AWS…
0
votes
0 answers

AWS JS GameLift SDK MatchmakingTicket - is there a push mechanism instead of polling?

In AWS GameLift, the following code creates a matchmaking ticket: import { GameLiftClient, StartMatchmakingCommand } from "@aws-sdk/client-gamelift"; // ES Modules import // const { GameLiftClient, StartMatchmakingCommand } =…
mikesol
  • 1,177
  • 1
  • 11
  • 20
0
votes
1 answer

How do I efficiently select ports in multi process C++ linux servers?

I am using Amazon Gamelift to manage a c++ game server in an Amazon Linux 2 environment. This service will launch multiple instances of the same game server on the same machine at nearly the same time. These processes then report back when they are…
David
  • 1,648
  • 1
  • 16
  • 31
0
votes
2 answers

Testing Gamelift in local, can only create 1 game session?

I am testing our application in local, and it seems like i can only create 1 game session using Gamelift local. so what i did is I run gamelift local java -jar GameLiftLocal.jar -p 9080 run the custom gamelift server i wrote in C# and Unity and use…
curiousJorgeXX
  • 363
  • 1
  • 10
0
votes
2 answers

How do I update an AWS Gamelift script with boto3 in python?

I am running into a problem trying to update an AWS Gamelift script with a python command that zips a directory and uploads it with all its contents as a newer version to AWS Gamelift. from zipfile import ZipFile import os from os.path import…
0
votes
1 answer

Google.Protobuf.Reflection is not working with il2cpp scripting in Unity

I was creating an android game in unity3d using amazon gamelift. I am using realtime server client sdk. When I run the app it creating a game session in my gamelift fleet but is not able to send messages when I am using IL2CPP sever scripting. It…
Manas Muda
  • 23
  • 4
0
votes
1 answer

Which Gamelift instance should I use to handle 1 million players concurrently?

I am trying to understand how Gamelift works as I am totally a novice in Game development. According to AWS, a Gamelift instance can handle up to 200 players per session but can also host several session in the same time. Firstly, I'd like to…
0
votes
1 answer

How to fix this Matchmaking Rule set for AWS Game Lift

I am new to Game Lift and am trying to make a ruleset for a Jeopardy game for a project I am creating. I try to apply what I want to do for the match making but I always seem to get this error and cannot figure out for the life of me what is wrong.…
jsa56
  • 3
  • 2
-1
votes
1 answer

How to connect a web app to a gamefleet instance?

I've gone over the intro amazon gamelift tutorial, and something I'm trying to understand is how a web app transitions from communicating with the app backend to a gamelift instance. For example the following call can tell the backend that an…
eeegnu
  • 436
  • 2
  • 13
1
2