Depending on the complexity it can either talk to the DAL or simply use any
Business Objects you may have to perform the required business
functionality. Check out this link:
Designing Applications and Services
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/AppA
rchCh2.asp
Thanks,
Sam

Signature
_______________________________
Sam Santiago
ssantiago@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
> I have a web service which accepts some data and stores that data in the
> database. My question is should this web service talk directly to the data
[quoted text clipped - 8 lines]
>
> Alex.
Ice - 14 Sep 2004 17:45 GMT
why do you need a webservice to persist data? security, validation or
something? in distributed solutions this can be a big time bottlneck.
i general abstract my communication layer (web services, remoting,
enterprise services (server apps)) from actual logic. In short, I'd have
another class do the persisting.
ice
> Depending on the complexity it can either talk to the DAL or simply use any
> Business Objects you may have to perform the required business
> functionality. Check out this link:
>
> Designing Applications and Services
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/AppA
rchCh2.asp
> Thanks,
>
[quoted text clipped - 14 lines]
> >
> > Alex.