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

How you define Web Services?

 
Ranch Hand
Posts: 782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guyz,
It is interesting to see that Web Services is a vast area.Therefore defining such terms are bit tedious then others.So if someone(layman-no knowledge of CS) ask What is Web Services? Then how could you define? Mr.Prasad please give some brief definition.
Bye,
Viki.
[ January 15, 2003: Message edited by: Vikrama Sanjeeva ]
 
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think to answer it in a layman words, Web Services can be described as "Services provided on Internet". It sounds like really layman but that is the basics.
The services can be of different types depending upon the service provider and users. Also Web services can be offered externally on the Web to general public users or can be internally available for intranet. Also it is important to understand that users are not necessarily "humans". The user of a webservice can be another webservice itself.
There could be a cost associated to providing web service. That's why Web services security becomes quite important. We would want to know who used the service and Was user authorised to use it.
 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's a way to expose functionality over the Internet. It's like calling a regular method, but the code (functionality) resides somewhere on the Internet. There is so much great potential for this. Just imagine before when you wrote DLLs. You had to distribute that DLL to your client programmers. Everytime a change is made, you must redistribute your DLL. With Web services, that no longer is a problem because you expose functionality in a single-central location over the Internet.
It's also a great way of doing business as companies can expose to other companies their Web services and transact (automatically) over the Internet without human intervention.
 
Vikrama Sanjeeva
Ranch Hand
Posts: 782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Originally posted by Stanley Tan:
With Web services, that no longer is a problem because you expose functionality in a single-central location over the Internet.
It's also a great way of doing business as companies can expose to other companies their Web services and transact (automatically) over the Internet without human intervention.


It seems that WS is heading back to Centralized Computing.
Bye,
Viki.
 
Ranch Hand
Posts: 131
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Stanley, after reading your response, I am wondering, how is this different than a RMI or EJB invocation ? Isn't EJB or a Remote Object fit your definition of providing services over Internet ?
thanks in advance
 
Vikrama Sanjeeva
Ranch Hand
Posts: 782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Originally posted by Rasika Chitnis:
Stanley, after reading your response, I am wondering, how is this different than a RMI or EJB invocation ? Isn't EJB or a Remote Object fit your definition of providing services over Internet ?


I think EJB and RMI are technologies to achieve a web service.
Bye,
Viki.
 
Stanley Tan
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, but with RMI, you are limiting yourself to the Java platform. Also XML Web services operate by default over port 80 and hence can traverse most firewalls.
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sure, you can compare Web Services to RMI, CORBA, DCOM and other distributed computing models. That's because Web Services involves a client one machine and a server on the other machine.
However, Web Services is much more than that. It is a different approach to application development. Instead of writing a program to solve a particular problem, you write a program that provides various services.
Of course, along with this different programming paradigm is the added bonus that your Web Services can be used by any other application written in any language running on any platform, since technologies like SOAP and XML eliminate the concern over platforms and languages.
So don't get too carried with compariing Web Services to CORBA and EJB, since it's a little like comparing apples and oranges.
 
The problems of the world fade way as you eat a piece of pie. This tiny ad has never known problems:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic