Model Syntax for Webservice

Webservice definition

This model creates a web service which provides endpoints for integration with other systems

Syntax:

Name Component Methods

Example:

webservice MovieIntegration;
component  MOVIE;

methods {
   plsql GetMovieTitle {
      in     Number MovieId;
      return Text;
      call   Movie_API.Get_Title;
      documentation "This method will return the title of a movie given it's id";
   }
}

This page is generated from IFS Developer Studio at 2021-08-13 08:48.