Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with the response method of the Soap server. It is a .net WCF webservice

The following code:

[ServiceContract()]
public interface IService1
{
    [OperationContract()]
    List<DealerLead> GetDealerLeads(List<DealerLeadsRequest> accountnummerString);
}

Will return this:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <GetDealerLeadsResponse xmlns="http://tempuri.org/">
         <GetDealerLeadsResult xmlns:a="http://schemas.datacontract.org/2004/07/SoapTest"     xmlns:i="http://www.w3.org/2001/XMLSchema-instance">

But how can i change it to this:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
  <GetDealerLeadsResponse xmlns="http://tempuri.org/">
     <AOtherMethodName xmlns:a="http://schemas.datacontract.org/2004/07/SoapTest" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">

So only the method result name must be changed, is this possible with WCF?

Thanks in advance

share|improve this question

1 Answer

up vote 0 down vote accepted

If you want to control the name of the SOAP operation, you can use

[OperationContract(Name = "AOtherMethodName")]

If you really want to control the format of the message on the wire, you'll need to define a message contract

share|improve this answer
Ok, with the Name param i can change the responce attribute but it it changed the method call too and it is not AOtherMethodName but AOtherMethodNameResult is it possible without the Result text in the attribute? – Marco Aug 3 '11 at 8:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.