SIP

SIP 200 OK vs 488 Not Acceptable Here

SIP 200 (OK) is a 2xx Success response, while 488 (Not Acceptable Here) is a 4xx Client Failure response. 200 indicates that the request has succeeded. For INVITE, the call has been answered. For other methods, the action has been completed successfully. In contrast, 488 means that the request was understood but the session description (SDP) is not acceptable. The response may contain a list of acceptable media parameters.

Description

The request has succeeded. For INVITE, the call has been answered. For other methods, the action has been completed successfully.

Quand vous le voyez

When a call is answered (INVITE 200 OK), a registration succeeds (REGISTER 200 OK), or a subscription is accepted (SUBSCRIBE 200 OK).

Comment résoudre

No fix needed — this is a success response. The caller should send an ACK to complete the three-way handshake for INVITE transactions.

Description

The request was understood but the session description (SDP) is not acceptable. The response may contain a list of acceptable media parameters.

Quand vous le voyez

When codec negotiation fails — the callee cannot handle any of the codecs offered in the SDP. Common in interop scenarios.

Comment résoudre

Check the Warning header or SDP in the response for acceptable parameters. Add compatible codecs (e.g., G.711 as a fallback) to your offer.

Différences clés

1.

200 is a 2xx Success response, while 488 is a 4xx Client Failure response.

2.

SIP 200: The request has succeeded. For INVITE, the call has been answered. For other methods, the action has been completed successfully.

3.

SIP 488: The request was understood but the session description (SDP) is not acceptable. The response may contain a list of acceptable media parameters.

4.

You encounter 200 when when a call is answered (INVITE 200 OK), a registration succeeds (REGISTER 200 OK), or a subscription is accepted (SUBSCRIBE 200 OK).

5.

You encounter 488 when when codec negotiation fails — the callee cannot handle any of the codecs offered in the SDP. Common in interop scenarios.

Quand utiliser lequel

For 200 (OK): No fix needed — this is a success response. The caller should send an ACK to complete the three-way handshake for INVITE transactions. For 488 (Not Acceptable Here): Check the Warning header or SDP in the response for acceptable parameters. Add compatible codecs (e.g., G.711 as a fallback) to your offer.

En savoir plus