I'm trying to forward from another web application where a session is centrally located in a stateful entity bean into an ice/seam app. the problem i'm having is i need to jump directly into a working form based on information in that session.
is there a way to do an onload or something along those lines into my action based classes that will return my session based form - all i've been able to do so far is put an intermediate page in between with a commandButton to an ice action method.
Thanks for the response, i was going to a seam action. turned out i figured out the problem yesterday. it was mainly around me trying to do a body onload rather than defining it ouside of the body tag. after doing that, i was able to use javascript to call the button submitting the form.
if there is a more elegant solution to this, i would like to hear it as it seems a little hokey the way i have implemented it.