Here is the scenario while converting existing WSE3 services to WCF services keeping them compatible with existing WSE3 clients:

I have a ServiceContract

[ServiceContract(Namespace = "ServiceNamespace")]
public interface IBasicInfo
{

    [OperationContract(Action = "ServiceNamespace" + "/GetBasicInfo", 
        ReplyAction = "ServiceNamespace" + "/GetBasicInfo")]
    BasicInfoResponse GetBasicInfo(BasicInfoRequest request);
}

I have another ServiceContract inheriting from above one:

 [ServiceContract(Namespace = "CustomerServiceNamespace/Customer")]
        public interface ICustomerService : IBasicInfo
        {

            [OperationContract(Action = "CustomerServiceNamespace" + "/GetCustomerInfo", 
                ReplyAction = "CustomerServiceNamespace" + "/GetCustomerInfo")]
            CustomerDetailsResponse GetCustomerInfo(CustomerDetailsRequest request);

             [OperationContract(Action = "CustomerServiceNamespace" + "/GetBasicInfo",
                ReplyAction = "CustomerServiceNamespace"  + "/GetBasicInfo", Name = "GetCustomerBasicInfo")]
            new BasicInfoResponse GetBasicInfo(BasicInfoRequest request);

        }

If you observe, you will find that namespace for the GetBasicInfo OperationContract is different in base interface and in derived interface. When the derived interface is implemented (i.e. when GetBasicInfo OperationContract is called from CustomerService), the XML element in response should have different namespace.

When I use it now, it always returns the namespace from the base interface and so at WSE client side, I get null value (because XML does not match)

Please note that request and response types are MessageContracts.

I enabled tracing and compared the response from ASMX service against my WCF service. The only difference is in the namespace.

For trial, If I change the namespace of the base interface Operation Contract to one declared in derived interface, I get the response properly at client side. But I cannot change base interface as many other service contracts are derived from it and in every derived service contract the expected namespace differs. e.g. In IDealerDeataisProvider service contract, the GetBasicInfo operation contract will have namespace "DealerDeataisProvider\GetBasicInfo"

How to deal with such scenario?

link|improve this question

76% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.