Thomas Adrian
Thomas Adrian

Reputation: 3636

How to receive data using Domino webservice provider

I have an external application that should send and recieve data from a Domino web service provider. I managed to create a webservice proivider using lotusscript that send data back to the caller

I need to know how to receive data from the caller using the provider and add it to Domino? could not find any example on the internet, is it possible?

Upvotes: 0

Views: 1519

Answers (1)

Emmanuel Gleizer
Emmanuel Gleizer

Reputation: 2018

In the code of the provider (I call it wsOfDomino), you add a function, just put parameter(s) to this function.

Class wsOfDomino
  function getWSdata( userName as string) as string
    getWSdata = "Hello " + userName
  End Function
End Class

Domino will generate the WSDL, in which the external application will "see" that it can send to Domino the userName.

Change userName and name of the function according your needs.

Upvotes: 1

Related Questions