/////// Set the RDA properties
rda.LocalConnectionString="Data Source='"+LocalDatabaseSource+"'";
rda.InternetUrl=this.SqlCESvrAgentUrl;
rda.InternetLogin="";
rda.InternetPassword="";
try
{
string sqlceString="select * from PeopleTable";
rda.Pull("PeopleList",sqlceString,this.RemoteConnString,RdaTrackOption.TrackingOnWithIndexes);
}
catch (SqlCeException e)
{
MessageBox.Show(e.Message);
return false;
}
finally
{
rda.Dispose();
}
当运行到rda.Pull()时系统出现如下的错误:
a requst to send data to computer running IIS has failed,for more information,See HRESULT.[...]
请问,错在哪?望高手指点!