• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Setup Remote Client for Simconnect

Messages
8
Country
italy
Hi,

I made files for remote using of simconnect. The files are simconnect.xml for server side no Vista Ultimate and simconnect.cfg for client side on XP Pro. The server and client are connected with wireless lan.
I have copied cfg file into application client dir and My Documents and xml file into APPDATA of FSX Vista User.
Problem: FSX don't open TCP port!
Why?
What's is correct APPDATA dir on VISTA?

For debugging I have made simconnect.ini and I copied it into My Document on server, but I haven't error.

Bye..
 
Last edited:
Anyone using simconnect from remote pc? Have you problems? if no, could you post your setup?

Thnk you
 
In vista

In your server machine (the one with FSX)

1 - Unhide folders and files in control panel; Uncheck: Hide known extensions

2 - locate the C:\Users\Username\AppData\Roaming\Microsoft\FSX
username is your login name

3 - Create a SimConnect.xml file with this content

Code:
<?xml version="1.0" encoding="Windows-1252"?>

<SimBase.Document Type="SimConnect" version="1,0">
  <Descr>SimConnect</Descr>
  <Filename>SimConnect.xml</Filename>
  <Disabled>False</Disabled>
  <SimConnect.Comm>
    <Disabled>False</Disabled>
    <Protocol>IPv4</Protocol>
    <Scope>global</Scope>
    <Address>addr1</Address>
    <MaxClients>64</MaxClients>
    <Port>Port1</Port>
    <MaxRecvSize>4096</MaxRecvSize>
    <DisableNagle>False</DisableNagle>
  </SimConnect.Comm>
</SimBase.Document>

addr1 is your machine IP. You can open a command prompt and run the command ipconfig. Look for the line IPV4 address the addr is there.

Port1: Choose any port above 1024, do not use 8080

In your client machine

1 - Install simconnect (Default location for setup is: C:\Program Files\Microsoft Games\Microsoft Flight Simulator X SDK\SDK\Core Utilities Kit\SimConnect SDK\lib) copy setup for client machine

2 - create a C:\Users\Username\Documents\SimConnect.cfg
username is your login name
The content of the cfg file is:

[SimConnect]
Protocol=IPv4
Address=addr1
Port=Port
MaxReceiveSize=4096
DisableNagle=0


addr1 - See above it should match
Port - See above it should match
 
Some thoughts about firewalls etc.

Test the connection with all firewalls off. If it is working stop FSX and the client applications. Turn firewalls on and run them again. Ususally in normal security level, software firewalls warm about the connections and allow you to open the ports with no problems.

Since simconnect uses a TCP connection the AV or firewalls could induce some stutters since they could monitor the port. This is specially true for port 80 and 8080 since they are standard http ports.

José
 
Hi,

It work. It work with firewall, too.... I have changed ip type from auto to ipv4 into simconnect.xml and deleted space at beginning ip address into simconnect.cfg.

Thank thanks
 
Back
Top