Troubling Operation not supported ...WCF Test Client ...{Receive OperationName}Response

StackOverflow https://stackoverflow.com/questions/14012518

  •  12-12-2021
  •  | 
  •  

Question

Good Morning,

I'm trying to beat an end of year deadline and running into the error in the screenshot. I've been through my WF service several times to no avail. One thing that I think has meaning but I 'm not able to make the connection is how Response is added to the end of the Receive OperationName.

enter image description here

As mentioned above note how the error has Response added right to the end of the OperationName. It seems significant but I can't figure out why.

enter image description here

Also note the Content message of the Receive and SendReplyToReceive has a message type of null. (I'm going with the fact that it is inferred).

Code for the RequestDataContract

[DataContract]
public class LiftDataExchangeRequest
{


    //pretty simple we only have one thing we want from the client in request
    [DataMember]
    public String UserName{ get; set; }
    [DataMember]
    public String Password{ get; set; }
    [DataMember]
    public ExchangeEnumerations Action { get; set; }

}

Code for the Response:

public class LiftDataExchangeResponse
{
    public XmlDocument WorkoutData { get; set; }
}

I'll gladly post anything else needed to help track this down and I would be very grateful to any additional information or reading.

No correct solution

OTHER TIPS

The error you're seeing is a limitation of the visual tool you're using (WCF Test Client), it is not designed to handle all possible services - there are some types that will prevent it from working. However, there's nothing wrong with your actual service.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top