! should be used WSDL services only in this assignment (not RESTFull):
Task 1:
to develop a temperature convention Web service. The service contains two operations: [10 points]
int c2f(int c); // convert Celsius temperature to Fahrenheit temperature
int f2c(int f); // convert Fahrenheit temperature to Celsius temperature
Task 2
Develop a Web service to sort a string of numbers (you can use either int or float) separated by commas. It returns a string of numbers, sorted and separated by commas. You can choose any sorting algorithm or use a sorting library function in this question. The service contains one operation:
string sort(string s); // sort a string of numbers, separated by commas
Task 3
To develop a Web Application to consume the temperature service and number sorting service that you developed in Tasks 1 and 2. The service must be running on localhost in web browser when your application calls the service.
Task 4
To create a Web browser that can take a URL and display the content of the page in the text window that you created. You can also Google or Bing search “Making a Web Browser in Visual Studio” to find the online document on this topic.
Task 5
Add a simple calculator in your Web browser, with floating point +, -, *, and / operations. No service call is required in this question.
Task 6
Find a temperature Web service (e.g., https://www.meteomatics.com/en/weather-api), and add the temperature into your browser.
Complete solutions with all the files must be submitted, so that the solutions can be unzipped and tested. Put all solution folder(s) into a single umbrella folder. Zip the umbrella folder for submission.