The purpose of using a Javascript proxy for the Web Service using a service reference with Script Manager is to avoid a page load. If the information being retrieved is potentially sensitive, is there a way to secure this web service call other than using SSL?
|
1
|
|||
|
|
|
If your worried about other people access your web service directly, you could check the calling IP address and host header and make sure it matches expected IP's addresses. If your worried about people stealing information during it's journey from the server to the client, SSL is the only way to go. |
||
|
|
|
|
I would use ssl it would also depend I suppose on how sensitive your information is. |
||
|
|
|
|
That's what I thought. Thanks for the confirmation. |
||
|
|
|
|
I would:
SSL prevents man-in-the-middle Tokenized requests verify that the request is coming from an active and authenticated session, within a reasonable amount of time from the last activity within the session. This prevents stale requests being re-submitted and verifies that it came from the source of the session (store the IP address, user-agent, etc on the server for session management). Validating that the inputs are within expected ranges verifies that the request has not been doctored by the party that you are talking to. |
||
|
|
