• 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

ebXML and JAXM?

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all,

Could anyone suggest to the way to send and receive (asynchronously) ebXML messages? Could I use JAXM for that? AFAIK JAXM comes with ebXML profile, and according to docs supports asynchronous messaging via Jaxm-Provider (as a reference implementation from sun). Ultimately I want to make it talk with BEA Weblogic ebXML implementation over https. Could anyone recommend using JAXM? Or should I look for anything else? Or build my own ebXML messaging using SAAJ?

Thanks a lot.
 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ebXML is a specification and a format to support electronic transfer of data. Internally it is same as XML as it uses XML tags . So you can use JAXM for that .
ebXML travels as MIME on HTTP . ebXML has SOAP header , envelope and body.
 
Ivan Balashov
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Fantastic.
Does it mean I can use JAXM for everything that is "internally XML"?
 
Bartender
Posts: 2968
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ivan Balashov:
Could anyone recommend using JAXM? Or should I look for anything else? Or build my own ebXML messaging using SAAJ?



JAXM isn't really gaining momentum as vendors see it as a duplication of functionality already provided by JMS. If you are happy with your vendor�s JAXM implementation and your vendor plans to support it in the future you should be able to use it. Furthermore J2EE is standardizing on UDDI not ebXML. So you have to go with your needs and what you are comfortable with.

However if you feel you should stick with a more "standard" route you may want to look into:
Asynchronous operations and Web services, Part 1: A primer on asynchronous transactions
Asynchronous operations and Web services, Part 2

8.4.3 Refactoring Synchronous to Asynchronous Interactions
[ June 07, 2006: Message edited by: Peer Reynders ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic