Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Tutorial/3.7/Webservices with JAX-WS"

< Scout‎ | Tutorial‎ | 3.7
(Abstract)
(Abstract)
Line 3: Line 3:
  
 
The scope of this tutorial is to create a simple Scout application with a webservice consumer and a webservice provider installed. The application will load company data from a [http://db.apache.org/derby/ Derby] database and allow the user to request a company's stock price with a 20 minute delay from the public [http://services.nexus6studio.com/StockQuoteService.asmx StockQuoteService]. Also, a webservice will be published to access the application's company data from within another application.
 
The scope of this tutorial is to create a simple Scout application with a webservice consumer and a webservice provider installed. The application will load company data from a [http://db.apache.org/derby/ Derby] database and allow the user to request a company's stock price with a 20 minute delay from the public [http://services.nexus6studio.com/StockQuoteService.asmx StockQuoteService]. Also, a webservice will be published to access the application's company data from within another application.
 +
 +
== Requirement ==
 +
In order to run this tutorial, you require to have the latest Eclipse Scout Plug-Ins. That is because Scout JAX-WS integration is not part of the Eclipse Indigo release but of Eclipse Scout Juno planned for 2012. For more information on the Eclipse release train, see [http://wiki.eclipse.org/Simultaneous_Release Simultaneous_Release].
 +
 +
The lastest Eclipse Scout version can obtained by:
 +
 +
* SVN: https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/
 +
* Update Site: http://download.eclipse.org/scout/nightly/update/

Revision as of 09:13, 8 November 2011

Abstract

This tutorial is a guide to developing JAX-WS webservices in Eclipse Scout. JAX-WS stands for Java API for XML Web Services. The JAX-WS version supported by Eclipse Scout is JAX-WS RI 2.1.6 bundled with Java SE 6. We are not using the lastest version (such as JAX-WS RI 2.2.5 because we encountered a lot of problems in having a never version aside the Java built-in internal JAX-WS RI 2.1.6 implementation.

The scope of this tutorial is to create a simple Scout application with a webservice consumer and a webservice provider installed. The application will load company data from a Derby database and allow the user to request a company's stock price with a 20 minute delay from the public StockQuoteService. Also, a webservice will be published to access the application's company data from within another application.

Requirement

In order to run this tutorial, you require to have the latest Eclipse Scout Plug-Ins. That is because Scout JAX-WS integration is not part of the Eclipse Indigo release but of Eclipse Scout Juno planned for 2012. For more information on the Eclipse release train, see Simultaneous_Release.

The lastest Eclipse Scout version can obtained by:

Back to the top