Showing posts with label WCF. Show all posts
Showing posts with label WCF. Show all posts

Thursday, August 27, 2015

INTERVIEW :: DEVELOPMENT :: OFFSHORING :: WCF [2]


INTERVIEW
  DEVELOPMENT
    OFFSHORING
      WCF

You did ask a developer of your team, who is working from a different country, to develop a WCF service. What are the most important factors that he/she should consider?



INTERVIEW :: DEVELOPMENT :: OFFSHORING :: WCF



INTERVIEW
  DEVELOPMENT
    OFFSHORING
      WCF
In order to ask a developer of your team, who is working from a different country, to develop a WCF service, what would you provide for him/her to understand what exactly he/she should develop?



Sunday, February 8, 2009

WCF & ASP.NET 3.5 Web Services [Part One]

WCF & ASP.NET 3.5 Web Services [Part One]

Question 1: How are ASP.NET web services set to work with ASP.NET AJAX scripts?

The attribute [System.Web.Script.Services.ScriptService] is set for the class of each web service. This attribute indicates that a web service may be invoked from script.

Example:

[WebService(Namespace = "http://www.aspcert.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)][System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld( )
{
return "Hello World";
}
}



Original questions authored by G. R. Roosta