Jump to content

Endpoint interface

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MarshBot (talk | contribs) at 13:35, 16 August 2006 (Adding {{linkless}} template to orphan article). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Template:Linkless-date

A term used in JEE development when exposing EJB as web service. A web service client accesses a stateless session bean through the bean's web service endpoint interface. Like a remote interface, a web service endpoint interface defines the business methods of the bean. In contrast to a remote interface, a web service endpoint interface is not accompanied by a home interface, which defines the bean's life-cycle methods. The only methods of the bean that may be invoked by a web service client are the business methods that are defined in the web service endpoint interface.