开发者

How to identify whether a web server supports Web Services or not?

开发者 https://www.devze.com 2023-01-28 12:13 出处:网络
I am not much aware about the details as to which web servers support Web services written in Java. Would Like to know the following three things:

I am not much aware about the details as to which web servers support Web services written in Java.

Would Like to know the following three things:

1) What is required to have support for Web Services : Only Servlet Container or An Application Server + Web container?

开发者_Python百科

2) Would like to know that do all Web Server supporting web development in Java support Web Services?

3) How to identify whether a particular server supports Web Services or not?

Thanking you in advance.


Your question is somewhat unclear. The term web service is applied to anything from a REST style API to SOAP based services to JSON based, etc etc. Wikipedia says an equivalent is a Web API, and an API can be pretty much anything.

So to answer your question. A servlet container is enough to support most common types of web services, it doesn't require an application server. Take a look at Apache CXF, which is a framework catering for a lot of web services styles (notably SOAP and REST).

Apache CXF is a rather large framework, and can take some time to get your head around. If you need something simpler, you may be better off looking at some object serialization frameworks and implement the servlets yourself (this is what I do mostly). To serialize to XML, use out-of-the box Java JAXB annotations. To serialize to JSON, use Jackson.


Assuming you're talking about SOAP WS-* web services via JAX-WS.

Java EE 5+ stipulates support for JAX-WS compatible web services within the container, both at the Web App level, and at the EJB level. So, any full boat, modern, App Server will have JAX-WS support built in.

Servlet 2.x and 3.0 do not have a requirement to support JAX-WS at the container level, but all of the major implementation of JAX-WS can be deployed within a WAR in a modern Servlet container (like Tomcat).

Java EE 6 offers a Web Profile, but the Web Profile does not include JAX-WS. Java EE 6 Full Profile includes both JAX-WS (SOAP, WS-* web services), and JAX-RS (for HTTP and more RESTful web services).

So.

If you bundle your own implementation, all of the containers should accommodate you. If you want it built it to the container, you'll need a full Java EE 5 or Java EE 6 App Server.

0

精彩评论

暂无评论...
验证码 换一张
取 消