What versions of GWT does Seam work with?

I recently tried to combine SEAM and GWT in a project but was unable to use GWT 1.7.1 and Seam 2.1.2 CR2 and Seam 2.2.0 GA ( if you have any ideas why - here's the post ).

I was wondering if you have any impressions which versions of GWT work with which version of SEAM out of the box? With workarounds?

thank! (PS: for Seam <2.1.0 and GWT 1.5 I found this article describing a workaround )

+2


source to share


1 answer


What I have figured out so far:



The problem lies somewhere in the GWTAdapter that Seam 2.x provides. Workaround: Don't rely on the Seam resource servlet (as described here ), but expose your GWT servlets like any other servlet. This means that you cannot benefit from all Seam functionality inside the servlet, but you can still access your Seam components by fetching them through the Seam context.

+2


source







All Articles