Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PLEASE HELP WITH THIS QUESTION! THANKS! Objective of this question is to get familiar with visual studio, C# coding, and developing simple SOAP web services
PLEASE HELP WITH THIS QUESTION! THANKS!
Objective of this question is to get familiar with visual studio, C# coding, and developing simple SOAP web services and a web service client Develop the following SOAP web service and a client application. Your web service should include following two methods. a) First method should take an int value as a parameter return the sum of digits of that number. For example, if the input is 2345 then the return value should be 14 b) Second method should take a string as parameter and return how many vowels in the string. For example, if the input is hello world your method should return 3 Your client application should have the following menu. Welcome To Web Service Demo Select the method you need to invoke 1. Sum of digits 2. Vowel count 3. Exit Enter your option: .... If you enter 1, then ask the user to enter an int number and then display sum of digits by invoking the web service method. If you enter 2, then asks the user to enter a string and return number of vowels in the string by invoking the web service. Submission Submit a complete visual studio project containing your web services and the client. Make a zip file containing the solution and submit online
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started