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 "Install and run the snapshot build"

(All-in-One package)
(All-in-One package)
Line 47: Line 47:
  
 
Please notice:
 
Please notice:
* We only support eclipse3.2 for now.  
+
* We only support eclipse3.2 for now.  
* Please set the java compiler to jdk 1.5 in preference page (1.4 and 1.6 are not supported)
+
* Please set the java compiler to jdk 1.5 in preference page (1.4 and 1.6 are not supported)
* Need to install [http://people.apache.org/repo/m2-snapshot-repository/org/apache/cxf/cxf-distribution/2.0-incubator-RC-SNAPSHOT/cxf-distribution-2.0-incubator-RC-20070227.144747-7.zip CXF] runtime to test the JAX-WS functions.
+
* Need to install [http://people.apache.org/repo/m2-snapshot-repository/org/apache/cxf/cxf-distribution/2.0-incubator-RC-SNAPSHOT/cxf-distribution-2.0-incubator-RC-20070227.144747-7.zip CXF] runtime to test the JAX-WS functions.
  
 
Three known issues:
 
Three known issues:
* Can't set the JAX-WS runtime directory and soapbinding from project's properties. But config from Preference page works fine.
+
* Can't set the JAX-WS runtime directory and soapbinding from project's properties. But config from Preference page works fine.
 
+
* The Document/Lit/Bare doesn't work. This is caused by a [https://bugs.eclipse.org/bugs/show_bug.cgi?id=176783 bug] in Apache CXF runtime.
* The Document/Lit/Bare doesn't work. This is caused by a [https://bugs.eclipse.org/bugs/show_bug.cgi?id=176783 bug] in Apache CXF runtime.
+
So If you are following Tyler's article, please give @SoapBinding(Document/Literal/Wrapped) annotation on web service class.
So If you are following Tyler's article, please give @SoapBinding(Document/Literal/Wrapped) annotation on web service class.
+
* The HTTP/REST style client has problem, will give HTTP 500 error in the runtime. But the standalone client run from Eclipse works fine.
* The HTTP/REST style client has problem.
+
Will give HTTP 500 error in the runtime we are using. But the standalone client run from Eclipse java launch configuration works fine.
+

Revision as of 00:31, 12 April 2007

This wiki page is used to explain how to install and use the latest snapshot build. Since the current 0.4.0 S-build (http://www.eclipse.org/stp/downloads/downloads.php) has some major problems, we suggest to use the snapshot build instead.

For user's convenience, i created a all-in-one package to download at the end of this wiki page.

Johnson Ma (Apr 09, 2007)

Where to get stp build

Setup pre-requisites

Pre-requisites plugins

Plugins from other Eclipse projects

3rd-party plugins

http://www.eclipse.org/stp/sc/plugins/tuscany-eclipse-plugin-1.0-incubator-M2.zip

Pre-requisites SOA runtime

Run it

Tyler Anderson wrote a good article about Use the Eclipse SOA Tools Platform plug-in to build and deploy a Web service

About the update sites

We are still working on those update sites:

  • Eclipse STP update site, coming soon...
  • Apache CXF update site, coming soon...
  • Apache Tuscany update site. ?

All-in-One package

You can download the STP all in one package from here:stp_all_in_one04092007.zip

just copy all plugins from that package, to your eclipse3.2 installation.

Please notice:

* We only support eclipse3.2 for now. 
* Please set the java compiler to jdk 1.5 in preference page (1.4 and 1.6 are not supported)
* Need to install CXF runtime to test the JAX-WS functions.

Three known issues:

* Can't set the JAX-WS runtime directory and soapbinding from project's properties. But config from Preference page  works fine.
* The Document/Lit/Bare doesn't work. This is caused by a bug in Apache CXF runtime.
So If you are following Tyler's article, please give @SoapBinding(Document/Literal/Wrapped) annotation on web service class.
* The HTTP/REST style client has problem, will give HTTP 500 error in the runtime. But the standalone client run from Eclipse works fine.

Back to the top