Hi,
I am not able to generate a web service and its endpoint. There are several problems I described in other discussions. Maybe someone can give me a hint if there could be problems with some of the elements from my wsdl => called with parameter ?xsd=xsd0
-<xs:element name="Upload">
-<xs:complexType>
-<xs:sequence>
<xs:elementminOccurs="0" name="projectId" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="viewId" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="columns" nillable="true" type="q2:ArrayOfColumnDefinition" xmlns:q2="http://schemas.datacontract.org/2004/07/name.WCF.Interface" />
<xs:elementminOccurs="0" name="rows" nillable="true" type="q3:ArrayOfRow" xmlns:q3="http://schemas.datacontract.org/2004/07/name.WCF.Interface" />
</xs:sequence>
</xs:complexType>
</xs:element>
Should the calling
"http://schemas.datacontract.org/2004/07/name.WCF.Interface" result in correct page or is it just for the namespace it doesn't matter if the file exists or not.
Or what about:
-<xs:element name="UploadSimple">
-<xs:complexType>
-<xs:sequence>
<xs:elementminOccurs="0" name="projectId" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="viewId" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="separator" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="columns" nillable="true" type="xs:string" />
<xs:elementminOccurs="0" name="rows" nillable="true" type="q1:ArrayOfstring" xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
</xs:sequence>
</xs:complexType>
</xs:element>
Is this a correct part of a wsdl?
Thanks a lot, Vanessa