• 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

difference between JAXM and JAX-RPC

 
Ranch Hand
Posts: 393
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just interested in knowing what's the difference between two Technology,what i know is as follows:-

JAX-RPC - JAVA API used for calling Remote method used when we use "rpc" as binding style

JAXM - Java Api used for creating XML documents through Java used when we use "document" as binding style.

Just wanted to know can we use JAXM for calling remote method,like we do in JAX-RPC...and any other difference between these two ?..
 
Ranch Hand
Posts: 906
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JAXM and JAX-RPC are kind of competing technologies
You can send SOAP messages with JAXM, just like you can do it with JAX-RPC.

Nevertheless, JAXM is not part of J2EE 1.4, so if this is important for you, just keep on working with JAX-RPC and SAAJ.
JAXM probably gonna die
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic