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

Alternative to heavy soap calls?

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

Does hooking up to a SOAP service takes a lot of time? It has been observed that considering initialization and query time, SOAP is on heavier side.
Is there any light alternative to SOAP?

Rgds,
Jai
 
Author
Posts: 531
Mac OS X Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
Can you explain more about your problem?
alternative to SOAP is REST which does not uses ws-* standards. you may take a look at it http://en.wikipedia.org/wiki/Representational_State_Transfer .

new JAX-WS framework support it, you may take a look at http://metro.dev.java.net if you are interested.


hope it helps
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Before SOAP there was XML-RPC - still supported by this toolkit and various commercial alternatives.

These days many people are reacting to the complexity of SOAP and the WS-* specifications by looking at REST style web services. As Masoud said, tell us more about your problem - how complex are the requests, how large are the responses, etc.

Bill
 
Everybody! Do the Funky Monkey! Like this tiny ad!
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic