Hi,
There is not a simple way to configure a method with multiple soap actions.
You can do it, but it requires some custom and complex code.
For instance, you can override the method RouteRequest to call the right
method
public class MyService : Microsoft.Web.Services3.Messaging.SoapService
{
protected override
Microsoft.Web.Services3.Messaging.SoapMethodInvoker
RouteRequest(Microsoft.Web.Services3.SoapEnvelope request)
{
return base.RouteRequest(request);
}
}
However, I do not recommed that approch because of its complexity.
I think a Soap Router will work best in an scenario like this. You can take
a look to the router quickstart shipped with WSE.
Regards,
Pablo.
> Hi All,
>
[quoted text clipped - 20 lines]
>
> Thanks