VOLTE parameter in Attach Request/Accept message

VOLTE字面上是:Voice over LTE. 但是人们所提到的VOLTE,实际上是指“Voice over LTE utilizing IMS”

Attach Request/Accept消息中包含了VOLTE相关的参数。

 1. Attach request

参考: 3GPP 24.301 – 8.2.4

关注红框内的3个参数:

SrvccToGeranOrUtranCapability

参考: 3GPP 24.008 – 10.5.5.12

SRVCC to GERAN/UTRAN capability

0 SRVCC from UTRAN HSPA or E-UTRAN to GERAN/UTRAN not supported

1 SRVCC from UTRAN HSPA or E-UTRAN to GERAN/UTRAN supported

UE usage setting/voice preference 

参考: 3GPP 24.008 – 10.5.5.28

关于Voice centric 和Data centric

参考3GPP 23.221 – 7.2a

 

以上这一段话,可以这样来理解:

· UE设置为“Voice centric”, 将确保语音业务能够进行。比如: 如果网络不支持CSFB和IMS voice, 那么UE 将disable LTE,从而是UE 重选至2G/3G cell, 从而保证语音业务能够进行;

· UE设置为“Data centric”, 如果所驻留的网络不支持CSFB和IMS voice,UE 也会继续驻留在LTE cell.

关于Voice preference

如果LTE网络及支持CSFB,也支持IMS VOICE,那么通话时,应该选哪个呢?这是就要看这个参数了。

2. Attach accept

如何确定网络是否支持CSFB以及是否支持IMS呢?可以通过ATTACH ACCEPT消息.

参考: 3GPP 24.301 – 8.2.1

IMS voice over PS session indicator (IMS VoPS)

0:  IMS voice over PS session in S1 mode not supported

1:  IMS voice over PS session in S1 mode supported

这一参数来表示网络是否支持IMS(Voice over LTE utilizing IMS)

时间: 2024-10-12 20:09:53

VOLTE parameter in Attach Request/Accept message的相关文章

解决The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.

SpringMVC中当在浏览器中输入对应的MappingUrl时,报The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers. 错误的意思是:说是指定的资源已经找到,但它的MIME类型和客户在Accpet头中所指定的不兼容 @Res

HTTP Status 406 --- not acceptable according to the request "accept" headers

The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers. 使用以下方案解决 springmvc json配置方案 Spring4.1.0 使用<annotation-driven />MVC配置方法. 在pom.xml

浏览器报406 错误:The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request &quot;accept&quot; headers

The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers 网上关于这个问题有很多说法,有的说spring mvc版本问题的,有说jackson jar包问题问题的,试了下都不可以, 这里的解决方法参考: https://www.cn

The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive re

使用SpringMVC,页面跳转时出现Bad Request: 信息如下: Type Status Report Message Required String parameter 'description' is not present Description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malfo

基于openfire+smack即时通讯instant message开发

前言 Java领域的即时通信的解决方案可以考虑openfire+spark+smack.当然也有其他的选择. Openfire 是基于Jabber协议(XMPP)实现的即时通信服务器端版本,目前建议使用3.8.1版本,这个版本是当前最新的版本,而且网上可以找到下载的源代码. 即时通信客户端可使用spark2.6.3,这个版本是目前最新的release版本,经过测试发现上一版本在视频支持,msn网关支持上可能有问题,所以选择openfire3.8.1+spark2.6.3是最合适的选择. Smac

HTTP Request GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE Methods

注:本文为个人学习摘录,原文地址为:http://javaeedevelop.iteye.com/blog/1725299 An HTTP request is a class consisting of HTTP style requests, request lines, request methods, request URL, header fields, and body content. The most common methods that are used by a clien

[Java][Web]Request 实现转发和 MVC 设计模式

String data = "aaaaa"; request.setAttribute("data",data); // 将数据存在 request request.getRequestDispatcher("/message.jsp").forward(request,response); // 实现转发 MVC => M model/javabean  V view/jsp  C controller / servlet 在 messa

The resource identified by this request is only capable of generating responses with characteristics

[转]今天在调试springMVC的时候,在将一个对象返回为json串的时候,浏览器中出现异常: The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers (). 从网上查了下,说是让配置下json转化bean: <bean

java webservice服务器端获取request对象的三种方式

有的时候在webservice里我们需要获取request对象和response对象,比如想要获得客户端的访问ip的时候就需要这么做,下面说三种方式,当然三种方式可能是针对不同方式部署webservice获取request对象的方法. 第一种:先配置注入: @Resource private WebServiceContext webServiceContext; 其次是下面的代码: MessageContext mc = webServiceContext.getMessageContext(