Good morning,
I'm having trouble getting a response using webservice. It seems that the request is fine because on the server side they receive messages.
ServiceReference1.ServiceClient servClient = new ServiceReference1.ServiceClient();
ServiceReference1.TLampInfo tLampInfo = new ServiceReference1.TLampInfo();
ServiceReference1.TRespons directResponse = new ServiceReference1.TRespons();
tLampInfo.Txt = "Test1234";
directResponse = servClient.SendLamp(tLampInfo); <---- error
I get a message then I try to download the response: "Error in deserializing body of reply message for operation 'SendLamp'". What else should I do? How should I use deserialization in this case?