Search the Community
Showing results for tags 'configuration'.
Found 2 results
-
configuration STB configuration wizard - Could not set up Remote sim connection
olifly06 posted a topic in Flying W Simulation
Hello, I have just installed STB latest version and I have an issue to configure STB client on remote computer at step 4 of the wizard. The Error message is: The simconnect port must be a value in the range 1-65000. when I close the popup I get another message : Then STB client window is displayed empty. If I click on 'Connect' button, STB connects to P3D and get the following status messge: Connecting to Prepar3D V4, please wait. Simulator connection successful. Connecting to Remote STB Data Server (STB-DS). STB-DS connection successul, using server version 4.2.2018.13500 Simulator reports identity as Lockheed Martin® Prepar3D® v4 4.3.29.25520 09:19 Simulator Traffic Volumes now Airline:100%, GA:0%. 09:19 The Super Traffic Board Simulator Plug-in 4.0.171.61 is online. 09:19 STB Simulator Plug-in Delete AI is now online. 09:19 Time Zone changed from GMT+0 to GMT+1 09:19 ORBIT 679 (G-GEJL) now on stand at London Heathrow, due to approach separation conflict. STDDS is running OK on P3D PC, connected to P3D. I have configured simconnect.xml on P3D server: <SimConnect.Comm> <Disabled>False</Disabled> <Protocol>IPv4</Protocol> <Scope>global</Scope> <Address>192.168.0.31</Address> <MaxClients>64</MaxClients> <Port>2024</Port> </SimConnect.Comm> as well as simconnect.cfg on client PC: [SimConnect.3] Protocol=Ipv4 Address=192.168.0.31 Port=2024 MaxReceiveSize=4096 DisableNagle=0 Both PCs are on Win10 connected over private network. 192.168.0.31 is the IP adress of my P3D server. Can you please help me to fix this issue ? Thanks Olivier -
SimConnect network configuration problem
JeffJiang posted a topic in FSUIPC Support Pete Dowson Modules
Hi, I need to remotely connect to P3D via SimConnect. I have 2 PCs. Server: PC1 with P3D v4 installed, IPv4:192.168.10.139 Client: PC2 has a C# WPF app that does some reading & writing to P3D on PC1 via SimConnect. IPv4:192.168.10.167 I have put SimConnect.cfg file on PC2, Documents folder, put SimConnect.xml, EXE.xml and DLL.xml files on PC1, C:\Program Files\Lockheed Martin\Prepar3D v4 folder, put SimConnect.ini file on PC1, C:\Users\Administrator\Documents\Prepar3D v4 Files folder. I save all these 5 files as Unicode type for encoding. In SimConnect.cfg: In SimConnect.xml: In SimConnect.ini: As for EXE.xml and DLL.xml files, I didn't do any changes as I found no instructions about them. In the WPF app code on PC2: private const int WM_USER_SIMCONNECT = 0x0402; //user-defined this.SimConnect = new SimConnect("Managed Data Request", Handle, WM_USER_SIMCONNECT, null, 0); // it can be executed with no error or exception as long as the SimConnect.cfg file is OK. private IntPtr HandleSimConnectEvents(IntPtr hWnd, int message, IntPtr wParam, IntPtr lParam, ref bool isHandled) { isHandled = false; switch (message) { case WM_USER_SIMCONNECT:// This is never met! But if P3D and the WPF app run on the same PC then it works. { if (SimConnect != null) { try { this.SimConnect.ReceiveMessage(); } catch { RecoverFromError(); } isHandled = true; } } break; default: break; } return IntPtr.Zero; } The remote connection between P3D and the WPF app is not successful. I appreciate any help.- 2 replies
-
- wpf
- configuration
-
(and 3 more)
Tagged with: