Hi,
I have a problem with simconnect.
I request FacilitiesList everything is good for WAYPOINT and other type.
But when I request FacilityData with the list of waypoints i’ve received I get some UnknownResponse and RecvExceptionResponse for some of them.
No errors for other types like AIRPORT, NDB, VOR
To reproduce :
Query FacilityList with WAYPOINT type
Query FacilityData with the list
Result :
For some of there I received UnknownResponse or RecvExceptionResponse
Other thing:
I test with the JS api (this.facilityLoader.getFacilities(icaos)):
If I request with:
const icao: IcaoValue = {
__Type: “JS_ICAO”,
ident: “R069A”,
region: “SC”,
type: “W”,
airport: “” // <= airport empty
};
It not found, but with:
const icao: IcaoValue = {
__Type: “JS_ICAO”,
ident: “R069A”,
region: “SC”,
type: “W”,
airport: “SCCI”
};
It find it