加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 添加服务引用异常:无法连接到远程服务器

发布时间:2020-12-15 03:45:11 所属栏目:百科 来源:网络整理
导读:从控制台应用程序客户端调用时,我的WCF服务返回结果.但是,它显示 Exception: Unable to connect to remote server 实际错误: Failed to invoke the service. Possible causes: The service is offline or inaccessible; the client-side configuration does
从控制台应用程序客户端调用时,我的WCF服务返回结果.但是,它显示

Exception: Unable to connect to remote server

实际错误:

Failed to invoke the service. Possible causes: The service is offline or inaccessible; the client-side configuration does not match
the proxy; the existing proxy is invalid. Refer to the stack trace for
more detail. You can try to recover by starting a new proxy,restoring
to default configuration,or refreshing the service.

错误详情:

The server was unable to process the request due to an internal error.
For more information about the error,either turn on
IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute
or from the configuration behavior) on the server in
order to send the exception information back to the client,or turn on
tracing as per the Microsoft .NET Framework SDK documentation and
inspect the server trace logs.

Server stack trace: at
System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message
reply,MessageFault fault,String action,MessageVersion version,
FaultConverter faultConverter) at
System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime
operation,ProxyRpc& rpc) at
System.ServiceModel.Channels.ServiceChannel.Call(String action,
Boolean oneway,ProxyOperationRuntime operation,Object[] ins,
Object[] outs,TimeSpan timeout) at
System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage
methodCall,ProxyOperationRuntime operation) at
System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage
message)

Exception rethrown at [0]: at
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
reqMsg,IMessage retMsg) at
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&
msgData,Int32 type) at IJiraService.GetProjects() at
JiraServiceClient.GetProjects()

请注意,当Fiddler正在运行时,该服务正常工作.但是,如果我关闭Fiddler,则会显示异常:

这是Fiddler日志(当我得到数据时):

TTP / 1.1 200连接建立
日期:星期四,06八月2015 14:39:22 GMT
代理连接:保持活动
通过:1.1 localhost.localdomain

加密的HTTPS流量流经此CONNECT隧道.在Fiddler中启用HTTPS解密,因此在此隧道中运行的解密会话将显示在“Web会话”列表中.

安全协议:Tls
密码:Aes128 128bits
哈希算法:Sha1 160bits
密钥交换:ECDHE_RSA(0xae06)256bits

==服务器证书==========
[学科]
CN = *.atlassian.net,O =“Atlassian Network Services,Inc.”,L =旧金山,S =加利福尼亚州,C = US

[发行者]
CN = DigiCert SHA2高保证服务器CA,OU = www.digicert.com,O = DigiCert Inc,C = US

[序列号]
08E828A2F8C521A2DC7121A28E191837

[不在之前]
9/9/2014 5:30:00 AM

[不后]
11/15/2017 5:30:00 PM

[指纹]
EA57BE3C6CDA33E6D875889944EE61284E39D91D

HTTP / 1.1 200 OK
服务器:nginx
日期:星期四,06八月2015 14:39:26 GMT
Content-Type:application / json; charset = UTF-8
传输编码:分块
连接:保持活着
Vary:Accept-Encoding
X-AREQUESTID:39x4118x1
X-ASEN:SEN-2425233
Set-Cookie:JSESSIONID = 8B68E46928883CA9F99382A67C228541;路径= /;安全;仅Http
Set-Cookie:studio.crowd.tokenkey =“”;域= .clientname.atlassian.net; Expires = Thu,01-Jan-1970 00:00:10 GMT;路径= /;安全;仅Http
X-Seraph登录原因:OUT
Set-Cookie:studio.crowd.tokenkey = YcO0N1IItmmGYah6bzgN0w00;域= .clientname.atlassian.net;路径= /;安全;仅Http
X-Seraph-LoginReason:好的
Set-Cookie:atlassian.xsrf.token = ALMX-0SVV-VVCK-3Y73 | c420e5bfab5c997ccdfa21ffa129d60a69af0013 | lin;路径= /;安全
X-ASESSIONID:b2v6it
X-AUSERNAME:admin
X-ATENANT-ID:clientname.atlassian.net
缓存控制:无缓存,无存储,无变换
X-Content-Type-Options:nosniff
严格传输安全性:max-age = 315360000; includeSubDomains

根据以上Fiddler日志是我必须在web.config文件中更改以使其正常工作?

当从WCF测试客户端调用时.这是我试过的:

Web.config文件:

<?xml version="1.0"?>
  <configuration>
  <!--<system.net>
   <defaultProxy useDefaultCredentials="true" >
  </defaultProxy>
 </system.net>-->
<appSettings>
<add key="UserName" value="admin"/>
<add key="Password" value="admin"/>
<add key="resturl" value="https://Clientname.atlassian.net/rest/api/2/"/>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
 <system.web>
  <compilation debug="true" targetFramework="4.5" />
  <httpRuntime targetFramework="4.5"/>
 </system.web>
 <system.serviceModel>
  <bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IJiraService"/>
    </basicHttpBinding>
    </bindings>
   <client>
     <endpoint address="http://localhost:19065/JiraService.svc"  binding="basicHttpBinding"
        bindingConfiguration="BasicHttpBinding_IJiraService" contract="ServiceReference1.IJiraService"
       name="BasicHttpBinding_IJiraService" />
    </client>
    <behaviors>
     <serviceBehaviors>
       <behavior>
         <!-- To avoid disclosing metadata information,set the values below to false before deployment -->
         <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
        <!-- To receive exception details in faults for debugging purposes,set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
       </behavior>
       </serviceBehaviors>
      </behaviors>
      <protocolMapping>
      <add binding="basicHttpsBinding" scheme="https" />
   </protocolMapping>    
   <serviceHostingEnvironment aspNetCompatibilityEnabled="true"   multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
  <modules runAllManagedModulesForAllRequests="true"/>
   <!--
    To browse web app root directory during debugging,set the value below to true.
    Set to false before deployment to avoid disclosing web app folder information.
  -->
  <directoryBrowse enabled="true"/>
 </system.webServer>

</configuration>

以下是我在代码中的请求方式:

public class Service : IService
{
    private string GetRestURL()
    {
        return System.Configuration.ConfigurationManager.AppSettings["resturl"];
    }

    private string GetUserName()
    {
        return System.Configuration.ConfigurationManager.AppSettings["MyUserName"];
    }

    private string GetPassword()
    {
        return System.Configuration.ConfigurationManager.AppSettings["MyPassword"];
    }

 public string method()
 {
       HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
        // HttpClient 


        request.ContentType = "application/json; charset=UTF-8";
        //request.ContentType = "text/xml; charset=UTF-8";
        /*request.Headers.Add("X-Atlassian-Token","nocheck");
        request.UseDefaultCredentials = true;
        request.KeepAlive = true;*/
        request.Method = method;

        /*if (data != null)
        {
            using (StreamWriter writer = new StreamWriter(request.GetRequestStream(),Encoding.ASCII))
            {
                writer.Write(data);
            }
        }*/
        string base64Credentials = GetEncodedCredentials();
        request.Headers.Add("Authorization","Basic " + base64Credentials);



     try
     {
        request.Headers.Add("Authorization","Basic " + base64Credentials);

        response = request.GetResponse() as HttpWebResponse; //here its NULL

        if (response.StatusCode != HttpStatusCode.OK)
        {
                throw new Exception(String.Format("Server error (HTTP {0}:{1}).",response.StatusCode,response.StatusDescription));
        }
    }
    catch (Exception ex) //Here I'm getting exception
    {
        throw new Exception(ex.Message);
    }
 }

这是我的方法签名:

[ServiceContract]
public interface IService
{
    [OperationContract]
    List<ProjectDescription> GetProjects();
 }

注意:“方法”从“GetProjects”中被调用

这是通过调用WCF测试客户端调试时得到的内部异常:

这是我内心的异常

A connection attempt failed because the connected party did not properly respond after a period of time,or established connection failed because connected host has failed to respond 165.254.xxx.xxx:443

注意:当我从控制台应用程序进行调试时,没有调试异常.正如我所说,控制台应用程序正常工作,我可以从服务返回结果.

更新:当我在控制台应用程序中添加这个服务作为“添加引用”时,它的工作正常.但是,当我在同一个控制台应用程序中添加为“添加服务引用”时,它显示同样的错误.我的网络是阻止某些东西吗?请帮忙.

如何纠正?还有什么我需要添加到web.config中吗?或者我需要允许URL作为受信任的URL吗?

解决方法

通过在IIS中添加代理解决问题.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读