Yes, sure, here is a shortened example: I have left omitted lots of the element 
definitions, as they are basically all the same:  


  | <?xml version="1.0" encoding="UTF-8"?>
  | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
  |            
targetNamespace="http://specification.ullorder.de.netpioneer.com/types"; 
  |            
xmlns:ullorder="http://specification.ullorder.de.netpioneer.com/types"; >
  |            
  |     <xs:element name="ullOrder">
  |         <xs:annotation>
  |             <xs:documentation>Schema for External Signup</xs:documentation>
  |         </xs:annotation>
  |         <xs:complexType>
  |             <xs:sequence>
  |                 <xs:element ref="ullorder:customerData" minOccurs="1" 
maxOccurs="1"/>
  |                 <xs:element ref="ullorder:payment" minOccurs="1" 
maxOccurs="1"/>
  |                 <xs:element ref="ullorder:ullInfo" minOccurs="1" 
maxOccurs="1"/>
  |                 <xs:element ref="ullorder:orders" minOccurs="1" />
  |                 <xs:element ref="ullorder:phoneBookEntry" minOccurs="0" 
maxOccurs="unbounded"/>
  |                 <xs:element ref="ullorder:voice" />
  |             </xs:sequence>
  |         </xs:complexType>
  |     </xs:element>
  |     
  |     <xs:element name="address">
  |         <xs:complexType>
  |             <xs:sequence>
  |                 <xs:element name="street" type="xs:string" minOccurs="1"/>
  |                 <xs:element name="streetNumber" type="xs:integer" 
minOccurs="1"/>
  |                 <xs:element name="floor" type="xs:string" minOccurs="1"/>
  |                 <xs:element name="roomnumber" type="xs:string" 
minOccurs="0"/>
  |                 <xs:element name="zip" type="xs:string"  minOccurs="1"/>
  |                 <xs:element name="city" type="xs:string"  minOccurs="1"/>
  |                 <xs:element name="country" type="xs:string" minOccurs="1"/>
  |                 <xs:element name="district" type="xs:string" minOccurs="0" 
/>
  |                 <xs:element name="state" type="xs:string" minOccurs="0" />  
              
  |             </xs:sequence>
  |         </xs:complexType>
  |     </xs:element>
  |        
  |     .... 
  |  
  | </xs:schema>
  | 


  | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
  | <definitions 
  |         targetNamespace="http://specification.ullorder.de.netpioneer.com"; 
  |         xmlns:tns="http://specification.ullorder.de.netpioneer.com";
  |         xmlns="http://schemas.xmlsoap.org/wsdl/";
  |         xmlns:http="http://schemas.xmlsoap.org/wsdl/http/";
  |         xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"; 
  |         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
  |         xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; 
  |         xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
  |         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  |         xmlns:orderTypes 
="http://specification.ullorder.de.netpioneer.com/types";
  |         >
  |     
  |     <types>
  |         <xs:schema elementFormDefault="qualified" 
targetNamespace="http://specification.ullorder.de.netpioneer.com/types";>
  |             <xs:import 
namespace="http://specification.ullorder.de.netpioneer.com/types";
  |                 
schemaLocation="http://localhost:8080/workflowsystem-web-0.1/types/ullOrder.xsd"/>
  |             
  |             
  |         </xs:schema>
  |     </types>
  |         
  |     
  |     <message name="OrderRequest">
  |         <part name="request" element="orderTypes:ullOrder" />
  |     </message>
  |     
  |     <message name="OrderResponse">
  |         <part name="response" type="xs:string" />
  |     </message>
  |     
  |     
  |     <portType name="SignupPort">
  |         <operation name="signup" >
  |             <input  message="tns:OrderRequest" />
  |             <output message="tns:OrderResponse" />
  |         </operation>
  |     </portType>
  |     
  |     <binding type="tns:SignupPort" name="SignupBinding">
  |         <soap:binding style="document"
  |                       transport="http://schemas.xmlsoap.org/soap/http"; />
  |         
  |         <operation name="signup">
  |             <soap:operation 
soapAction="http://specification.ullorder.de.netpioneer.com/operations/signup"; 
/>
  |             <input>
  |                 <soap:body use="literal" />
  |             </input>
  |             <output>
  |                 <soap:body use="literal" />
  |             </output>
  |         </operation>
  |     </binding>
  |     
  |     <service name="SignupServices">
  |         <port name="SignupPort" binding="tns:SignupBinding">
  |             <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
  |         </port>
  |     </service>
  |         
  | </definitions>
  | 

Does this help to see the error?!

cheers
stf

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910628#3910628

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910628


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to