0

我这里有问题。

我有一个托管 silverlight 2 应用程序的 ASP.net 网站。我希望该站点能够与 silverlight 应用程序来回通信,并且我正在通过 http 请求进行此操作。顺便说一句,如果有人知道更好的方法,请告诉我。

我的服务器设置了以下 http 侦听器。我从某处的教程站点复制了这个,因为它目前主要是实验:

      HttpListener listener = new HttpListener (  );
      listener.Prefixes.Add("http://localhost:4531/MyApp/");  
      listener.Start(  );                                         

      // Wait for a client request:
      HttpListenerContext context = listener.GetContext(  );

      // Respond to the request:
      string msg = "You asked for: " + context.Request.RawUrl;
      context.Response.ContentLength64 = Encoding.UTF8.GetByteCount (msg);
      context.Response.StatusCode = (int) HttpStatusCode.OK;

      using (Stream s = context.Response.OutputStream)
      using (StreamWriter writer = new StreamWriter (s))
        writer.Write (msg);

      listener.Stop(  );

我正在使用以下代码发送请求:

 private void MyButton_Click(object sender, RoutedEventArgs e)
        {
            Button b = sender as Button;
            b.Content = "Hello World";

            Uri serviceUri = new Uri("http://localhost:4531/MyApp/");
            WebClient downloader = new WebClient();
            downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(TestDownloadStoriesCompleted);
            downloader.DownloadStringAsync(serviceUri);

        }
        void TestDownloadStoriesCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (e.Error == null)
            {
                TextBox1.Text = e.Result;
            }
        }

我的问题是我可以使用几乎相同的代码从控制台应用程序连接到网络服务器(我通过在代码中设置断点对其进行了测试),但是当我单击 Silverlight 中的按钮时没有任何反应。(我添加了“Hello World”来测试我确实将代理连接到按钮。)

我读过silverlight 需要通过webclient 连接的策略,但如果我为服务器和silverlight 应用程序使用相同的服务器和相同的域,情况就不应该如此!

感谢您的回复!

编辑:我收到此异常:

System.Security.SecurityException ---> System.Security.SecurityException:安全错误。

此外,根据我正在阅读的内容显然是源站点,xap 的部署 URI 和请求 URI 也必须是相同的端口。

但是,当我将服务器的属性设置为托管在特定端口上,并将侦听器设置为侦听同一端口时,它会失败并显示消息该进程无法访问该文件,因为它正在被另一个进程使用. 我认为这是因为 http 侦听器无法侦听用于托管它的同一端口:| 但是,我怎样才能让 Silverlight 执行源 Web 客户端请求的主机呢?

4

3 回答 3

1

由于这只是一个测试添加一个“else TextBox1.Text=e.Error.ToString();” 在您的 TestDownloadStoriesCompleted 处理程序中查看您收到的错误。

编辑:

您不能在同一端口上同时托管 asp.net 应用程序和侦听器 - 您可以通过使用不同的端口并从 httplistener 提供 clientaccesspolicy.xml 来解决此问题。

但是,我认为查看 WCF Web 服务对您来说更有意义(您将 svc 添加到您的 asp.net 应用程序中)。这是一个示例

于 2009-03-14T17:04:37.490 回答
1

您可以使用http://www.fiddler2.com/fiddler2/之类的工具 来实际查看请求期间发生了什么......这可以为进一步调试提供一些帮助......

于 2009-03-14T23:42:38.703 回答
0

我现在使用 HTTP 处理程序进行通信。尽管我仍然想尝试一些 WCF,但它们似乎可以很好地满足我的目的。

于 2009-03-14T18:54:10.690 回答