[Gsoap2-develop] WSDL Issues
Development toolkit for Web Services and XML data bindings for C & C++
Brought to you by:
engelen
From: James M. D. <mdu...@ya...> - 2003-07-31 07:46:58
|
First of all, I wanted to thank you for this great toolkit! gsoap is very good, small and portable. I am having some problems with a wsdl file : http://gforge.org/soap/SoapAPI.php?wsdl First they are missing messages : so I had to add these : <!-- mdupont added these empty requests --> <message name="getSiteStatsRequest"></message> <message name="getNumberOfHostedProjectsRequest"></message> <message name="getNumberOfActiveUsersRequest"></message> <message name="getPublicProjectNamesRequest"></message> <message name="logoutRequest"></message> And second the array are not being used by the wsdl tool : <xsd:complexType name="ArrayOfGroupObject"> <xsd:complexContent> <xsd:restriction base="SOAP-ENC:Array"> <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:GroupObject[]"/> </xsd:restriction> </xsd:complexContent> </xsd:complexType> but it seems i need to have them like this : <complexType name="ArrayOfGroupObject"> <complexContent> <restriction base="SOAP-ENC:Array"> <sequence> <element name="item" type="tns:GroupObject" minOccurs="0" maxOccurs="unbounded"/> </sequence> <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:GroupObject[]"/> </restriction> </complexContent> </complexType> You can see my bug lists here : http://gforge.org/forum/forum.php?thread_id=627&forum_id=44 Does anyone have any ideas about this? ===== James Michael DuPont http://introspector.sourceforge.net/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |