| Previous | Next |
| E_MBN_SMS_INVALID_MEMORY_INDEX | E_MBN_SMS_MEMORY_FAILURE |
E_MBN_SMS_LANG_NOT_SUPPORTED
E_MBN_SMS_LANG_NOT_SUPPORTED is a Windows Mobile Broadband (MBN) HRESULT. It indicates that the mobile device does not support the language requested for the SMS operation.
What to check for E_MBN_SMS_LANG_NOT_SUPPORTED
- Query supported SMS languages and select one that the current device reports as available.
- Check CDMA-specific device capabilities when the operation depends on language selection.
- Preserve message meaning when choosing a supported language rather than substituting unrelated defaults.
Microsoft: IMbnSmsEvents::OnSmsSendComplete
Diagnostic interpretation of E_MBN_SMS_LANG_NOT_SUPPORTED
E_MBN_SMS_LANG_NOT_SUPPORTED has the HRESULT value 0x80548223. AllStat records the condition as “SMS language is not supported.”. For E_MBN_SMS_LANG_NOT_SUPPORTED, in practice, interpret that wording at the boundary owned by the Windows component or COM interface that returned the HRESULT, rather than treating the value as a generic Windows message.
Evidence to capture for E_MBN_SMS_LANG_NOT_SUPPORTED
- Record the exact COM method or Windows API, its input object, the calling thread, and the full 0x80548223 value before a wrapper converts it to an exception or Boolean result.
- Capture any IErrorInfo text, activity identifier, event-log entry, and subsystem trace that mentions E_MBN_SMS_LANG_NOT_SUPPORTED or the mbn / sms / lang / supported operation.
- For E_MBN_SMS_LANG_NOT_SUPPORTED, check the documented return contract of the specific API because the same HRESULT can require different recovery in different interfaces.
Retry and recovery for E_MBN_SMS_LANG_NOT_SUPPORTED
Retry E_MBN_SMS_LANG_NOT_SUPPORTED only when the owning API documents a transient state or after the condition described as “SMS language is not supported.” has changed. For E_MBN_SMS_LANG_NOT_SUPPORTED, configuration, policy, format, and authorization failures normally require correction first; an immediate loop can hide the original call site and add secondary errors.
Looking for a different code? Search another status or error code.