java - want to replace xfire for developing web service -


i using xfire develop soap services . other best alternative xfire . want replace xfire code other best approach beca

you can develop web services in different ways; apache cxf successor of xfire perhaps it's easiest path; there migration guide . can using spring-ws, depends if familiar spring , if want/can adopt spring in project. spring web services contract first i.e. start wsdl (or xsd in prefer) , write code handle data incoming; can read more here spring ws flexible , lets handle whole soap body allowing handle ws client mistakes (in ws implementation handled 2 different version of ws same endpoint).

if writing web services, using spring , not afraid manage whole soap body can choose spring ws; if want easy migration path (because part of team alreay knows xfire) apache cxf way go.


Comments