出于安全原因,我的应用程序通过流显示网页。
我有这段代码:
SolrCore Initialization Failures
opt/solr/example/exampledocs/*.xml: org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: /var/solr/data/opt/solr/example/exampledocs/*.xml/data
这会通过流显示网页,一切都很好,所以,我通过POST发送数据,例如,简单登录:
var client = new HttpClient();
var response = await client.GetAsync("http://www.webpage.com");
Stream products = await response.Content.ReadAsStreamAsync();
return File(products, "text/html");
一切都很好,我可以登录,但问题是当我想访问另一个页面时,它会显示我没有活动会话的消息。
那么,我如何使用HttpClient保持活动会话?有什么方法或什么的吗?
谢谢!