What should we implement to authorize clients to use our web service?

后端 未结 3 2108
春和景丽
春和景丽 2021-02-11 02:31

We have a web service that we will be hosting on a public web server and it will be contacted by web services hosted on web servers within the walls of a hospital. We have writ

3条回答
  •  无人共我
    2021-02-11 02:56

    Could you use something like Basic Authentication over https to provide username password challenging? I believe the Microsoft SOAP supports it fairly well. You pretty much just use IIS to configure basic auth (must use SSL), and in your C# just pass ICredentials to your proxy.

    From googling, it looks like other languages support basic auth over SOAP too.

提交回复
热议问题