Hi,
I would like to have a service using Document style with two
methods but it seems that this is not possible because the
message dispatcher for Document style services checks for
a method with the following signature:
Document MyMethod(MessageContext mc, Document xml) {
.....
}
and the method name is not taken into consideration for
deciding which method to call. But what if I want to have
two methods in my service, let's say a Registration method
and a Ordering method? Should I provide then two endpoints
for each of the methods (I saw an example in WSTK that does it).
Can I do this with Document style services or I need to use RPC?
Thanks.