SIP

SIP 202 Accepted vs 493 Undecipherable

SIP 202 (Accepted) is a 2xx Success response, while 493 (Undecipherable) is a 4xx Client Failure response. 202 indicates that the request has been accepted for processing but the processing has not been completed. Used primarily for REFER requests. In contrast, 493 means that the request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.

説明

The request has been accepted for processing but the processing has not been completed. Used primarily for REFER requests.

このコードが表示される場合

After sending a REFER request for call transfer. The transfer target acknowledges receipt but hasn't completed the transfer yet.

解決方法

Wait for a NOTIFY to learn the outcome of the referred action. If no NOTIFY arrives, check subscription state and network connectivity.

説明

The request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.

このコードが表示される場合

When using S/MIME encryption for SIP message bodies and the recipient does not have the corresponding decryption key.

解決方法

Ensure the recipient has the correct S/MIME certificate and private key. Consider using TLS for transport-layer encryption instead.

主な違い

1.

202 is a 2xx Success response, while 493 is a 4xx Client Failure response.

2.

SIP 202: The request has been accepted for processing but the processing has not been completed. Used primarily for REFER requests.

3.

SIP 493: The request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.

4.

You encounter 202 when after sending a REFER request for call transfer. The transfer target acknowledges receipt but hasn't completed the transfer yet.

5.

You encounter 493 when when using S/MIME encryption for SIP message bodies and the recipient does not have the corresponding decryption key.

どちらをいつ使うか

For 202 (Accepted): Wait for a NOTIFY to learn the outcome of the referred action. If no NOTIFY arrives, check subscription state and network connectivity. For 493 (Undecipherable): Ensure the recipient has the correct S/MIME certificate and private key. Consider using TLS for transport-layer encryption instead.

詳しく見る