2

我正在使用带有 c# 的 asp.net 3.5

在我的 Web 应用程序中有一个名为的文件夹SlideShow,其中包含图像。我想获取具有相应 URL 的图像名称,并使用 WCF 以 JSON 格式返回它。我创建了一个返回 json 字符串的方法,该字符串包含图像路径和图像数组。当我使用 ASP.NET 开发服务器运行应用程序时,它工作正常,但在 IIS 上出现错误。

我的界面是

[OperationContract]
        [WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare)]
        Stream GetSlideShowImages();

服务方式是

   Stream Iremoteclient.GetSlideShowImages()
        {
                byte[] resultBytes = Encoding.UTF8.GetBytes(new AndroidServices().GetSlideShowImages());
                WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
                saveAndroidRequest();
                return new MemoryStream(resultBytes);
            }

        }

和获取json字符串的方法是

public string GetSlideShowImages()
        {
            try
            {
                string relativepath = HttpContext.Current.Request.Url.Scheme + "://" + HttpContext.Current.Request.Url.Authority + HttpContext.Current.Request.ApplicationPath;

                string pathlastchr = relativepath.Trim().Substring(relativepath.Length - 1, 1);
                if (pathlastchr == "/")
                {
                    relativepath = relativepath.Trim() + "SlideShow/";
                }
                else
                {
                    relativepath = relativepath.Trim() + "SlideShow/";
                }
                string json;
                DirectoryInfo directoryInfo = new DirectoryInfo(HttpContext.Current.Server.MapPath("/SlideShow"));
                FileInfo[] file = directoryInfo.GetFiles().Where(f => f.Extension == (".bmp") || f.Extension == (".jpg") || f.Extension == (".png") || f.Extension == (".TIFF") || f.Extension == (".gif")).ToArray();

                AndroidServices objAndroidServices = new AndroidServices();
                objAndroidServices.ImagePath = relativepath;
                objAndroidServices.Images = file.Select(f => f.Name).ToArray();


                using (MemoryStream ms = new MemoryStream())
                {
                    DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(AndroidServices));
                    ser.WriteObject(ms, objAndroidServices);
                    json = System.Text.Encoding.UTF8.GetString(ms.GetBuffer(), 0, Convert.ToInt16(ms.Length));
                    json = json.Replace(@"\/", @"/");
                }
                return json;
            }
            catch (Exception ex)
            {                   
                return ex.Message;
            }
        }

在 IIS 上,它给出了类似的错误

“在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 在 System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean i”和“在 System.Text.Encoding.GetBytes(String s ) 在 E:\VivifyHealth\caregiverihportal\src\service\remoteclient.svc 中的 ihv1Role.service.remoteclient.ihv1Role.service.Iremoteclient.GetSlideShowImages()"

有什么解决办法吗?

4

1 回答 1

1

所以问题是你需要改变这个:

DirectoryInfo directoryInfo =
    new DirectoryInfo(HttpContext.Current.Server.MapPath("/SlideShow"));

对此:

DirectoryInfo directoryInfo =
    new DirectoryInfo(HttpContext.Current.Server.MapPath("~/SlideShow"));

根据 MSDN 文档:

...路径开头的斜杠 (/) 表示站点的绝对虚拟路径。

但是,当您以~开头时,它将从站点的根目录开始。

于 2013-07-27T09:41:36.797 回答