ok, wsi was a good tip: At least I am now getting some serious error messages 
to work with, like: 


  | [wscompile] warning: ignoring operation "signup": message part does not 
refer to a schema element declaration
  | [wscompile] warning: Port "tns:SignupPort" does not contain any usable 
operations
  | 

And the error seems to be between somewhere between the porttype and the 
binding-definition: 


  | <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="" />
  |             <input>
  |                 <soap:body use="literal" />
  |             </input>
  |             <output>
  |                 <soap:body use="literal" />
  |             </output>
  |         </operation>
  |     </binding>
  | 

The Messages (OrderRequest, OrderResponse) only contain simple references to 
elements defined in the external xsd: 


  | <message name="OrderRequest">
  |         <part name="request" element="orderTypes:myOrder" />
  | </message>
  |     

There has to be an obvious error in this, but I seem to be to blind to see 
it....

Many thx for the help!
stf


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

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


-------------------------------------------------------
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