Got it!

I found this funny little note: 
http://archives.java.sun.com/cgi-bin/wa?A2=ind0308&L=jaxrpc-interest&F=&S=&P=2115

and then found, that *not* this is the root of all evil: 

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

but this: 
    
  | <message name="OrderResponse">
  |       <part name="response" type="xs:string" />
  | </message>
  | 

The note says: anonymous wrote : "For a document/literal operation, the part 
should refer a schema element using the 'element' attribute."

therefore, the request was right all the time, but the reponse was formulated 
wrongly for a document/literal. Changing the reponse to something like: 


  | <message name="OrderResponse">
  |        <part name="response" element="orderTypes:SignupResponse" />
  | </message>
  | 

fixes this. Now the Port-Classes and _Impl are generated with the correct 
Signature for an anbounded, document/literal service: 


  | public javax.xml.soap.SOAPElement signup(javax.xml.soap.SOAPElement 
request) throws 
  |          java.rmi.RemoteException {
  |         
  |         javax.xml.soap.SOAPElement _retVal = null;
  |         return _retVal;
  |     }
  | 

and I can hopefully start pluggin in my XMLBeans-Code... 

Sorry for starting so much confusion and many thx for the help, Ole   - without 
the hint to use wsi I would still be debugging my XSD's...

Cheers
stf


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

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


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