Hi.
I'm researching Http communication between FlexSim.
I'd like the client to make the connection request after the server side is started.
If I use serveraccept(0), I can do that, but FlexSim will stop.
So I tried to execute serveraccept(1) in server.fsm before client.fsm send the connection request.
As a result, the connection was successful, but the server could not receive data from the client.
I tried to execute serverreceive() assuming the connection index was 1, but that seems to be a mistake.
If I execute serveraccept(1) before the client sends the request, how can I get the proper connection index?