How to return default name = value when using C # web service

I am creating some basic web services using C # and I am trying to return the web service only normal name = value & name = value without any xml or json format. The legacy system hitting these services is quite old and does not support xml or json. Makes it possible?

+3
source share
1 answer

If the legacy service destined for this web service is out of date, how exactly do you call it from the web service? It may be easier to create an .aspx page (or even better, .ashx) that parses the request and makes the answer simply using Response.Write.

/ , , : =)

+1

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


All Articles