What is three major points in WCF?

Answer Posted / vairajeff

---Addressing
---Binding
---Contract

Is This Answer Correct ?    39 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain different types of Caching techniques in ASP.NET?

554


Why do we need asp.net?

598


What is the Difference between MVC And MVP design pattrens

2209


Why session management is required?

547


What are the two types of web pages?

522






What is request and response in asp.net?

515


How can you pass multiple complex types in Web API?

578


What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc

546


Explain login controls.

622


Explain cashing in asp.net.

530


Define session in asp.net.

561


Hi this is the coding for adding data in to an xml table i want the coding for update and delete Try Dim emp_xml_doc As New XmlDocument If System.IO.File.Exists(Server.MapPath("emp.xml")) Then emp_xml_doc.Load(Server.MapPath("emp.xml")) Dim myrow_element As XmlElement myrow_element = emp_xml_doc.CreateElement("EmpDetails") Dim str As String str = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1736


Write some code using interfaces, virtual methods, and an abstract class`

1587


explain code with multi inhertance

1652


what is command line compiler.what are the steps and how it is related to debugging.

1417