Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Corona HowTo Web Service Extension Point

Revision as of 07:50, 9 April 2007 by Dennis.oflynn.compuware.com (Talk | contribs) (obsolete page)

No longer supported starting with Corona 1.0.0M9.

--Dennis O'Flynn


Eclipse Home Wiki Home Development How To...

Corona's server-side environment provides an Eclipse plug-in extension point to define a set of web service endpoints. All extensions of this extension point will be deployed to the Apache Axis2 SOAPProvider when the Corona server environment is started.

The extension point is org.eclipse.corona.webservice and is provide by the plugin org.eclipse.corona. The extension point defines the following attributes:

AttributeDescription
name The symbolic name of the set web service endpoints
interface_class The name of the Java interface class that defines the set of web service endpoints
implementation_class The name of the Java implementation class that provides the set of web service endpoints
web_context The web application context used to identify where the web services should be deployed.

Steps

  1. Create a plug-in dependency on org.eclipse.corona
  2. Create an extension of the org.eclipse.corona.webservice extension point
  3. Deploy the plug-in containing the web service extension to the Corona server

Back to the top