Vaadin on Oracle Weblogic portal

Hello,

does anybody know how to import vaadin portlets to Oracle BEA Weblogic portal? I was searching the forums but could’t find anything useful…

Well, I guess you are the first one to try this :slight_smile:

Even no general instructions for Weblogic maybe you can just try it out. Vaadin includes a portlet 2.0 adapter that you should use. If you encounter any specific problems we can try help you with those.

Just pack your application as normal portlet war with Vaadin in WEB-INF/lib, make sure you have the portlet.xml configured:

<portlet-class>com.vaadin.terminal.gwt.server.ApplicationPortlet2</portlet-class>
<init-param>
	<name>application</name>
	<value>org.vaadin.sample.YourVaadinApplicationHere</value>
</init-param>

Also see thread:
http://vaadin.com/forum/-/message_boards/message/44937

Is there any traction on getting it into weblogic portal ?