0

サービスで問題が発生しました。

基本的に、サービスへの外部参照を追加したいWebプロジェクトがありますが、追加しようとしたとき、または([GO]をクリックして)発見しようとすると、エラーが発生します:

The HTML document does not contain Web service discovery information.
Metadata contains a reference that cannot be resolved: 'http://webadress:port/wsdl/authentication-service.wsdl'.
The content type text/html of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 1024 bytes of the response were: '<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions name="authentication-service"
   targetNamespace="http://www.alfresco.org/ws/service/authentication/1.0" 
   xmlns:apachesoap="http://xml.apache.org/xml-soap" 
   xmlns:auth="http://www.alfresco.org/ws/service/authentication/1.0" 
   xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
   xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" 
   xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <!-- ************************************** -->
   <!-- Copyright Alfresco Software, Inc. 2005 -->
   <!-- ************************************** -->
   <wsdl:types>
      <schema elementFormDefault="qualified" targetNamespace="http://www.alfresco.org/ws/service/authentication/1.0" xmlns="http://www.w3.org/2001/XMLSchema">
         <element name="startSession">
            <complexType>
               <sequence>
                  <element name="fa" type="xsd:string"/>
                  <element name="fp" type="xsd:string"/>
             '.
If the service is defined in the current solution, try building the solution and adding the service reference again.

基本的に、何を知っておくべきか、サービスにアクセスするにはどうすればよいか、最善の方法は何か、VSでサービスを参照できないのはなぜですか?

参照は次のようなものです:(http://webadress:port/wsdl/authentication-service.wsdlそれは私のものではない外部サービスです)

この URL をブラウザで開くと、有効な xml が表示されます ....

どんなアイデアでも大歓迎です

4

1 に答える 1

2

以前は、外部 API 参照を追加するときに同様の問題があり、 wsdlツールを使用してプロキシ クラスを生成する際に機能することがありました。あなたはそれを試してみることができます

于 2013-03-15T13:36:21.787 に答える