i use this wsdl to generate my files types and other
stubs, but with wsdl2java only generate this file:
ICalcul.java
ICalculservice.java
ICalculserviceLocator.java
ICalculbindingStub.java
and no other files types why?
_____________________________________________________________________________
D�couvrez le nouveau Yahoo! Mail : 1 Go d'espace de stockage pour vos mails,
photos et vid�os !
Cr�ez votre Yahoo! Mail sur http://fr.mail.yahoo.com<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ICalculservice" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns1="urn:MyTypes">
<types>
<xs:schema targetNamespace="urn:MyTypes" xmlns="urn:MyTypes">
<xs:complexType name="Ttabpart">
<xs:complexContent>
<xs:restriction base="soapenc:Array">
<xs:sequence/>
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TPart[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="TPart">
<xs:sequence>
<xs:element name="masse" type="xs:int"/>
<xs:element name="posx" type="xs:int"/>
<xs:element name="posy" type="xs:int"/>
<xs:element name="vit" type="xs:int"/>
<xs:element name="pol" type="xs:int"/>
<xs:element name="dir" type="xs:int"/>
<xs:element name="moves" type="xs:int"/>
<xs:element name="couleur" type="xs:string"/>
<xs:element name="typ" type="xs:string"/>
<xs:element name="moved" type="xs:boolean"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name="test0Request">
<part name="part" type="ns1:Ttabpart"/>
<part name="nb" type="xs:int"/>
</message>
<message name="test0Response">
<part name="return" type="ns1:Ttabpart"/>
</message>
<portType name="ICalcul">
<operation name="test">
<input name="test0Request" message="tns:test0Request"/>
<output name="test0Response" message="tns:test0Response"/>
</operation>
</portType>
<binding name="ICalculbinding" type="tns:ICalcul">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="test">
<soap:operation soapAction="urn:CalculIntf-ICalcul#test" style="rpc"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:CalculIntf-ICalcul"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:CalculIntf-ICalcul"/>
</output>
</operation>
</binding>
<service name="ICalculservice">
<port name="ICalculPort" binding="tns:ICalculbinding">
<soap:address location="http://localhost:8088/cgi-bin/Project3.exe/soap/ICalcul"/>
</port>
</service>
</definitions>