"Doogie" <dnlwhite (AT) dtgnet (DOT) com> wrote
Quote:
I was finishing a design on a web service and at the review a question
was raised about my using a SQLParameter array as a parameter to a
method in the web service. The preference the person had was to use
xml instead. If I understood him correctly he indicated that DotNet
converts everything to xml anyways in a web service |
It's not a matter of .NET doing the conversion. Web Services almost always
use XML.
You should not use platform-specific types in a web service if you intend
any other platform to understand them. A Java application will not
understand SQLParameter.
Out of curiosity, why are you passing SQLParameter values in a web service?
John