HttpWebRequest and Tomcat
First, sorry for my poor english. In tomcat each request open a Session on my web application.
So, this session remains opened for 30 minutes.
Can I use开发者_JS百科 a single Session (via C#) to perform my requests?
Hope I'm correct on interpreting your question.
Generally, sessions are associated with a particular user with an HTTP cookie. So to reuse a session all you need is to send back the cookie Tomcat sent you.
精彩评论