Which of the following answer is true and why?
Question: Which type of .Net application can be used to automate tasks and does not require a user to login?
a. Windows Form
b. Windows service
c. XML Web Service
d. Net remoting object
Please explain your answer. Thanks.
<snip/>
Hi. Welcome to the forums. Is this a homework question?
a) Is a desktop application, so would require a user to run it or schedule it to be run
b) Is a service that runs in the background of windows which can be set to start automatically on boot.
c) Is like a website, which responds to data passed to it
d).NET remoting provides an abstract approach to interprocess communication that separates the remotable object from a specific client or server application domain and from a specific mechanism of communication. As a result, it is flexible and easily customizable
I hope that gives you enough info to make a decision. You can google any of the topics to find out more info about each