English 中文(简体)
我的网络服务为什么为大多数流动浏览器产生XML结果,而不是产生超文本结果?
原标题:Why does my web service produce an XML result for most mobile browsers instead of an HTML result?

我拥有一个有余力的网络服务资源,我先界定了XML和超文本方法。 对于桌面浏览器来说,这一服务准确生成了超文本,而对于安的客户I,则准确书写了XML。

然而,在流动浏览器方面,该处生产XML,应当产生超文本。

一种方法附有附加说明

@Produces({MediaType.TEXT_HTML})

@Produces({MediaType.APPLICATION_XML})

我是否需要比接受方更仔细地研究,以取得预期结果?

<>Update: 从移动浏览器申请中截获的可接受的媒体类型是:

INFO: application/xml

INFO: 申请/xhtml+xml

INFO:形象/png

INFO: text/html; q=0.9

资料:文本/解释;q=0.8

资料:/;q=0.5

最佳回答
问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签