• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

JAXM Servlet in Weblogic 10.2

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, Is JAXM Servlet implementation supported in Weblogic 10.2 as is ? We have this Servelt implemented in Weblogic 8.1 to receive and process SOAP Messages. However, there is no mention of whether we need to make any changes to this when upgrading from 8.1 to 10.2 , any where.
 
Surya Yadavalli
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is no support for JAXM servlet in weblogic 10.x versions. The webservices.jar that comes along with weblogic 10.x doesn't contain JAXM or supported classes.

Looking at the older versions of JAXM, there are not many other classes that this JAXMServelt depends on. So, you can come up with your own implementation of those JAXM methods in your servlet classes and instead of extending JAXMServlet, extend HTTPServlet directly.

cheers !!
reply
    Bookmark Topic Watch Topic
  • New Topic