I am attempting to import WSDL to generate the class from a older webservice using svcutil. Initially I was having issues with the fault definition, but I think I've corrected that now.
I've stripped the WSDL down to a single method and it's parameters and fault response.
The error I'm receiving now from svcutil really doesn't make sense to me. It seems to be complaining about the name attribute of
I have some example WSDL which has a very similar construction which works fine. I've been looking at this for so long now. Any suggestions gratefully received.
C:\Users\Martin>svcutil /t:code e:\IOrderingServices.xml /d:c:\temp\ /ser:XMLSerializer
Microsoft (R) Service Model Metadata Tool [Microsoft (R) Windows (R) Communication Foundation, Version 4.0.30319.17929] Copyright (c) Microsoft Corporation. All rights reserved.
Error: Cannot import wsdl:portType Detail: An exception was thrown while running a WSDL import extension: System.ServiceModel.Description.XmlSerializerMessageContractImporter
Error: The 'name' attribute cannot be present.
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:OrderingServices ']/wsdl:portType[@name='OrderingPort']
Error: Cannot import wsdl:binding Detail: There was an error importing a wsdl:portType that the wsdl:binding is de pendent on.
XPath to wsdl:portType: //wsdl:definitions[@targetNamespace='urn:OrderingService s']/wsdl:portType[@name='OrderingPort']
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:OrderingServices ']/wsdl:binding[@name='IOrderingServices']
Error: Cannot import wsdl:port Detail: There was an error importing a wsdl:binding that the wsdl:port is depend ent on.
XPath to wsdl:binding: //wsdl:definitions[@targetNamespace='urn:OrderingServices ']/wsdl:binding[@name='IOrderingServices']
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:OrderingServices ']/wsdl:service[@name='IOrderingServices']/wsdl:port[@name='port']
Generating files... Warning: No code was generated.
C:\Users\Martin>
This is the WSDL causing the problem, as I said I've chopped out a lot from the original and I've been manually tweaking to try get the interface class built.
<?xml version="1.0" encoding="utf-8"?>
<definitions name="IOrderingServices"
targetNamespace="urn:OrderingServices"
xmlns:tns="urn:OrderingServices"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:ns1="urn:OrderingServicesIntf" >
<types>
<xs:schema targetNamespace="urn:OrderingServices"
xmlns="urn:OrderingServicesIntf"
xmlns:ns1="urn:OrderingServicesIntf">
<xs:element name="EOrderingExceptionElement">
<xs:complexType name="EOrderingServicesException">
<xs:sequence/>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
<message name="LoadOrder0Request">
<part name="OrderNumber" type="xs:string"/>
<part name="UserId" type="xs:string"/>
</message>
<message name="LoadOrder0Response">
<part name="return" type="xs:string"/>
</message>
<message name="LoadOrder0fault0">
<part name="EOrderingServicesException"
element="ns1:EOrderingExceptionElement"/>
</message>
<portType name="OrderingPort">
<operation name="LoadOrder">
<input message="tns:LoadOrder0Request"/>
<output message="tns:LoadOrder0Response"/>
<fault name="LoadOrderFault" message="tns:LoadOrder0fault0"/>
</operation>
</portType>
<binding name="IOrderingServices" type="tns:OrderingPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="LoadOrder">
<soap:operation soapAction="urn:OrderingServicesIntf-IOrderingServices#LoadOrder" style="rpc"/>
<input message="tns:LoadOrder0Request">
<soap:body use="encoded"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:OrderingServicesIntf-IOrderingServices"/>
</input>
<output message="tns:LoadOrder0Response">
<soap:body
use="encoded"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:OrderingServicesIntf-IOrderingServices"/>
</output>
<fault name="OrderingServiceFault">
<soap:fault name="OrderingServiceFault"
use="encoded"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</fault>
</operation>
</binding>
<service name="IOrderingServices">
<port name="port"
binding="tns:IOrderingServices">
<soap:address location="http://127.0.0.1/scripts/OrderingServices/OrderingServices.dll/soap/IOrderingServices"/>
</port>
</service>
</definitions>