请求数据发送到运行的IIS计算机请求失败

我现在开发PDA我配置好后..在程序中却说"请求数据发送到运行的IIS计算机请求失败"
程序如下:
private void GetDownDataBase()
{
string localDatabase=@"\chun.sdf";
string localconntiomstring = "Data Source=" + localDatabase;
string remoteConnectionString = @"Provider=sqloledb;" +
"Data Source=chun;Initial Catalog=chun;" +
"Integrated Security=SSPI;";
string[] tables = new string[] { "student", "scouse" };

if (File.Exists(localDatabase))
File.Delete(localDatabase);
SqlCeEngine engine = new SqlCeEngine(localconntiomstring);
engine.CreateDatabase();

using (SqlCeRemoteDataAccess rda = new SqlCeRemoteDataAccess())
{
rda.InternetUrl = "http://chun/server/sscesa20.dll";
rda.LocalConnectionString = localconntiomstring;

foreach (string table in tables)
{
try
{
rda.Pull(table, "SELECT* FROM [" + table + "]", remoteConnectionString, RdaTrackOption.TrackingOffWithIndexes, "ErrorTable");
}
catch (SqlCeException ex)
{
MessageBox.Show(ex.Message + ex.InnerException,"天伦软件提示!" );

}
}
}

}
在IE中输入http://chun/server/sscesa20.dll或http://192.168.0.102/server/sscesa20.dll测试是正确的..请高手指点..... chun是我的计算机名.192.168.0.102是我的IP地址:
我现在已经搞了好久了...都没有发现问题...
QQ:112223304谢谢...... E-MAIL;chunming8302@126.com
记住该记住的,忘记该忘记的,改变能改变的,接受不能改变的!
原文地址:https://www.cnblogs.com/yuanermen/p/491154.html