Create an XML-RPC Web Service in C #

How to create an XML-RPC web service in C #?

+3
source share
3 answers

You can implement either a generic handler (.ashx) or a service compatible with ASP.NET 2.0 (.asmx). Then you need to parse and build the XML either using the .NET classes for XML, or just as you like.

Edit: I received information about WCF, as the question has changed, which makes it irrelevant.

+1
source

I have seen some people produce "web services" which are just simple .aspx pages that spit out Xml instead of html.

"" , , , http.

, SOAP, .

: XML-RPC.NET?

[It] - XML-RPC .NET.

+2

RPC, cliend XML .., .net 3.5 wcf POX-.

http://msdn.microsoft.com/en-us/library/aa395208.aspx

-1

Source: https://habr.com/ru/post/1767097/


All Articles