How to do authentication using SOAP?

后端 未结 4 1092
夕颜
夕颜 2020-12-30 06:47

How do I authenticate users with SOAP?

Will I have to require the user to send his username and password with every SOAP request and I authenticate him against the d

4条回答
  •  Happy的楠姐
    2020-12-30 06:59

    Having the user send the username and password with each request is the way that I've seen most SOAP interfaces implemented. Actually, I've not seen any other implementation other than the API key idea, which is just trading a Username and Password for some other token.

    SOAP interfaces should be stateless, like HTTP, so this seems like a normal consequence.

提交回复
热议问题