ASMX Web Service authentication
I want to authenticate web service user on first web method call only & use his identity for other web method calls.
How web service mai开发者_运维百科ntain the user identity?
ASMX web services only support the types of authentication directly supported by IIS.
Alternatively, you could implement your own authentication using SOAP Headers, but then your authentication code has to be perfect.
You can set up a session using 2.0 or a cookie and than passing the data will be easy. Let me know.
精彩评论