what is the requirement that .Net web services can access the
java application?

Answer Posted / ianmpudi anil kumar

the main point is that the i/p and o/p of the web services
is XML. therfor we can aacess from any application. that
support XML.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

By default, Web API sends HTTP response with which of the following status code for all uncaught exception?

1273


I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)

1712


How many types of session in ASP.NET

800


What is ashx file in asp.net?

737


What is the difference between asp.net and mvc?

800


What is the file extension of web service?

735


Which is the best institute to learn Microsoft Technologies and the faculty if you Know?

1817


Explain what is clr?

808


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

1928


Are cookies stored on server or client?

720


What is the difference between custom controls and user controls?

684


Why the javascript validation not run on the asp.net button but run successfully on the html button?

729


What are Authentication and Authorization?

827


How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?

1772


If you are using two select queries and retrieving data. how do you access second query's result set using data reader?

5143