Probelam com wsdl

Está dando esse erro na primeira linha do meu wsdl:

Referenced file contains errors (file:/C:/eclipse/plugins/org.wsdl4j_1.4.0.v200606181221/xsd/soapenc.xsd). For more information, …

Esse é o wsdl:

<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions name=“integration”
targetNamespace=“http://www.teste.com.br/dmd/integration/wsdl/
xmlns:soap=“http://schemas.xmlsoap.org/wsdl/soap/
xmlns:tns=“http://www.teste.com.br/dmd/integration/wsdl/
xmlns:wsdl=“http://schemas.xmlsoap.org/wsdl/
xmlnssd=“http://www.w3.org/2001/XMLSchema
xmlns:aplic=“http://www.teste.com.br/dmd/integration/xsd”>

wsdl:types
<xsd:schema xmlnssd=“http://www.w3.org/2001/XMLSchema”>
<xsd:import namespace=“http://schemas.xmlsoap.org/soap/encoding/” />
<xsd:import namespace=“http://www.teste.com.br/dmd/integration/xsd” schemaLocation=“Integration.xsd” />
</xsd:schema>
</wsdl:types>

<wsdl:message name=“verifyClientResponse”><wsdl:part name=“verifyClientResponse” element=“aplic:verifyClientRequest”></wsdl:part></wsdl:message>
<wsdl:message name=“verifyClientRequest”><wsdl:part name=“verifyClientRequest” element=“aplic:verifyClientRequest”></wsdl:part></wsdl:message>

<wsdl:portType name=“IntegrationPort”>

<wsdl:input message=“tns:verifyClientRequest”></wsdl:input>


</wsdl:portType>

<wsdl:binding name=“IntegrationBinding” type=“tns:IntegrationPort”>
<soap:binding style=“document” transport=“http://schemas.xmlsoap.org/soap/http”/>


wsdl:input
<soap:body use=“literal”/>
</wsdl:input>

<soap:body use=“literal”/>


</wsdl:binding>

<wsdl:service name=“IntegrationService”>
<wsdl:port binding=“tns:IntegrationBinding” name=“IntegrationService”>
<soap:address
xmlns:wsdl=“http://schemas.xmlsoap.org/wsdl/
location=“http://localhost:6666/axis/services/IntegrationService”/>
</wsdl:port>
</wsdl:service>

</wsdl:definitions>

Engraçado é que tenho um outro projeto que o mesmo wsdl não dá problema nenhum.