Imports System.Web
Imports System.Web.Services
Imports
System.Web.Services.Protocols
<WebService(Namespace:="http://tempuri.org/")>
_
<WebServiceBinding(Conformsto:=WsiProfiles.BasicProfile1_1,
EmitConformanceClaims:=True)> _
Public Class
TestService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function
HelloWorld() As String
Return "Hello World"
End Function
End Class