You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
qWarning("ERROR: multiple output parameters are not supported (operation %s) - please file"
Is there any chance that support for multiple output parameters in rpc-style operations is added soon? As far as I can tell, the following message definition for a server response is perfectly valid with respect to the wsdl specification: <message name="ReadResponse"> <part name="Parameters" type="ns1:TParameters"/> <part name="Error" type="xs:unsignedShort"/> <part name="errorText" type="xs:string"/> </message>
Are there any reasons for not implementing it, that I don't see?
Kind regards,
Tim
The text was updated successfully, but these errors were encountered:
This would require that the generated C++ method is able to return multiple values... which means either a class/struct, or a std::tuple. Feel free to implement it, I'll review the patch.
KDSoap/kdwsdl2cpp/src/converter_clientstub.cpp
Line 671 in e69bb1f
KDSoap/kdwsdl2cpp/src/converter_serverstub.cpp
Line 150 in e69bb1f
Is there any chance that support for multiple output parameters in rpc-style operations is added soon? As far as I can tell, the following message definition for a server response is perfectly valid with respect to the wsdl specification:
<message name="ReadResponse"> <part name="Parameters" type="ns1:TParameters"/> <part name="Error" type="xs:unsignedShort"/> <part name="errorText" type="xs:string"/> </message>
Are there any reasons for not implementing it, that I don't see?
Kind regards,
Tim
The text was updated successfully, but these errors were encountered: