Interstage Application Server/Interstage Web Server J2EE ユーザーズガイド
目次 索引 前ページ次ページ

第4部 Webサービス編> 第18章 Webサービスの開発> 18.6 Webサービス環境定義ファイル(deployment descriptor)

18.6.1 webservices.xmlの記述形式

■webservices.xmlの記述

 webservices.xmlは、Webサービスアプリケーションについてのdeployment descriptorです。

 アプリケーションのWebサービス関連の構成物のパスや、提供するWebサービスの実装を記述します。パスは、WARにパッケージングした時のモジュール内のパスを記述します。

 deployment descriptorは、XML形式で記述します。以下にdeployment descriptorの記述形式を示します。

------------------------------------------------------------------------------------
  <?xml version="1.0" encoding="UTF-8"?>
  <webservices xmlns="http://java.sun.com/xml/ns/j2ee"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
                                   http://java.sun.com/xml/ns/j2ee/j2ee_web_services_1_1.xsd"
               version="1.1">
    <webservice-description>
      <webservice-description-name>name</webservice-description-name>
      <wsdl-file>file-path</wsdl-file>
      <jaxrpc-mapping-file>file-path</jaxrpc-mapping-file>
      <port-component>
        <port-component-name>name</port-component-name>
        <wsdl-port>qname</wsdl-port>
        <service-endpoint-interface>interface</service-endpoint-interface>
        <service-impl-bean>
          <servlet-link>servlet-name</servlet-link>
        </service-impl-bean>
      </port-component>
    </webservice-description>
  </webservices>
------------------------------------------------------------------------------------

■記述にあたっての注意事項


目次 索引 前ページ次ページ

Copyright 2008 FUJITSU LIMITED