Setting up Soap Actions in Config files?

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hi All,

I need to implement multiple Soap Actions with same functionality. Is
it possible to setup configuration to use the same function with
multiple SoapActions?

I want to avoid the compilation for every changes made for the Action
alone.

[SoapMethod("mymethod1")]
public SoapEnvelope myMethod1(SoapEnvelope envelope)
{
.... Implements something / calls another function
}

[SoapMethod("mymethod2")]
public SoapEnvelope mymethod2(SoapEnvelope envelope)
{
.... Implements something / calls another function
}

Any suggestions?

Thanks

.