Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is meant by WS-*?

I have seen the abbreviation WS-*, but I have not been able to figure out what this means, and why is it important?

like image 946
MedicineMan Avatar asked May 12 '09 22:05

MedicineMan


People also ask

What is WS-* support?

Web Service standards and specifications are known as "WS-*". These represents a set of protocols and specifications. These are used to extend the capability of web service.

What are WS standards?

WS* refers to a seemingly forever growing set of standard protocols based on the SOAP specification and developed with wide industry backing. Their purpose is to facilitate common messaging requirements between systems.

What is WS specification in WCF?

Web services protocols implemented by WCF WCF provides support for Web services (WS) infrastructure protocols through channels and Web services application protocols through the contracts feature.


2 Answers

WS-* is shorthand for the the myriad of specifications that are used for web service messaging.

Some of the services are:

  • WS-Security
  • WS-SecureConversation
  • WS-Federation
  • WS-Authorization
  • WS-Policy
  • WS-Trust
  • WS-Privacy
  • WS-Test

There is a lot of information to digest, depending on what you need. Here's a list of the specifications on Wikipedia.

like image 153
Steven Lyons Avatar answered Sep 25 '22 11:09

Steven Lyons


The Web Service stack. There are a bunch of specifications for Web Services, and there names are written WS-whatever, for example: WS-SecurityPolicy. The * is used as a wildcard to indicate that you are referring to the Web Services stack.

like image 45
Richard Avatar answered Sep 23 '22 11:09

Richard