上传源文件至虚拟服务器,C# 通过WebService上传视频文件到服务器虚拟机下源码...

【实例简介】

请参考:http://blog.csdn.net/dwj901125/article/details/23701063

这里有相当详尽的实现过程。

【实例截图】

【核心代码】

WebServiceTest

├── WebServiceTest

│   ├── Backup

│   │   ├── StateGrid95598

│   │   │   ├── Properties

│   │   │   │   └── AssemblyInfo.cs

│   │   │   ├── StateGrid95598.csproj

│   │   │   ├── StateGrid95598.csproj.user

│   │   │   ├── Web.config

│   │   │   ├── Web.Debug.config

│   │   │   ├── Web.Release.config

│   │   │   ├── WebService1.asmx

│   │   │   └── WebService1.asmx.cs

│   │   ├── StateGrid95598.sln

│   │   ├── StateGrid95598.suo

│   │   └── WindowsFormsApplication1

│   │   ├── app.config

│   │   ├── Form1.cs

│   │   ├── Form1.Designer.cs

│   │   ├── Form1.resx

│   │   ├── Program.cs

│   │   ├── Properties

│   │   │   ├── AssemblyInfo.cs

│   │   │   ├── Resources.Designer.cs

│   │   │   ├── Resources.resx

│   │   │   ├── Settings.Designer.cs

│   │   │   └── Settings.settings

│   │   ├── Service References

│   │   │   └── ServiceReference1

│   │   │   ├── configuration91.svcinfo

│   │   │   ├── configuration.svcinfo

│   │   │   ├── Reference.cs

│   │   │   ├── Reference.svcmap

│   │   │   ├── WebService1.disco

│   │   │   └── WebService1.wsdl

│   │   └── WindowsFormsApplication1.csproj

│   ├── StateGrid95598

│   │   ├── AppService.csproj

│   │   ├── AppService.csproj.user

│   │   ├── AppService.Publish.xml

│   │   ├── bin

│   │   │   ├── StateGrid95598.dll

│   │   │   └── StateGrid95598.pdb

│   │   ├── obj

│   │   │   ├── AppService.csproj.FileListAbsolute.txt

│   │   │   ├── Debug

│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache

│   │   │   │   ├── Package

│   │   │   │   │   ├── PackageTmp

│   │   │   │   │   │   ├── bin

│   │   │   │   │   │   │   ├── StateGrid95598.dll

│   │   │   │   │   │   │   └── StateGrid95598.pdb

│   │   │   │   │   │   ├── Web.config

│   │   │   │   │   │   └── WebService1.asmx

│   │   │   │   │   ├── StateGrid95598.SetParameters.xml

│   │   │   │   │   ├── StateGrid95598.SourceManifest.xml

│   │   │   │   │   └── StateGrid95598.zip

│   │   │   │   ├── StateGrid95598.csproj.FileListAbsolute.txt

│   │   │   │   ├── StateGrid95598.dll

│   │   │   │   ├── StateGrid95598.pdb

│   │   │   │   └── TransformWebConfig

│   │   │   │   ├── original

│   │   │   │   │   └── Web.config

│   │   │   │   └── transformed

│   │   │   │   └── Web.config

│   │   │   └── StateGrid95598.csproj.FileListAbsolute.txt

│   │   ├── Properties

│   │   │   └── AssemblyInfo.cs

│   │   ├── StateGrid95598.csproj.bak

│   │   ├── Web.config

│   │   ├── Web.Debug.config

│   │   ├── Web.Release.config

│   │   ├── WebService1.asmx

│   │   ├── WebService1.asmx.cs

│   │   └── 视频文件-2014-10-10-02-10-55.mp4

│   ├── StateGrid95598.sln.docstates.suo

│   ├── UpgradeLog.XML

│   ├── _UpgradeReport_Files

│   │   ├── UpgradeReport.css

│   │   ├── UpgradeReport_Minus.gif

│   │   ├── UpgradeReport_Plus.gif

│   │   └── UpgradeReport.xslt

│   ├── WebService.sln

│   ├── WebService.sln.docstates.suo

│   ├── WebService.suo

│   └── WindowsFormsApplication1

│   ├── app.config

│   ├── bin

│   │   └── Debug

│   │   ├── WindowsFormsApplication1.exe

│   │   ├── WindowsFormsApplication1.exe.config

│   │   ├── WindowsFormsApplication1.pdb

│   │   ├── WindowsFormsApplication1.vshost.exe

│   │   ├── WindowsFormsApplication1.vshost.exe.config

│   │   └── WindowsFormsApplication1.vshost.exe.manifest

│   ├── Form1.cs

│   ├── Form1.Designer.cs

│   ├── Form1.resx

│   ├── obj

│   │   └── x86

│   │   └── Debug

│   │   ├── DesignTimeResolveAssemblyReferences.cache

│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache

│   │   ├── GenerateResource.read.1.tlog

│   │   ├── GenerateResource.write.1.tlog

│   │   ├── TempPE

│   │   │   ├── Service References.ServiceReference1.Reference.cs.dll

│   │   │   └── Web References.localhost.Reference.cs.dll

│   │   ├── WindowsFormsApp.csproj.FileListAbsolute.txt

│   │   ├── WindowsFormsApp.csproj.GenerateResource.Cache

│   │   ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt

│   │   ├── WindowsFormsApplication1.csproj.GenerateResource.Cache

│   │   ├── WindowsFormsApplication1.csprojResolveAssemblyReference.cache

│   │   ├── WindowsFormsApplication1.exe

│   │   ├── WindowsFormsApplication1.Form1.resources

│   │   ├── WindowsFormsApplication1.pdb

│   │   └── WindowsFormsApplication1.Properties.Resources.resources

│   ├── Program.cs

│   ├── Properties

│   │   ├── AssemblyInfo.cs

│   │   ├── Resources.Designer.cs

│   │   ├── Resources.resx

│   │   ├── Settings.Designer.cs

│   │   └── Settings.settings

│   ├── Service References

│   │   └── ServiceReference1

│   │   ├── configuration91.svcinfo

│   │   ├── configuration.svcinfo

│   │   ├── Reference.cs

│   │   ├── Reference.svcmap

│   │   ├── WebService1.disco

│   │   └── WebService1.wsdl

│   ├── WindowsFormsApp.csproj

│   └── WindowsFormsApp.csproj.user

└── 用前必读.txt

30 directories, 104 files

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值