I have been given an ASP.NET project to handle. It has been released and has worked fine.
I am not an ASP.NET developer but doing what I can. The issue:
The project is a webservice among other things. The solution (VS 2019) has 6 projects. One is the webservice.
The original developer created a class that has properties that have the same names as fields in a table in our sql server database. One user paid a company to create an app that through the web service pulls the data. This worked no problem. The fly in the ointment is that we changed the field names in the table as part of upgrades. This broke their custom app. They don't want to pay the developer to modify the app. I don't want to be bound by the customers external customizations. No, I can't say tough and force them.
The original developer used XmlOnlyMediaFormatter to return xml data for the webservice.
So, I was wondering if there was a way I can customize the xml tags returned from a webservice query with rewriting everything and changing the logic.
thanks for any guidance.