Sharing user object using webservice

  • Thread starter Thread starter Edgardo Rossetto
  • Start date Start date
E

Edgardo Rossetto

Hello,

We have several web applications (some in classic asp, some in asp.net
and there's probably gonna be others with asp.net 2) that share the same
user db, the problem is that all the applications retrieve the
information (make auth etc) directly from the database, I want to make a
webservice to integrate the user database across applications (think
about something like passport), have anyone done something similar? is
there any information available about this?

Thanks,
Edgardo
 
Essentially, you will want to design WebMethods that accept parameters for
your selects, updates, etc and return a DataSet object.
 
Back
Top