You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by ni...@opensource.lk on 2004/08/12 13:48:31 UTC

Supporting Array declarations by the wsdl2ws tool -Sample

Hi,

The tool was supported the following type of wsdl

<xsd:complexType name="intArrayType">
     <xsd:sequence>
        <xsd:element name="tns:intItem" type="xsd:int" minOccurs="0"      
    maxOccurs="unbounded" />
    </xsd:sequence>
  </xsd:complexType>

Now the following type of wsdl is also supported,
I have attached sample and wsdl too for verifications.

<xsd:element name="intItem" type="xsd:int" />
 <xsd:complexType name="intArrayType">
         <xsd:sequence>
              <xsd:element ref="tns:intItem" minOccurs="0"
maxOccurs="unbounded" />
        </xsd:sequence>
 </xsd:complexType>


Regards,
Nithya.


get_InteropTestPortType_stub signature changed

Posted by sanjaya singharage <sa...@opensource.lk>.
The interop c tests were crashing due to the

get_InteropTestPortType_stub method accepting no parameters and having only
the generated endpoint uri passed to the getStubObject method.

The signature was changed to void* get_InteropTestPortType_stub(const char*
pchEndPointUri) so that it could accept a uri built up by the client.

This is only for the C stub generation. The change is done for both
rpc/doclit.

sanjaya.