• 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

hop-by-hop contract between a SOAP node and the next SOAP

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

SOAP, for some reason empathizes the multi-hop paradigm. I don't really understand its importance. Any thoughts?

For example, SOAP Message Transmission Optimization Mechanism says -

Use of the Abstract SOAP Transmission Optimization Feature is a hop-by-hop contract between a SOAP node and the next SOAP node in the SOAP message path, providing no mandatory convention for optimization of SOAP transmission through intermediaries.



Regards,
Dan

 
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A SOAP message can be passed along to a variety of intermediary systems before arriving at its final destination. The importance of this is to not restrict or limit the processing of a SOAP message to a strict point-to-point communication path.
 
Ranch Hand
Posts: 215
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I was looking at some examples of WS-Addressing at Javapassion and I see where its used to specify the next node to hop to using wsa:To. Is there is different place/standard to specify all of the hops for a given soap message, e.g. is there something like this:

<hops>
<hop sequence="1" address="http://address1" />
<hop sequence="2" address="http://address2" />
<hop sequence="3" address="smtp://address3" />
<hop sequence="4" address="someotherprotocol://address4" />
</hops>

just made that up

Is there a standard for this? Or is this provider-specific, i.e. the way to do it is different for Sun and IBM (for example)?

Thanks!
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic