如何使用.net Web服务直接向服务器插入和检索数据

时间:2011-06-21 11:12:45

标签: java android xml

 <WebMethod()> _
    Public Function UpdateProductDetail(ByVal ProductName As String, ByVal Remarks As String) As Integer
        Dim sSQl As String
        Dim pobjDas As New DBAccess
        sSQl = "INSERT INTO ProductDetail (ProducDetailId, productName, Remark) VALUES (NEWID(), '" & ProductName & "', '" & Remarks & "')"
        Return pobjDas.ExecuteSQL(sSQl)
    End Function

这是我在VB.net中的网络服务。我怎么能从android调用它。

1 个答案:

答案 0 :(得分:0)

您应该提供与平台无关的方法来访问此方法。我不知道VB.NET如何处理它,但我使用RESTful WebServices,我有一个很好的历史记录在Android上访问它们。