<corba:return ...> is generated instead of <corba:param mode="out" ...>
-----------------------------------------------------------------------

         Key: YOKO-66
         URL: http://issues.apache.org/jira/browse/YOKO-66
     Project: Yoko - CORBA Server
        Type: Bug

    Reporter: Matteo Vescovi


The out parameter is not properly mapped to a <corba:param mode="out"> but 
instead it is mapped to a <corba:return ...>.
This should happen only when the method has a return and not a out parameter.

i.e. The following IDL operation

void getShort   (out   short outShort);

get bound to the following WSDL:

<corba:binding ...>
 <wsdl:operation name="getShort">
  <corba:operation name="getShort">
   <corba:return name="outparameter" idltype="corba:short" />
  </corba:operation>
  <wsdl:output name="getShortResponse">
  </wsdl:output>
 </wsdl:operation>

It should instead be
...
  <corba:param name="outShort" mode="out" idltype="corba:short"/>
...


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to