Pergunta

Eu estou tentando obter a minha primeira página de trabalho web ASP.NET no Windows usando Mono eo servidor XSP web.

Eu estou seguindo este rachaduras exemplo . A primeira parte de seu exemplo funciona muito bem com a última versão do mono. no entanto a parte web parece cair com o seguinte erro

'{Nome do Caminho} \ Index.aspx.cs' não é um caminho virtual válido.

Aqui está o completo Stack Trace:

System.Web.HttpException: 'C:\Projects\Mono\ASPExample\simpleapp\index.aspx.cs' is not a valid virtual path.  
   at System.Web.HttpRequest.MapPath (System.String virtualPath, System.String baseVirtualDir, Boolean allowCrossAppMapping) [0x00000]   
   at System.Web.HttpRequest.MapPath (System.String virtualPath) [0x00000]   
   at System.Web.Compilation.BuildManager.AddToCache (System.String virtualPath, System.Web.Compilation.BuildProvider bp) [0x00000]   
   at System.Web.Compilation.BuildManager.BuildAssembly (System.Web.VirtualPath virtualPath) [0x00000]   
   at System.Web.Compilation.BuildManager.GetCompiledType (System.String virtualPath) [0x00000]   
   at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath (System.String virtualPath, System.Type requiredBaseType) [0x00000]   
   at System.Web.UI.PageParser.GetCompiledPageInstance (System.String virtualPath, System.String inputFile, System.Web.HttpContext context) [0x00000]
   at System.Web.UI.PageHandlerFactory.GetHandler (System.Web.HttpContext context, System.String requestType, System.String url, System.String path) [0x00000]
   at System.Web.HttpApplication.GetHandler (System.Web.HttpContext context, System.String url, Boolean ignoreContextHandler) [0x00000]
   at System.Web.HttpApplication.GetHandler (System.Web.HttpContext context, System.String url) [0x00000]
   at System.Web.HttpApplication+<Pipeline>c__Iterator5.MoveNext () [0x00000] 

Eu queria saber se alguém sabia o que esse erro significava. Eu acho que eu estou procurando um especialista em mono, quem experimentou a versão do Windows.

Foi útil?

Solução 3

Ei, eu não sei como obter o "código por trás" de trabalho coisas, mas eu encontrei uma solução que eu estou feliz com ele. Eu pensei que eu ia postar-lo aqui para o benefício dos outros. Basicamente você mover o código por trás para a página principal e ele funciona muito bem apenas usando o

comando XSD e sem parâmetros.

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Data" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>Code behind Arrrrrrrrrrgh</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <script runat="server">
    private void Page_Load(Object sender, EventArgs e)
    {
       DisplayServerDetails();
       DisplayRequestDetails();

    }

    private void DisplayServerDetails()
      {
        serverName.Text = Environment.MachineName;
        operatingSystem.Text = Environment.OSVersion.Platform.ToString();
        operatingSystemVersion.Text = Environment.OSVersion.Version.ToString();
      }

      private void DisplayRequestDetails()
      {
         requestedPage.Text = Request.Url.AbsolutePath;
         requestIP.Text = Request.UserHostAddress;
         requestUA.Text = Request.UserAgent;
      }

    </script>

  </head>

  <body>
    <form method="post" runat="server">
         <table width="450px" border="1px">
            <tr>
               <td colspan="2"><strong>Server Details</strong></td>
            </tr>
            <tr>
               <td>Server Name:</td>
               <td>
                  <asp:Label id="serverName" runat="server"></asp:Label></td>
            </tr>
            <tr>
               <td>Operating System:</td>
               <td>
                  <asp:Label id="operatingSystem" runat="server"></asp:Label>
               </td>
            </tr>
            <tr>
               <td>Operating System Version:</td>
               <td>
                  <asp:Label id="operatingSystemVersion" runat="server">
                  </asp:Label>
               </td>
            </tr>
         </table>
         <br>
         <table width="450px" border="1px">
            <tr>
               <td colspan="2"><strong>Request Details</strong></td>
            </tr>
            <tr>
               <td>Page Requested:</td>
               <td>
                  <asp:Label id="requestedPage" runat="server"></asp:Label>
               </td>
            </tr>
            <tr>
               <td>Request From:</td>
               <td>
                  <asp:Label id="requestIP" runat="server"></asp:Label>
               </td>
            </tr>
            <tr>
               <td>User Agent:</td>
               <td>
                  <asp:Label id="requestUA" runat="server"></asp:Label>
               </td>
            </tr>
         </table>
      </form>
  </body>

Outras dicas

Você pode colar a linha de comando que você está usando para iniciar xsp? Se você está apenas executando um único webapp algo como isso não é realmente necessário, e poderia ser a origem do problema:

xsp --Aplicações / SimpleWebApp: C: \ Projects \ Mono \ ASPExample \

apenas cd para o diretório e executar xsp ASPExample sem parâmetros.

O comando eu estava usando era o seguinte:

@echo off
call C:\PROGRA~1\MONO-2~1.1\bin\setmonopath.bat
xsp --root . --port 8088 --applications /:.

Eu tentei apenas correr XSP sem parâmetros e eu recebo o seguinte resultado:

Listening xsp2 no endereço: 0.0.0.0 diretório raiz: C: \ Projects \ Mono \ ASPExample Listening na porta: 8080 (não segura) Hit retorno para parar o servidor.

Quando eu tentar navegar para o projeto no

http: // localhost: 8080

Eu obter o mesmo resultado de antes Ou seja gemendo que o arquivo cs não é um caminho virtual válido.

Estou pensando que o atributo src da página ASPX é o problema. Talvez ele foi atualizado na nova versão do Mono. Vou olhar para isso.

Obrigado pela sua resposta BTW.

Dave

Você já tentou correr xsp2 em vez de xsp?

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top