You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by da...@apache.org on 2007/01/06 17:27:19 UTC

svn commit: r493501 - in /webservices/muse/trunk/samples/j2ee: apache-httpd/wsdl/HttpServer.wsdl simple/wsdl/SimpleResource.wsdl

Author: danj
Date: Sat Jan  6 08:27:18 2007
New Revision: 493501

URL: http://svn.apache.org/viewvc?view=rev&rev=493501
Log:
Fix for MUSE-162 - you can now run wsdl2java on these sample WSDLs and get the same code that we created by hand.

Modified:
    webservices/muse/trunk/samples/j2ee/apache-httpd/wsdl/HttpServer.wsdl
    webservices/muse/trunk/samples/j2ee/simple/wsdl/SimpleResource.wsdl

Modified: webservices/muse/trunk/samples/j2ee/apache-httpd/wsdl/HttpServer.wsdl
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/samples/j2ee/apache-httpd/wsdl/HttpServer.wsdl?view=diff&rev=493501&r1=493500&r2=493501
==============================================================================
--- webservices/muse/trunk/samples/j2ee/apache-httpd/wsdl/HttpServer.wsdl (original)
+++ webservices/muse/trunk/samples/j2ee/apache-httpd/wsdl/HttpServer.wsdl Sat Jan  6 08:27:18 2007
@@ -160,7 +160,7 @@
     	<wsdl:part name="StartRequest" element="tns:Start" />
     </wsdl:message>
     <wsdl:message name="StartResponse">
-    	<wsdl:part name="StartResponse" element="tns:StartResponse" />
+    	<wsdl:part type="xsd:anyType" />
     </wsdl:message>
     <wsdl:message name="StartFailedFault">
     	<wsdl:part name="StartFailedFault" element="tns:StartFailedFault" />
@@ -169,7 +169,7 @@
     	<wsdl:part name="StopRequest" element="tns:Stop" />
     </wsdl:message>
     <wsdl:message name="StopResponse">
-    	<wsdl:part name="StopResponse" element="tns:StopResponse" />
+    	<wsdl:part type="xsd:anyType" />
     </wsdl:message>
     <wsdl:message name="StopFailedFault">
     	<wsdl:part name="StopFailedFault" element="tns:StopFailedFault" />

Modified: webservices/muse/trunk/samples/j2ee/simple/wsdl/SimpleResource.wsdl
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/samples/j2ee/simple/wsdl/SimpleResource.wsdl?view=diff&rev=493501&r1=493500&r2=493501
==============================================================================
--- webservices/muse/trunk/samples/j2ee/simple/wsdl/SimpleResource.wsdl (original)
+++ webservices/muse/trunk/samples/j2ee/simple/wsdl/SimpleResource.wsdl Sat Jan  6 08:27:18 2007
@@ -25,7 +25,13 @@
 		<xsd:schema 
 			elementFormDefault="qualified"
 			targetNamespace="http://ws.apache.org/muse/test/simple/first">
-			<xsd:element name="FirstOperation" type="xsd:string" />
+			<xsd:element name="FirstOperation">
+				<xsd:complexType>
+					<xsd:sequence>
+						<xsd:element name="Param1" type="xsd:string"/>
+					</xsd:sequence>
+				</xsd:complexType>
+			</xsd:element>
 			<xsd:element name="FirstOperationResponse" type="xsd:string" />
 		</xsd:schema>
 		<xsd:schema 



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org