启动服务器时Padarn OpenNetCF System.Argument.Exception

时间:2015-02-02 10:32:48

标签: c# server opennetcf padarn

我得到了一个" OpenNetCf - 参数异常"当我尝试在桌面上启动服务器时(Windows 8.1)

Srvr = new OpenNETCF.Web.Server.WebServer();
   Srvr.Start();

但是,我看不到配置文件的问题。任何建议都会非常感激。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
        <section name="WebServer" type="OpenNETCF.Web.Configuration.ServerConfigurationHandler, opennetcf.web"/>
        <section name ="httpRuntime" type="OpenNETCF.Web.Configuration.HttpRuntimeConfigurationHandler, opennetcf.web"/>
    </configSections>
    <WebServer
        UseSsl="false" 
        LocalIP="0.0.0.0"
        DefaultPort="80"
        MaxConnections="20"
        DocumentRoot=".\Inetpub\"
        Logging="false">
        <DefaultDocuments>
            <Document>Login.aspx</Document>
        </DefaultDocuments>
        <VirtualDirectories />
        <Cookies />
        <Caching />
    </WebServer>
    <httpRuntime
        maxRequestLength="4096"
        requestLengthDiskThreshold="256" />
</configuration>

1 个答案:

答案 0 :(得分:0)

您很可能尝试使用二进制文件的Compact Framework版本。虽然Padarn代码库适用于Compact Framework,Full Framework和Mono,但编译的程序集是不同的,您必须根据运行时环境使用适当的程序集。