Hope someone can help, I have created a Web Service that is being used by a third party, they are having trouble getting it to work.
Is there a way to log the requests/responses to my web service.
I have not tried this before, so hope someone can point me in the right direction.
For general SOAP testing I’ve been using SoapUI and Fiddler2 - excellent tools and plenty of tutorials on the web. On the RO client and server you can use the TROSOAPMessage ReadFromStream/WriteToStream events to dump the xml into a memo, e.g.
procedure TClientForm.ROMessageWriteToStream(aStream: TStream);
begin
Memo1.Lines.LoadFromStream(aStream);
Memo1.Lines.Text := xmlDoc.FormatXMLData(Memo1.Lines.Text);
end;