Building Web Service Provider Wrappers?

I have started to look (again!) at creating some basic web services to publish some standard Lotus Script functionality to other applications. Although I have done some work in consuming services I am looking for a basic guide on how to being to build a service provider wrapper for some LotusScript libraries. Can anyone point me in the direction of some fairly basic introductions to building providers for Domino? Thanks.

Subject: It is fairly simple.

  1. You create your Web Service provider library.

  2. Create your class that is the library. Eg.

class WS

function Hello (txt as String) as String

Hello = "Hello " + txt

end function

end class

  1. In the web service provider properties you set the PortType to the name of your class.

  2. In the third tab of the Web Service properties set your programming model. I normally use “RPC/encoded”.

  3. Save the library.

Consumers access the WSDL via.

http://server/database.nsf/provider?WSDL

(Provider = the name of your provider library, not the class). Or you can export the WSDL.

Subject: Can’t find web service provider properties

Hi

Thanks for the info, however I don’t seem to be able to find the “web service provider properties”

with the Basic and Advanced tabs you speak of …

Is there something I’m missing here?

Regards

Subject: Can’t find web service provider properties

web service provider properties