Web Services authentication - best practices?

前端 未结 3 1741
时光取名叫无心
时光取名叫无心 2020-12-24 14:01

We have SOAP web services in production that are relying on SOAP Headers (containing plain client credentials) for the authentication. The WS are used in heterogeneous envir

3条回答
  •  春和景丽
    2020-12-24 14:25

    The easiest way to handle it across a variety of platforms is to use HTTP basic authentication and HTTPS for the transport layer. WS-Security would be good if your needs go beyond simple username/password but the support is going to vary quite a bit between platforms. HTTP authentication is supported by every decent SOAP implementation.

提交回复
热议问题