• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Jax-RPC Vs SAAJ

 
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am able to generate IBM websphere JAX-RPC stub from a third party vendor( Websphere commerce server) WSDL but not Axis. Axis stub generation (WSDL2Java ) is throwing Nullpointer exception. I don't want to know why Axis stub generation is failing.My responsibility is to consume webservice. I was asked to change one of classes( XXX_deser.java) to resolve run time exception( Class cast exception) from other team, who is providing the service . I am againist to this but no option for me. I have to choose best solution out of JAX-RPC which was changed to rectify runtime exceptions ,SAAJ. Can you tell me which gives the best solution in this case?
I perfer SAAJ instead of JAX-RPC with stub class changes. Generated Web service client source code should not changed. What do you think ?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We don't have enough information to give an opinion about which one is better in your scenario, but in general, I prefer higher-level APIs (like JAX-RPC) over lower-level ones (like SAAJ).

Having said that, JAX-RPC has been obsolete for years, and will likely be removed from the next JEE version. So any new development should be done using its successor JAX-WS.
 
srinivas srinivasmeenavalli
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for details
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic