| .NET DotNet Forum Index » ASP.NET - Webservices Forum » web service design question... |
|
Page 1 of 1 |
|
| Author |
Message |
| Simon Whale... |
Posted: Wed Sep 30, 2009 4:50 am |
|
|
|
Guest
|
Hi,
I have been tasked with creating a web service to recieve quote information.
I have written webservices before but with little security (by passing
usernames).
My question / advise needed is how to make security for an unlimited number
of users as currently this will be used my 100 different locations and the
information is coming from a 3rd party application.
hope this makes sense
Simon |
|
|
| Back to top |
|
|
|
| Mr. Arnold... |
Posted: Wed Sep 30, 2009 11:57 am |
|
|
|
Guest
|
Simon Whale wrote:
Quote: Hi,
I have been tasked with creating a web service to recieve quote information.
I have written webservices before but with little security (by passing
usernames).
What kind of Web service, a legacy Web service or a WCF Web service.
Quote:
My question / advise needed is how to make security for an unlimited number
of users as currently this will be used my 100 different locations and the
information is coming from a 3rd party application.
I guess it would be based on what Web service model you'll be using. |
|
|
| Back to top |
|
|
|
| JeffP->... |
Posted: Wed Sep 30, 2009 11:59 pm |
|
|
|
Guest
|
how'about using a token that remains alive in the client session.
Write a wrapper to do the login, then call that wrapper passing the needed
values and the wrapper passes back the token, session(userinfo) as an object
w/limits rights to do certain things
HTH
"Simon Whale" wrote:
Quote: Hi,
I have been tasked with creating a web service to recieve quote information.
I have written webservices before but with little security (by passing
usernames).
My question / advise needed is how to make security for an unlimited number
of users as currently this will be used my 100 different locations and the
information is coming from a 3rd party application.
hope this makes sense
Simon
|
|
|
| Back to top |
|
|
|
|