I' using B4A for 1 week, and everything is very new to me. I am very happy with this app.
I tried to find something in the forum, but I can not find an example of how to consume a basic webservice.
It seems that I have to pass a XML string first, I am very confused.
webservice: WebService Web Service
Method: HelloWorld
Parameter: d (string)
Webservice code (very simple):
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class WebService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function HelloWorld (d As String) As String
Return "Parameter value: " & d
end Function
end Class
That's all . Any help?
I tried to find something in the forum, but I can not find an example of how to consume a basic webservice.
It seems that I have to pass a XML string first, I am very confused.
webservice: WebService Web Service
Method: HelloWorld
Parameter: d (string)
Webservice code (very simple):
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class WebService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function HelloWorld (d As String) As String
Return "Parameter value: " & d
end Function
end Class
That's all . Any help?