码迷,mamicode.com
首页 > 其他好文 > 详细

WCF-IIS-PDA

时间:2014-08-10 15:23:00      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   使用   os   io   

PDA调用WCF

一 IIS托管WCF

      项目从开始是用IIS托管的WCF,但一直出错,到最后也没有搞定,希望哪位大神知道的话可以指点。

错误如下:

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

The inner exception: Could not establish connection to network.

     虽然项目没有成功,但还是学到了一些东西,总结以备以后之用。

    (1)在IIS上部署WCF

      具体的发布流程网上很多,可以参考这篇:http://www.cnblogs.com/finehappy/archive/2009/12/22/1629483.html。但发布完之后可能出现很多问题:

     Question 1: 

      在VS中,添加服务引用,地址输入http://ip/Service.svc,点击前往,提示错误,内容如下:


URI http://ip/Service.svc 处的文档未被识别为已知的文档类型。 来自各已知类型的错误信息可能有助于修复该问题: - 来自“XML 架构”的报告是“无法识别此文档格式(内容类型为“text/html; charset=UTF-8”)。”。 - 来自“http://ip/Service.svc”的报告是“无法识别此文档格式(内容类型为“text/html; charset=UTF-8”)。”。 - 来自“DISCO 文档”的报告是“下载“http://域名/Service.svc?disco”时出错。”。 - 未能解析此远程名称: ‘域名‘ - 来自“WSDL 文档”的报告是“无法识别此文档格式(内容类型为“text/html; charset=UTF-8”)。”。 元数据包含无法解析的引用:“http://域名/Service.svc”。 服务 http://ip/Service.svc 不支持内容类型 application/soap+xml; charset=utf-8。客户端和服务绑定可能不匹配。 远程服务器返回错误: (415) Cannot process the message because the content type ‘application/soap+xml; charset=utf-8‘ was not the expected type ‘text/xml; charset=utf-8‘.。 如果该服务已在当前解决方案中定义,请尝试生成该解决方案,然后再次添加服务引用.

解决方案:

修改wcf的配置文件,添加红色部分部门,或者通过wcf配置文件编辑器,添加useRequestHeadersForMetadataAddress配置

<behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
          <useRequestHeadersForMetadataAddress>
            <defaultPorts>
              <add scheme="http" port="8002" />
              <add scheme="https" port="8002" />
            </defaultPorts>
          </useRequestHeadersForMetadataAddress>
        </behavior>
      </serviceBehaviors>
    </behaviors>

Question 2:.net程序集过时问题

错误代码:

未能加载文件或程序集“xxx”或它的某一个依赖项。生成此程序集的运行时比当前加载的运行时新,无法加载此程序集  

解决方案:

主要原因是:引用的项目 .net 版本与启动的框架不同

主要原因是:引用的项目 .net 版本与启动的框架不同

windows xp

我的电脑->右键管理->Internet信息服务->默认网站->右键属性->ASP.NET->> 更改相应的asp.net版本即可

windows 7

我的电脑->右键管理->Internet信息服务(IIS)管理器->双击打开->单击应用程序池->双击要修改的网站->将.NET Framework 版本修改为相对应的版本即可

二 其他host wcf 平台

1.启动服务端发布服务

    这里为了简单,我使用console程序进行发布。最关键的还是Uri和binding,如果想在PDA上调用wcf服务,那么binding必须采用BasicHttpBinding,这点必须注意。

            Uri baseUri = new Uri("http://localhost:8080/wcfService");

            using (ServiceHost wcfServiceHost = new ServiceHost(typeof(Service.WcfServcie), baseUri))
            {
                BasicHttpBinding binding = new BasicHttpBinding();

                wcfServiceHost.AddServiceEndpoint(typeof(IWcfServcie), binding, string.Empty);

                ServiceMetadataBehavior behavior = wcfServiceHost.Description.Behaviors.Find<ServiceMetadataBehavior>();

                if (behavior == null)
                {
                    behavior = new ServiceMetadataBehavior();
                    behavior.HttpGetEnabled = true;
                    behavior.HttpGetUrl = baseUri;
                    wcfServiceHost.Description.Behaviors.Add(behavior);
                }
                else
                {
                    behavior.HttpGetEnabled = true;
                    behavior.HttpGetUrl = baseUri;
                }

                wcfServiceHost.Open();

                Console.Read();
            }

2、检查服务是否已发布

编译后启动服务端程序,使用“:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\WcfTestClient.exe”,可以检查服务是否正常发布,当然也可以使用IE。我一般使用WcfTestClient.exe,它可以针对每个方法做测试。

3、创建PDA上WCF服务代理类

    可以手动写这部分代码,如果不想自己写代理类,那就下载NETCFv35PowerToys.msi并安装,然后“:\Program Files\Microsoft.NET\SDK\CompactFramework\v3.5\bin”会有一个程序NetCFSvcUtil.exe。通过cmd执行“NetCFSvcUtil.exe http://localhost:8080/wcfService" ,\Program Files\Microsoft.NET\SDK\CompactFramework\v3.5\bin目录下会出现生成的两个文件CFClientBase.cs和WcfServcie.cs,这就是服务的代理类。需要注意的是WcfServcie.cs中”public static System.ServiceModel.EndpointAddress EndpointAddress = new System.ServiceModel.EndpointAddress("http://localhost:8080/wcfService");“,将”localhost“改为服务端的Ip。

    在win7上NetCFSvcUtil.exe可能不起作用,总会提示外部工具错误。所以最好用win7之前的OS。不过微软已经发布一个补丁版本。可以搜下。

 

WCF-IIS-PDA,布布扣,bubuko.com

WCF-IIS-PDA

标签:des   style   blog   http   color   使用   os   io   

原文地址:http://www.cnblogs.com/foreverfuture/p/3902773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!