Return-Path: Delivered-To: apmail-ws-wsrf-commits-archive@www.apache.org Received: (qmail 14467 invoked from network); 5 Aug 2005 13:43:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Aug 2005 13:43:34 -0000 Received: (qmail 16007 invoked by uid 500); 5 Aug 2005 13:43:10 -0000 Delivered-To: apmail-ws-wsrf-commits-archive@ws.apache.org Received: (qmail 15920 invoked by uid 500); 5 Aug 2005 13:43:10 -0000 Mailing-List: contact wsrf-commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: wsrf-dev@ws.apache.org Delivered-To: mailing list wsrf-commits@ws.apache.org Received: (qmail 15825 invoked by uid 500); 5 Aug 2005 13:43:09 -0000 Delivered-To: apmail-ws-wsrf-cvs@ws.apache.org Received: (qmail 15784 invoked by uid 99); 5 Aug 2005 13:43:09 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 Aug 2005 06:42:44 -0700 Received: (qmail 13696 invoked by uid 65534); 5 Aug 2005 13:42:42 -0000 Message-ID: <20050805134242.13693.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r230465 [6/6] - in /webservices/wsrf/site: ./ dev_guide/ images/ skin/ skin/css/ skin/images/ skin/scripts/ tutorial/ tutorial/images/ Date: Fri, 05 Aug 2005 13:42:29 -0000 To: wsrf-cvs@ws.apache.org From: scamp@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: webservices/wsrf/site/tutorial/wsdl2java.html URL: http://svn.apache.org/viewcvs/webservices/wsrf/site/tutorial/wsdl2java.html?rev=230465&view=auto ============================================================================== --- webservices/wsrf/site/tutorial/wsdl2java.html (added) +++ webservices/wsrf/site/tutorial/wsdl2java.html Fri Aug 5 06:42:08 2005 @@ -0,0 +1,288 @@ + + + + + + + +Run the Wsdl2Java Tool + + + + + + + + + +
+ + + +
+ + + + +
+WSRF +
+ + + + +
+
+
+
+ +
+ + +
+ +
+ +   +
+ + + + + +
+ +

Run the Wsdl2Java Tool

+ + + +

Introduction

+
+

In this step of the tutorial, the Apache WSRF Wsdl2Java tool is used to generate a set of artifacts for the filesystem example. The tool takes a WSDL + as its input and outputs the following artifacts: +

+
    + +
  • + +XMLBeans for all XML Schema types and elements defined in the types section of the WSDL
  • + +
  • an abstract base Resource class
  • + +
  • an abstract base Service class
  • + +
  • an abstract base Home class
  • + +
  • a Resource class
  • + +
  • a Service class
  • + +
  • a Home class
  • + +
  • a CustomOperationsPortType interface
  • + +
  • a PropertyQNames interface
  • + +
  • an Axis deploy.wsdd file
  • + +
  • a jndi-config.xml file
  • + +
+
+
Note
+
The abstract classes and interfaces should NEVER be modified.
+
+
+ + +

Generating the Artifacts

+
+

The Ant script (WORK_DIR/build.xml) contains a target for the Wsdl2Java tool. To generate the artifacts for the + filesystem example:

+
    + +
  1. From a command prompt, change directories to WORK_DIR.
  2. + +
  3. Enter the following command: ant generate + +
  4. + +
+

The artifacts are generated and placed in WORK_DIR/generated. For more information about the + WSDL2Java tool and the generated artifacts, see Using the WSDL2Java Tool in the Developer's Guide.

+

+ +go to the previous step + Back + go to the next step + Next + +

+
+ +
+ +
 
+
+ + + Added: webservices/wsrf/site/version_control.html URL: http://svn.apache.org/viewcvs/webservices/wsrf/site/version_control.html?rev=230465&view=auto ============================================================================== --- webservices/wsrf/site/version_control.html (added) +++ webservices/wsrf/site/version_control.html Fri Aug 5 06:42:08 2005 @@ -0,0 +1,257 @@ + + + + + + + +WSRF Version Control System + + + + + + + + + +
+ + + +
+ + + + +
+WSRF +
+ + + + +
+
+
+
+ +
+ + +
+ +
+ +   +
+ + + + + +
+ +

WSRF Version Control System

+ + + + +

Overview

+
+

+ The WSRF source code resides in the Apache Subversion (SVN) repository. + The command-line SVN client can be obtained here. + The TortoiseSVN GUI client for Windows can be obtained here. There + are also SVN plugins available for both Eclipse and + IntelliJ IDEA. +

+
+ + + +

Web Access (read-only)

+
+

+ The source code can be browsed via the Web at + http://svn.apache.org/viewcvs.cgi/webservices/wsrf/. + No SVN client software is required. +

+
+ + + +

Anonymous Access (read-only)

+
+

+ The SVN URL for anonymous users is + http://svn.apache.org/repos/asf/webservices/wsrf/. + Instructions for anonymous SVN access are + here. +

+
+ + + +

Committer Access (read-write)

+
+

+ The SVN URL for committers is + https://svn.apache.org/repos/asf/webservices/wsrf/. + Instructions for committer SVN access are + here. +

+
+ + + +

Access Via a Proxy

+
+

+ SVN clients can go through a proxy, if you configure them to do so. The + Subversion FAQ + describes how to configure the command-line client to use a proxy. To + configure TortoiseSVN to use a proxy, go to "TortoiseSVN Settings > Network". +

+
+ + +
+ +
 
+
+ + + Added: webservices/wsrf/site/wsrf.html URL: http://svn.apache.org/viewcvs/webservices/wsrf/site/wsrf.html?rev=230465&view=auto ============================================================================== --- webservices/wsrf/site/wsrf.html (added) +++ webservices/wsrf/site/wsrf.html Fri Aug 5 06:42:08 2005 @@ -0,0 +1,289 @@ + + + + + + + +Web Services Resource Framework + + + + + + + + + +
+ + + +
+ + + + +
+WSRF +
+ + + + +
+
+
+
+ +
+ + +
+ +
+ +   +
+ + + + + +
+ +

Web Services Resource Framework

+ + + + +

Overview

+
+

+ Web Services Resource Framework (WSRF) is a suite of specifications published by the + OASIS + WSRF TC. + It is comprised of the following specifications: +

+ +

WS-Resource

+
    + +
  • v1.2 draft 2 (Dec 2004): [spec]
  • + +
+ +

WS-ResourceProperties (WSRF-RP)

+ + +

WS-ResourceLifetime (WSRF-RL)

+ + +

WS-ServiceGroup (WSRF-SG)

+ + +

WS-BaseFaults (WSRF-BF)

+ +
+ + + +

Links

+
+ +
+ + +
+ +
 
+
+ + +