WCF 服务将大文件上载到 FTP 服务器
本文关键字:FTP 服务器 上载 文件 服务 WCF | 更新日期: 2023-09-27 18:32:38
我正在开发一个Windows手机应用程序,该应用程序将图像zip文件上传到ftp服务器。但我无法上传它。它给出一个错误 找不到远程服务器
这是我的 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>
这是我的服务参考.客户端配置
<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 服务器发送大字节 [] 数组,这给出了错误远程服务器 Notfound。当byte[] size
较小时,它可以完美运行,但在尺寸较大时会失败。我听说我们可以向大约 4gb 的 wcf 服务发送非常大的文件。那我错在哪里?在 web.config 中我必须做任何更改吗?我已将我的 wcf 服务hosted
到本地计算机上的 IIS。
对于通过 wcf 发送大型数据,您有两个选择:
-
您可以手动将数据分解为多个部分(例如,由 2Kb 从文件中读取)并分别传输每个部分。在服务器端,您可以将每个部分保存在临时文件中。此方法需要一些编码(例如,控制部分的顺序)。
-
另一种选择是使用 transferMode="Streamed",但此模式有一些限制。
更新
如果由于某些原因无法使用流模式,则可以在服务中创建一些方法:
string BeginSendFile();
此方法必须删除 id(例如 Guid)并将其返回到客户端。此外,服务可能会在临时存储中创建具有此名称的文件。
void SendFilePortion(string id, byte[] data);
调用此方法并传输少量数据。服务器可能会通过 id 找到临时文件并向其中写入数据。
void EndSentFile(string id, string originalName);
传输所有数据以重命名临时文件并将其替换到非临时存储中时调用此方法。