Hi ,
I am working on a silverlight based application based using Silverlight protocol on LR12.5 and recorded the script succesfully. I can see the silverlight calls in the script like below,
Silverlight calls (request)
================================================
silverlight_service_call("StepName=GetAreas",
"SOAPMethod=FundoxService|BasicHttpBinding_IFundoxService|GetAreas",
"Service=FundoxService",
"Snapshot=t33.inf",
"ResponseParam=response",
BEGIN_ARGUMENTS,
END_ARGUMENTS,
BEGIN_RESULT,
END_RESULT,
LAST);
========================
During replay of the script, i am getting the above request to be failed and getting the below response (fault string):
response:
============
<s:Envelope xmlns:s = "http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
<faultcode xmlns:a = "http://schemas.microsoft.com/ws/2005/05/addressing/none">a:ActionNotSupported</faultcode>
<faultstring xml:lang = "en-US" >The message with Action '' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</faultstring>
</s:Fault>
</s:Body>
</s:Envelope>
============================
As you can see, there is nothing in request on which i need to work on (e.g, correlations etc.) Any one has idea why this error has come and what could be the reasons?
Thanks,
Ajit