Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am looking for the solution for this, Assignment 1 Questions: Advanced Service Development (Submission Required) In this part of the project, you will implement

I am looking for the solution for this, Assignment 1 Questions: Advanced Service Development (Submission Required) In this part of the project, you will implement the number guessing services and number guessing games using different techniques. You are given the class definition below as the basic functions required in the number guessing services. public class NumberGuess { public int SecretNumber(int lower, int upper) { DateTime currentDate = DateTime.Now; int seed = (int)currentDate.Ticks; Random random = new Random(seed); int sNumber = random.Next(lower, upper); return sNumber; } public string checkNumber(int userNum, int SecretNum) { if (userNum == SecretNum) return "correct"; else if (userNum > SecretNum) return "too big"; else return "too small"; } } 1. Based on the above given class, write a WCF .svc SOAP service with two operations on localhost of .Net IIS Express server. You may want to review Text Section 3.2 before completing this assignment. [10 points] 2. Create an ASP .Net Windows Forms Application to consume the .svc service in question 1. Choose Windows Forms App (.Net Framework). Do not choose Windows Forms App (.Net Core).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fraud examination

Authors: Steve Albrecht, Chad Albrecht, Conan Albrecht, Mark zimbelma

4th edition

538470844, 978-0538470841

More Books

Students also viewed these Algorithms questions

Question

What are the parameters in a simple linear regression model?

Answered: 1 week ago