2009-08-24 10 views
0

J'essaie actuellement d'utiliser un service Web que j'ai développé dans un package Integration Services. Lorsque j'essaie de configurer la tâche de service Web, je reçois toujours un message d'erreur. J'ai configuré la connexion HTTP, et téléchargé avec succès le fichier WSDL qui remplace ma copie locale. Après cela, sous l'onglet d'entrée, je tente de sélectionner le seul service disponible « MyService » puis le message d'erreur suivant:Tâche de service Web SQL Integration Services Problème


article a déjà été ajouté. Clé du dictionnaire: 'anyType' Clé ajoutée: 'anyType'


Quelqu'un sait ce que cela signifie?

Merci d'avance!

<?xml version="1.0" encoding="utf-8"?> 
<wsdl:definitions name="MyService" targetNamespace="http://www.MyDomain.de/webservices" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:tns="http://www.MyDomain.de/webservices" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"> 
    <wsdl:types> 
    <xsd:schema targetNamespace="http://www.MyDomain.de/webservices/Imports"> 
     <xsd:import schemaLocation="http://localhost/MyDomainMyService/MyDomain.Billing.Infrastructure.Wcf.MyService.svc?xsd=xsd0" namespace="http://www.MyDomain.de/webservices" /> 
     <xsd:import schemaLocation="http://localhost/MyDomainMyService/MyDomain.Billing.Infrastructure.Wcf.MyService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 
    </xsd:schema> 
    </wsdl:types> 
    <wsdl:message name="MyService_BookNewTransaction_InputMessage"> 
    <wsdl:part name="parameters" element="tns:BookNewTransaction" /> 
    </wsdl:message> 
    <wsdl:message name="MyService_BookNewTransaction_OutputMessage"> 
    <wsdl:part name="parameters" element="tns:BookNewTransactionResponse" /> 
    </wsdl:message> 
    <wsdl:portType name="MyService"> 
    <wsdl:operation name="BookNewTransaction"> 
     <wsdl:input wsaw:Action="http://www.MyDomain.de/webservices/MyService/BookNewTransaction" message="tns:MyService_BookNewTransaction_InputMessage" /> 
     <wsdl:output wsaw:Action="http://www.MyDomain.de/webservices/MyService/BookNewTransactionResponse" message="tns:MyService_BookNewTransaction_OutputMessage" /> 
    </wsdl:operation> 
    </wsdl:portType> 
    <wsdl:binding name="BasicHttpBinding_MyService" type="tns:MyService"> 
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> 
    <wsdl:operation name="BookNewTransaction"> 
     <soap:operation soapAction="http://www.MyDomain.de/webservices/MyService/BookNewTransaction" style="document" /> 
     <wsdl:input> 
     <soap:body use="literal" /> 
     </wsdl:input> 
     <wsdl:output> 
     <soap:body use="literal" /> 
     </wsdl:output> 
    </wsdl:operation> 
    </wsdl:binding> 
    <wsdl:service name="MyService"> 
    <wsdl:port name="BasicHttpBinding_MyService" binding="tns:BasicHttpBinding_MyService"> 
     <soap:address location="http://localhost/MyDomainMyService/MyDomain.Billing.Infrastructure.Wcf.MyService.svc" /> 
    </wsdl:port> 
    </wsdl:service> 
</wsdl:definitions> 

Répondre

Questions connexes