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

Difference between revisions of "STP Service Creation getting started"

(Plugins required from other Eclipse projects)
Line 36: Line 36:
 
*Apache Tomcat (Install only if you want to deploy the generated service to [http://tomcat.apache.org/download-55.cgi Tomcat Container])
 
*Apache Tomcat (Install only if you want to deploy the generated service to [http://tomcat.apache.org/download-55.cgi Tomcat Container])
  
== Update eclipse.ini ==
+
=== Update eclipse.ini ===
 
Before start Eclipse, please update the eclipse.ini file under your Eclipse installation directory by adding the following line:
 
Before start Eclipse, please update the eclipse.ini file under your Eclipse installation directory by adding the following line:
 
  -Dorg.osgi.framework.bootdelegation=*
 
  -Dorg.osgi.framework.bootdelegation=*
  
 
For reason why need to add the bootdelegation flag, please reference [http://wiki.eclipse.org/Eclisep_3.3_runtime_options_for_STP.SC#bootdelegation_configuration here]
 
For reason why need to add the bootdelegation flag, please reference [http://wiki.eclipse.org/Eclisep_3.3_runtime_options_for_STP.SC#bootdelegation_configuration here]
 +
 +
=== setup Tomcat shared lib ===
 +
In order to deploy JAX-WS service to Tomcat container, please copy all jars under ${apache_cxf_install}/libs and ${apache_cxf_install}/modules into ${tomcat_install}/shared/lib
  
 
== Run it ==  
 
== Run it ==  

Revision as of 22:20, 28 June 2007

This wiki page is used to explain how to install and use the STP Service Creation for Eclipse Europa release.

(Last updated on Apr 28, 2007)

Where to get stp

Install from Eclipse Europa

Since stp is part of Eclipse Europa release, it can be installed from Europa Discovery Site as following:

Help->Software Updates->Find and Install...
->Search for new features to install->Europa Discovery Site->SOA Development

Download from stp website

The latest stp build can be downloaded from here

Setup pre-requisites

Plugins required from other Eclipse projects

*emf-sdo-xsd-SDK-2.3.0
*GEF-ALL-3.3 
*JEM-SDK-1.2.3_jem
*wtp-sdk-S-2.0
*dtp-sdk_1.5 
*GMF-sdk-2.0
*mdt-ocl-SDK-1.1
*emf-validation-SDK-1.1
*emf-query-SDK-1.1
*emf-transaction-SDK-1.1
*orbit-S200705021947

3rd-party plugins


Pre-requisites SOA runtime

Update eclipse.ini

Before start Eclipse, please update the eclipse.ini file under your Eclipse installation directory by adding the following line:

-Dorg.osgi.framework.bootdelegation=*

For reason why need to add the bootdelegation flag, please reference here

setup Tomcat shared lib

In order to deploy JAX-WS service to Tomcat container, please copy all jars under ${apache_cxf_install}/libs and ${apache_cxf_install}/modules into ${tomcat_install}/shared/lib

Run it

Demo movie

Flash movie shows how to create and deploy a JAX-WS web service


Introduction on developerworks website

Tyler Anderson wrote a good article about Use the Eclipse SOA Tools Platform plug-in to build and deploy a Web service However, since that introduction was written several months ago, here are some updates: ??? Coming Soon ???

Back to the top