java - Annotated WS in JBoss -
i trying see compatibly of different jee6 servers.
with occasion did basic ws app
http://uploading.com/files/786a932f/helloworldws.war/
it simple 1 :)
@webservice(servicename = "helloworldws") public class helloworldws { /** sample web service operation */ @webmethod(operationname = "hello") public string hello(@webparam(name = "name") string txt) { return "hello " + txt + " !"; } }
it works nice on glassfish 3.1
http://localhost:8080/helloworldws/helloworldws?wsdl
return wsdl
but when try on latest jboss 7 cr link not working anymore despite war deployed , http://localhost:8080/helloworldws works.
my qustion is: wrong in or jboss not yet ready ws yet in light form using annotations ?
thank !
i had similar issue (jbws-3276) in jboss 6 (discussion here).
you may have add entry web.xml described in jboss 6 documentation.
if find new issues recommend report them - though refer specs , not glassfish implementation final word on expected behaviour. web services api maintained @ jboss.org/jbossws best track these releases jax-ws support.
Comments
Post a Comment