what if I want to use a web service for insert operation by assigning
values to object property and then using insert command in web service ...
I want to use webservice for middle tier ...for database operations ...
how should i do it ?
> Check ou the following MSDN link:
http://msdn.microsoft.com/architecture/patterns/default.aspx?pull=/library/en-us
/dnpatterns/html/ArcThreeLayeredSvcsApp.asp
Dilip Krishnan - 28 Feb 2005 15:33 GMT
For that you would essentially design your operations (web methods) in
such a way that you can accept different input that derive from the same
base type; type as in xsd type not necessarily object types;and expose
an insert operation.
> what if I want to use a web service for insert operation by assigning
> values to object property and then using insert command in web service ...
[quoted text clipped - 4 lines]
>
> http://msdn.microsoft.com/architecture/patterns/default.aspx?pull=/library/en-us
/dnpatterns/html/ArcThreeLayeredSvcsApp.asp

Signature
HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
http://www.geniant.com
Keenan Newton - 28 Feb 2005 15:42 GMT
Are you looking for step by step, on how to create your middle tier?