J
J.Marsch
I'm starting to think about my first web service.
In order to do its job, this web service needs to have a lot of inputs, and
it needs to return a batch of records.
I don't want the service to be "chatty". If I were doing remoting, I'd
create a marshal by value class to contain the input parameters, and another
to return the results.
What do I need to do if I want my web service to accept/return complex data?
Declare an interface and use that as the input param (and another for the
output)? something else?
This web service must be compatible with non-.Net clients, so I don't want
to do anything that is proprietary to .Net.
In order to do its job, this web service needs to have a lot of inputs, and
it needs to return a batch of records.
I don't want the service to be "chatty". If I were doing remoting, I'd
create a marshal by value class to contain the input parameters, and another
to return the results.
What do I need to do if I want my web service to accept/return complex data?
Declare an interface and use that as the input param (and another for the
output)? something else?
This web service must be compatible with non-.Net clients, so I don't want
to do anything that is proprietary to .Net.