怎么从A服务器把图片传到B服务器啊,ASP.NET语言的,弄了好就没有弄成,B服务器只放图片,急死了,大侠们求救啊

解决方案 »

  1.   

    或者给图片服务加域名,我这边这公司现在就是这样,架iis,加域名给图片服务器
      

  2.   


    怎么用?有例子吗,[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UploadFile", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            public string UploadFile([System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] fs, string FileName, string FolderPath) {
                object[] results = this.Invoke("UploadFile", new object[] {
                            fs,
                            FileName,
                            FolderPath});
                return ((string)(results[0]));
            }
    知道什么意思吗