2012-03-19 21 views
9

..."hayır bitiş noktası olarak dinleme vardı ..." Ben basit bir WCF hizmeti yapmaya çalışıyorum

My Wcf Servisi .config:

<system.serviceModel> 
<services> 
    <service name ="WebService.Receptor"> 
    <endpoint 
     address = "http://MyServer:8000/WS" 
     binding = "wsHttpBinding" 
     contract = "IMyContract" 
    /> 
    </service> 
</services> 
<behaviors> 
    <serviceBehaviors> 
    <behavior> 
     <serviceDebug includeExceptionDetailInFaults="false"/> 
    </behavior> 
    </serviceBehaviors> 
</behaviors> 
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" /> 

Benim pencere servis .config:

<system.serviceModel> 
<client> 
    <endpoint 
    name = "Receptor" 
    address = "http://MyServer:8000/WS" 
    binding = "wsHttpBinding" 
    contract = "IMyContract" 
    /> 
</client> 
</system.serviceModel> 

Obs: Wcf Serv

There was no endpoint listening at http://MyServer:8000/WS that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

iç istisna:

{"Unable to connect to the remote server"}

i bu hata var wcf vekil (IMyContract) bir yöntemi çağırmak çalıştığınızda buz, 7.

Yani Windows üzerinde IIS 7.5 altında çalışan

Herkes nedenini biliyor mu?

cevap

11

IIS'de bir WCF hizmetini barındırdığınızda, adreste mutlak bir URL belirtmezsiniz. .svc dosyasına göreceli bir url kullanmalısınız. Temel URL, barındırıldığı web sitesi tarafından belirlenir. Bu 8000 bağlantı noktasını dinleyen IIS bir site yapılandırılmış varsayar

<client> 
    <endpoint 
     name="Receptor" 
     address="http://MyServer:8000/WS.svc" 
     binding="wsHttpBinding" 
     contract="IMyContract" 
    /> 
</client> 

:

<service name="WebService.Receptor"> 
    <endpoint 
     address="/WS.svc" 
     binding="wsHttpBinding" 
     contract="IMyContract" 
    /> 
</service> 

ve istemci üzerinde, IIS nasıl yapılandırıldığına bağlı olarak tabii ki tam adresi belirtmelidir

ve bu siteye WCF uygulamanızı ev sahipliği yaptınız.

İlgili konular