I found a workaround that is sufficient for me.

The mailto-Link is created by Javascript:

function openMailto(body, subject){
  this.location.href="mailto:?body="; + body + "&subject=" + subject;
}


The JS is called on the onmousedown event on a commandbutton:

<h:commandButton id="..." immediate="true"
  onmousedown="openMailto('#{myBean.body}','#{myBean.subject}');"
  onclick="return false;" image="/images/image.gif"/>

Jan
-- 
View this message in context: 
http://www.nabble.com/mailto-outputLink-with-session-id-problem-tf1305834.html#a5489075
Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to