Hi all,
I am writing an ASP.NET web app using C# 3.5. I have a requiremenent to expose the business as web services to be consumed by an external XML-RPC client, which was written by another company.
I thought about using WCF as this will enable by web pages to call the same services and therefore minimise the risk at testing. I thought I could just configure the endpoints to format the messages in soap, xml-rpc or any other envelope and it should work.
The problem I am having is with xml-rpc though. I can't get the client to accept the messages. I found this post by Clemens Vasters
which describes how to write a custom message processor. I included that in the <extensions> tag but it seems to pass all messages through this now, which doesn't help my soap requests.
If anyone had any luck configuring a WCF service with xml-rpc or has any other suggestion please let me know.
Many thanks
I am writing an ASP.NET web app using C# 3.5. I have a requiremenent to expose the business as web services to be consumed by an external XML-RPC client, which was written by another company.
I thought about using WCF as this will enable by web pages to call the same services and therefore minimise the risk at testing. I thought I could just configure the endpoints to format the messages in soap, xml-rpc or any other envelope and it should work.
The problem I am having is with xml-rpc though. I can't get the client to accept the messages. I found this post by Clemens Vasters
which describes how to write a custom message processor. I included that in the <extensions> tag but it seems to pass all messages through this now, which doesn't help my soap requests.
If anyone had any luck configuring a WCF service with xml-rpc or has any other suggestion please let me know.
Many thanks