Yuan, What's on that page should work but with some changes. For example, you need to provide a slightly different web.xml descriptor. Try with the following:
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"> <servlet> <servlet-name>restful-addnumbers</servlet-name> <servlet-class>restful.server.AddNumbersImpl</servlet-class> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>restful-addnumbers</servlet-name> <url-pattern>/addnumbers/*</url-pattern> </servlet-mapping> </web-app> As to JSR 311, yes, we are thinking about it but right now we don't have any concrete plans. As we've done with JAX-WS, most likely we would work with projects such as Apache Axis2 or CXF and integrate their JSR 311 implementations (assuming they will have one) into Geronimo. Jarek On 9/28/07, yuanyun <[EMAIL PROTECTED]> wrote: > Hi, does geronimo support RESTful Web Service with JAX-WS? > when i follow this link- > http://weblogs.java.net/blog/kohlert/archive/2006/01/publishing_a_re.html, > and try to migrate it to geronimo,it can't work. > i don't know how to configure it in geronimo. does anyone have any idea? > and whether geronimo has plans to implement JAX-RS (JSR 311). > Thanks for any response in advance. > > Yuan > ________________________________ View this message in context: does geronimo support RESTful Web Service with JAX-WS? > Sent from the Apache Geronimo - Users mailing list archive at Nabble.com. >
