Re: JAX-WS Web Services

2014-10-13 Thread Leo Donahue
On Sun, Oct 12, 2014 at 9:16 AM, Meeraj Kunnumpurath < mee...@servicesymphony.com> wrote: > Hi, > > I am porting an application from Weblogic 12 to Tomcat 8. The application > has a set of web services that implement javax.xml.ws.Provider > exposed by declaring them as servlets in web.xml. However

Re: JAX-WS Web Services

2014-10-12 Thread Meeraj Kunnumpurath
Thank you. I found the catalina-ws add on, trying out that now. For some reason, I assumed JSR 109 was required for a servlet container. Regards Meeraj On Sun, Oct 12, 2014 at 3:22 PM, John D. Ament wrote: > Tomcat's a servlet container, not an app server. If you want SOAP APIs, > you need to

Re: JAX-WS Web Services

2014-10-12 Thread John D. Ament
Tomcat's a servlet container, not an app server. If you want SOAP APIs, you need to use a SOAP runtime like CXF in your app. On Sun, Oct 12, 2014 at 10:16 AM, Meeraj Kunnumpurath < mee...@servicesymphony.com> wrote: > Hi, > > I am porting an application from Weblogic 12 to Tomcat 8. The applicat

JAX-WS Web Services

2014-10-12 Thread Meeraj Kunnumpurath
Hi, I am porting an application from Weblogic 12 to Tomcat 8. The application has a set of web services that implement javax.xml.ws.Provider exposed by declaring them as servlets in web.xml. However, it doesn't seem to be working in Tomcat, when access the WSDL URL, I get a 404. Regards -- *Mee