| Anterior | Siguiente |
| RPC_S_INVALID_STRING_BINDING | RPC_S_INVALID_BINDING |
RPC_S_WRONG_KIND_OF_BINDING
Qué significa RPC_S_WRONG_KIND_OF_BINDING
El runtime distingue, entre otros, server bindings usados por clientes y client bindings que una manager routine recibe para describir al caller. Un handle reconocido puede ser semánticamente incorrecto para la función.
Capture dónde se originó el binding y la API que lo consume. No reutilice handles server-side/client-side por parecido de tipo C. Mantenga ownership/type information junto al handle en wrappers internos.
Qué comprobar
- Registre origen y kind del binding.
- Compruebe el kind esperado por la API.
- Evite wrappers que pierdan type/lifecycle metadata.
Referencias técnicas
¿Buscas un código diferente? Buscar otro código de estado o error.