0

我正在开发一个将图像 zip 文件上传到ftp 服务器的 Windows 手机应用程序。但是我不能上传。它给出了一个错误远程服务器未找到

这是我的WCF应用程序web.config

<?xml version="1.0"?>
<configuration>

 <appSettings>
       <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="409600" />   
</system.web>
<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <!--<binding maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647" receiveTimeout="00:10:00" closeTimeout="00:10:00">
      <security mode="None" />
    </binding>-->
    <binding closeTimeout="01:30:00" 
      openTimeout="01:30:00" receiveTimeout="01:30:00" sendTimeout="01:30:00" 
      maxBufferSize="2147483646" maxBufferPoolSize="2147483646" maxReceivedMessageSize="2147483646">
      <readerQuotas maxDepth="2147483646" maxStringContentLength="2147483646" maxArrayLength="2147483646"
        maxBytesPerRead="2147483646" maxNameTableCharCount="2147483646" /> 
      <security mode="None">             
      </security>
    </binding>    
  </basicHttpBinding>    
</bindings>   

<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="true"/>
    </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>

这是我的ServiceReferences.ClientConfig

<configuration>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IService1" maxBufferSize="2147483647" closeTimeout="01:10:00"
                    openTimeout="01:10:00" receiveTimeout="01:10:00" sendTimeout="01:10:00" maxReceivedMessageSize="2147483647">
                <security mode="None" />
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://xxx.xx.x.xxx/WebService/Service1.svc"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1"
            contract="MyService.IService1" name="BasicHttpBinding_IService1" />
    </client>
</system.serviceModel>

我创建了两个项目,一个是 windows phone 应用程序,第二个是 wcf 应用程序。我正在向 wcf 服务器发送大字节 []数组,这会给出错误Remote server Notfound。当它很小时它工作得很好,byte[] size但当尺寸很大时它会失败。我听说我们可以将非常大的文件发送到 wcf 服务,大约 4gb 左右。那我错在哪里?我必须在web.config中做任何更改吗?我在本地机器上为IIShosted提供了 wcf 服务。

4

1 回答 1

0

要通过 wcf 发送大数据,您有两种选择:

  1. 您可以手动将数据分成几部分(例如,从文件中读取 2Kb)并分别传输每一部分。在服务器端,您可以将每个部分保存在临时文件中。这种方法需要一些编码(例如部分的控制顺序)。

  2. 另一种选择是使用transferMode="Streamed",但这种模式有一些限制。

更新

如果由于某些原因您不能使用 Streamed 模式,您可以在您的服务中创建一些方法:

string BeginSendFile();

此方法必须生成 id(例如 Guid)并将其返回给客户端。服务也可以在临时存储中创建一个具有此名称的文件。

void SendFilePortion(string id, byte[] data);

您调用此方法并传输一些数据。服务器可能会通过 id 找到临时文件并将数据写入其中。

void EndSentFile(string id, string originalName);

传输所有数据时调用此方法以重命名您的临时文件并在非临时存储中替换它。

于 2013-09-25T06:27:49.907 回答