由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Java Web Services Tutorial 这个是最新的吗?
相关主题
java SOAP比restful难学吗?问个SOAP Service的问题
怎么把servlet publish成web servicesjava web service 得迷惑
Web service framework choice?求指教: CXF Cleint API for Axis2 SOAP web service问题
SOAP over JMS with CXF frame?soa变成rest,大家公司在用哪个?
如果用J2EE, 那还需要Apache吗?soap binding with CXF
question regarding apache jersey and spring mvc 3发现Ninja framework 做web REST 挺好使
Spring JBOSSRe: DCOM, CORBA, JAVA/RMI
Java/J2EE的书请教, JAVA STUDY WEBSITE
相关话题的讨论汇总
话题: ws话题: java话题: soap话题: tutorial话题: web
进入Java版参与讨论
1 (共1页)
m*****j
发帖数: 499
1
要开始学习Java WS,官方网站上只找到这个tutorial
http://docs.oracle.com/cd/E17802_01/webservices/webservices/doc
l/doc/
日期是06年的,不知道是不是最新的?
另外不知道从这个tutorial入手学习是否合适?目前只做过一点桌面应用和jsp+jdbc i
n tomcat。如果还有别的教程推荐的话就太感谢了。
多谢多谢!
g*****g
发帖数: 34805
2
No, Java WS should be very simple. Check Apache CXF for SOAP and Jersey
for REST.

i

【在 m*****j 的大作中提到】
: 要开始学习Java WS,官方网站上只找到这个tutorial
: http://docs.oracle.com/cd/E17802_01/webservices/webservices/doc
: l/doc/
: 日期是06年的,不知道是不是最新的?
: 另外不知道从这个tutorial入手学习是否合适?目前只做过一点桌面应用和jsp+jdbc i
: n tomcat。如果还有别的教程推荐的话就太感谢了。
: 多谢多谢!

m*****j
发帖数: 499
3
多谢!
大致看了看,感觉好像Java现在推的application server是glassfish?似乎是和apach
e的cxf功能相同的?不知道两个用起来有啥区别吗?应该用哪个?

【在 g*****g 的大作中提到】
: No, Java WS should be very simple. Check Apache CXF for SOAP and Jersey
: for REST.
:
: i

g*****g
发帖数: 34805
4
All you need is a web container for web service. You can use tomcat
or jetty.

apach

【在 m*****j 的大作中提到】
: 多谢!
: 大致看了看,感觉好像Java现在推的application server是glassfish?似乎是和apach
: e的cxf功能相同的?不知道两个用起来有啥区别吗?应该用哪个?

r*****s
发帖数: 985
5
这年头app server有些过时,
spring+jetty/tomcat
spring mvc for restful service
cxf是个framework for both SOAP and REST services,
基本上替代了Axis2了。

apach

【在 m*****j 的大作中提到】
: 多谢!
: 大致看了看,感觉好像Java现在推的application server是glassfish?似乎是和apach
: e的cxf功能相同的?不知道两个用起来有啥区别吗?应该用哪个?

t*******e
发帖数: 684
6
REST WS is relatively simple, while SOAP based could be very complex and
comprehensive. Below is the full list of SOAP WS specification,
WS-Addressing
WS-Policy
WS-PolicyAttachment
WS-Resource
WS-Notification
WS-Inspection
WS-Security
WS-Trust
WS-ReliableMessaging
WS-Coordination
WS-Transaction
WS-Routing
WS-Federation
WS-Eventing

【在 r*****s 的大作中提到】
: 这年头app server有些过时,
: spring+jetty/tomcat
: spring mvc for restful service
: cxf是个framework for both SOAP and REST services,
: 基本上替代了Axis2了。
:
: apach

g*****g
发帖数: 34805
7
while REST is certainly simpler and more light-weighted, SOAP
is more like a remote function call and it's easier to consume
with tools.

【在 t*******e 的大作中提到】
: REST WS is relatively simple, while SOAP based could be very complex and
: comprehensive. Below is the full list of SOAP WS specification,
: WS-Addressing
: WS-Policy
: WS-PolicyAttachment
: WS-Resource
: WS-Notification
: WS-Inspection
: WS-Security
: WS-Trust

r*****s
发帖数: 985
8
en,
WS(SOAP)一开始也号称simple,
a typical interview question like
- "why is WS better than CORBA?"
- "it's simpler, duh!"
然后就越来越复杂啦,
thanks to the specs that you listed.
然后new typical questions like
- "why do you choose REST over SOAP?"
- "duh, because it's simpler!"

【在 g*****g 的大作中提到】
: while REST is certainly simpler and more light-weighted, SOAP
: is more like a remote function call and it's easier to consume
: with tools.

N*****m
发帖数: 42603
9
即便如此,说的也还是事实

【在 r*****s 的大作中提到】
: en,
: WS(SOAP)一开始也号称simple,
: a typical interview question like
: - "why is WS better than CORBA?"
: - "it's simpler, duh!"
: 然后就越来越复杂啦,
: thanks to the specs that you listed.
: 然后new typical questions like
: - "why do you choose REST over SOAP?"
: - "duh, because it's simpler!"

r*****s
发帖数: 985
10
只有你解决的问题Simple不Simple,
技术上原理上实现上没太大区别
当然,
SOAP is screwed by the XML hype

【在 N*****m 的大作中提到】
: 即便如此,说的也还是事实
N*****m
发帖数: 42603
11
这不对,有时候即使问题simple,工具本身繁琐,那就不行了

【在 r*****s 的大作中提到】
: 只有你解决的问题Simple不Simple,
: 技术上原理上实现上没太大区别
: 当然,
: SOAP is screwed by the XML hype

r*****s
发帖数: 985
12
您跟我说的不是一个事儿,
您说的是静态的比较,
我是说从发展的角度来看,
都一样,
一开始的时候都是简单的,
或者以为了简单的名义出现的,
发展了一段时间,
这堆人要解决federation
那堆人要解决confidationality
这堆人要能rounting
那堆人要canonicalization,i18n ...
其实简单还是复杂,
都是marketing的需要,
忽悠着客户更新换代,
我们才有饭吃,
呵呵

【在 N*****m 的大作中提到】
: 这不对,有时候即使问题simple,工具本身繁琐,那就不行了
S*******h
发帖数: 7021
13
Where to find the good spring+jetty/tomcat tutorials for someone new to J2EE?

【在 r*****s 的大作中提到】
: 这年头app server有些过时,
: spring+jetty/tomcat
: spring mvc for restful service
: cxf是个framework for both SOAP and REST services,
: 基本上替代了Axis2了。
:
: apach

1 (共1页)
进入Java版参与讨论
相关主题
请教, JAVA STUDY WEBSITE如果用J2EE, 那还需要Apache吗?
Re: 一个最近完成的JAVA项目的反思。question regarding apache jersey and spring mvc 3
问个J2EE server跟Apache Web Server的问题?Spring JBOSS
Re: Ask a Q: where did the name Tomcat cJava/J2EE的书
java SOAP比restful难学吗?问个SOAP Service的问题
怎么把servlet publish成web servicesjava web service 得迷惑
Web service framework choice?求指教: CXF Cleint API for Axis2 SOAP web service问题
SOAP over JMS with CXF frame?soa变成rest,大家公司在用哪个?
相关话题的讨论汇总
话题: ws话题: java话题: soap话题: tutorial话题: web