Web Development
webserv.txt
Associated article: Simplifying Web Service Integration
Tags: Web Development .NET Design
Published source code accompanying the article by Neal Culiner, in which he describes how he used third-party tools when adopting a SOA for his pilot logbook software. 1
Simplifying Web Service Integration
by Neal Culiner
Listing One
<WebMethod(), SoapRpcMethod()> _
Public Function HelloWorld(ByVal p As String) As String
If p.ToLower = "test" Then
Return "Hello World"
Else
Return "Invalid Parameter"
...


