Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PLEASE HELP WITH THIS QUESTION USING C# AND PREFERABLY VISUAL STUDIO. THANKS! 1. Develop a SOAP Web service that takes a string (without spaces) as
PLEASE HELP WITH THIS QUESTION USING C# AND PREFERABLY VISUAL STUDIO. THANKS!
1. Develop a SOAP Web service that takes a string (without spaces) as a parameter and performs following analysis of the string. The service contains three operations: [20 points] string reverse(string str); // return the original string in the reverse order. stringStatistics analyzeStr(string str) // return stringStatistics object. This method should return stringStatistics object that consists of Uppercase count, Lower case count, Digit count, and Vowel count as data items. You are requited to define stringStatistics object in your web service interface as a data contract similar to the example discussed in the class. 2. Develop a Windows Forms Application to consume (access) the string analyzer web service developed above. Your windows form should call above three web service methods and then display the vowel count, uppercase count, and the reverse string in the form. [10 points] 3. Develop a Web Site Application to consume the password and login id generation service developed above (Same functionality as 2 above, but this time the client is a Web Site Application. [10 points] aStep 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