[jboss-cvs] JBossAS SVN: r65218 - trunk/server/src/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 6 19:10:14 EDT 2007


Author: rrajesh
Date: 2007-09-06 19:10:14 -0400 (Thu, 06 Sep 2007)
New Revision: 65218

Modified:
   trunk/server/src/resources/dtd/jboss-web_5_0.dtd
Log:
Synced jboss-web_5_0.dtd with jboss-web_4_2.dtd. Added webservice-description element

Modified: trunk/server/src/resources/dtd/jboss-web_5_0.dtd
===================================================================
--- trunk/server/src/resources/dtd/jboss-web_5_0.dtd	2007-09-06 22:54:46 UTC (rev 65217)
+++ trunk/server/src/resources/dtd/jboss-web_5_0.dtd	2007-09-06 23:10:14 UTC (rev 65218)
@@ -24,7 +24,7 @@
    virtual-host*, use-session-cookies?, replication-config?, resource-env-ref*,
    resource-ref*, security-role*, ejb-ref*, ejb-local-ref*, 
    message-destination-ref*, message-destination*, 
-   service-ref*, depends*, servlet*, max-active-sessions?, passivation-config?)>
+   webservice-description*, service-ref*, depends*, servlet*, max-active-sessions?, passivation-config?)>
 
 <!-- The class-loading element allows one to override the default class
 loading behavior of the web container. You can specify the
@@ -408,6 +408,40 @@
 -->
 <!ELEMENT replication-field-batch-mode (true|false)>
 
+<!--
+Runtime information about a web service.
+
+wsdl-publish-location is optionally used to specify
+where the final wsdl and any dependent files should be stored.  This location
+resides on the file system from which deployment is initiated.
+
+-->
+<!ELEMENT webservice-description ( webservice-description-name, config-name?, config-file?, wsdl-publish-location? )>
+
+<!--
+Unique name of a webservice within a module
+-->
+<!ELEMENT webservice-description-name ( #PCDATA )>
+
+<!--
+file: URL of a directory to which a web-service-description's wsdl should be
+published during deployment.  Any required files will be published to this
+directory, preserving their location relative to the module-specific
+wsdl directory(META-INF/wsdl or WEB-INF/wsdl).
+
+Example :
+
+  For an ejb.jar whose webservices.xml wsdl-file element contains
+    META-INF/wsdl/a/Foo.wsdl
+
+  <wsdl-publish-location>file:/home/user1/publish
+  </wsdl-publish-location>
+
+  The final wsdl will be stored in /home/user1/publish/a/Foo.wsdl
+
+-->
+<!ELEMENT wsdl-publish-location ( #PCDATA )>
+
 <!-- The servlet element specifies servlet specific bindings. Currently this
 is only the run-as principal identity.
 




More information about the jboss-cvs-commits mailing list