This occurs after I have created created all my data definitions and mapped my data. I then request the user sim object before I request the data, but this is never received. Looking at the log, this is because the simconnect connection has been silently disconnected.
My external app uses two simconnect connections (connections 321 and 322), and both are disconnected. I am also running my own WASM module (connection 320) but this is not affected.
This is an occasional error, i.e. happens roughly 30% of the time when I run the app.
Does anyone have any idea what could cause this issue? What is error “(5, C000014B)”? I have seen this error before, returned from SimConnect_CallDispatch in earlier versions of MSFS. I am not receiving this error anymore, it is just reported in the simconnect log file.
My application is not considered malware. Also, as I said, this only happens occasionally.
Ok - how come this error is not reported back to the client via the return status of SimConnect_CallDispatch? If it was, I could take action, but this error is only logged in the SimConnect error log. Other pipe errors (e.g. 0xC00000B0) are returned to the client.
I am reviving this old topic to alert people to possible SimConnect starvation issues. We noticed that on some users, it was impossible to open any new SimConnect connections - we’d receive no SIMCONNECT_ID_OPEN notification - and adding a SimConnect.ini file with verbose output showed an external app continuously getting the DISCONNECTED message for about 20 or so concurrent connections it was trying to open.
The worst part was that it kept trying to call 20 SimConnect_Open’s once per second, exacerbating the issue.
Do you have any advice on how we could prevent this from happening on users’ end?
There is a know issue in all simconnect libraries that once a connection is closed, it cannot be reused. You are therefore always limited to the number of SimConnect clients (or connections) that can be used, defined by the MaxClients parameter of the SimConnect.xml file. I always advise people to set this to the max value, which is 128 (I think) rather than using the default value of 64.
There is nothing else that can be done to prevent this. If you know of such badly behaving clients, you should raise a support issue with the developer.
This issue is also provoked by the use of the EXE.xml file to start 3rd party apps, as when apps are started this way it can take from 30 seconds up to > 5mins for the application to obtain a connection (depending on the contents of the Community folder), and the longer it takes the more connection attempts are made. I think it would be better if the programs started via the EXE.xml file should be delayed until the FS is ready to handle the connections, and the program start-up should be staggered slightly so that the previous program can initialise and get a SimConnect connection before later programs are started.
I wholeheartedly agree with you. The problem can be solved by our good friends at Asobo by:
Delaying exe.xml 3rd party app invocation until the time SimConnect is ready to accept connections
Fixing the bug that does not restore connections back to the pool when they are closed.
We have been alerting 3rd parties we identify who use up a lot of connections when their apps try to reconnect continuously, but it’s not up to us to do that, nor should their apps be permitted to misbehave (and sometimes take up the entire connection pool).
What’s worse, our customers feel that it’s our app that is broken, when it can’t connect to the sim, as sometimes exe.xml will invoke it later than the ones misbehaving - so we end up taking the blame.
We know of your startupdelay workaround in your FSUIPC.ini file, but that is - at best - a workaround which will be unnecessary once the above 2 steps are taken to fix the real issue.