Answer Posted / suresh.gv
Soap is a formatting protocal.
When we send data to the webservice the data will be passed
in network wire.
That data has to formatted by SOAP. and sends to the
service.
then the service will give response to that request . This
data is also formatted by Soap and give it to the client.
SOAP--> HTTP + XML
The format is XML because it is platform dependent . this
service is used by other applications .
| Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
What are server activated objects?
Explain the difference between asp & asp.net.
IN an ASP.NET Web application if there is any error, how can you debug?
What symbol specifies the beginning of a query string?
How can we create Tree control in asp.net?
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 = "
What is enableviewstate in asp net?
Explain the components of web form in asp.net
What are validator? How do you disable them?
What is query string?
How is a session stored and maintained in asp.net?
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
What are ASP.NET Web Forms? How is this technology different than what is available though ASP?
What is the syntax for datagrid and specifying columns?
Why cyclomatic complexity is important?