HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML v3 Archived Forums (Read Only) › PD4ML Tips & Tricks › Convert ASP.Net page with Java Applet forms authentication › Re: Re: Convert ASP.Net page with Java Applet forms authentication
September 12, 2012 at 07:54
#29113
You need to determine how the ASP.Net application propagates session ID. It could be a session ID embedded to URL or (most probably) a cookie.
Cookie can be added to HTTP request this way:
pd4ml.setCookie( “JSESSIONID”, cookieValue );
where cookieValue is something like that: “9034657927465;path=/”
JSESSIONID keyword is specific for Java, .Net uses anything else.