Hi there, I have my WCF service defined as follows [ServiceContract] public interface IService1 { [OperationContract] IList GetMyTable();
[OperationContract]
void SendMyTable(List<RatePositions> ratePositions);
[OperationContract]
void SendString(string value);
}
When I call GetMyTable() from my SilverLight app it works fine, it brings a List of ratePositions into my app. SendString() also works fine which sends a string from my app.
SendMyTable(List ratePositions) does not work which should sent a List of ratePositions from my app.
The error I get is: The remote server returned an unexpected response: (404) Not Found
Any ideas why this method does not work but the others do?