なぜ myWebClient
がアクセスしていないのか、私は混乱していDownloadStringCompleted
ます。WebClient
で発生する可能性のある問題を読んだ後disposed
、ダウンロードを完了する前に. または、exceptions
中に捕らえられていないDownloadData
か、単にUri
アクセスできない.
私はこれらすべての問題をチェックしましたが、私WebClient
はまだアクセスしていませんDownloadStringCompleted
。
PMID WebClient クラス
/// <summary>
/// Construct a new curl
/// </summary>
/// <param name="pmid">pmid value</param>
public PMIDCurl(int pmid)
{
this.pmid = pmid;
StringBuilder pmid_url_string = new StringBuilder();
pmid_url_string.Append("http://www.ncbi.nlm.nih.gov/pubmed/").Append(pmid.ToString()).Append("?report=xml");
this.pmid_url = new Uri(pmid_url_string.ToString());
}
/// <summary>
/// Curl data from the PMID
/// </summary>
public void CurlPMID()
{
WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(HttpsCompleted);
client.DownloadData(this.pmid_url);
}
/// <summary>
/// Information to store in the class after the curl
/// </summary>
public string AbstractTitle { get; set; }
public string AbstractText { get; set; }
/// <summary>
/// Retrieve the data from an xml file about a PMID
/// </summary>
/// <param name="sender">System Generated</param>
/// <param name="e">System Generated</param>
private void HttpsCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
{
PMIDCrawler pmc = new PMIDCrawler(e.Result, "/pre/PubmedArticle/MedlineCitation/Article");
//iterate over each node in the file
foreach (XmlNode xmlNode in pmc.crawl)
{
this.AbstractTitle = xmlNode["ArticleTitle"].InnerText;
this.AbstractText = xmlNode["Abstract"]["AbstractText"].InnerText;
}
}
} //close httpsCompleted
PMID NodeList コンストラクター クラス
/// <summary>
/// List initialized by crawer
/// </summary>
public XmlNodeList crawl { get; set; }
/// <summary>
/// Constructor for the HTML to XML converter
/// </summary>
/// <param name="nHtml"></param>
/// <param name="nodeList"></param>
public PMIDCrawler(string nHtml, string nodeList)
{
//parse it from e
string html = HttpUtility.HtmlDecode(nHtml);
XDocument htmlDoc = XDocument.Parse(html, LoadOptions.None);
//convert the xdocument to an xmldocument
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(htmlDoc.CreateReader());
//load the xmlDocument into a nodelist
XmlElement xmlRoot = xmlDoc.DocumentElement;
this.crawl = xmlRoot.SelectNodes(nodeList);
}
DonwloadStringCompleted
なぜに到達しないのかについてのアイデアはありますか?