Hello and sorry for the long delay in answer.
I tested the toolkit with BEA WLS 9.2 and it seems that at least the simple example (toolkit 5.3.0RC6) application (see code below) works nicely with it, when it is deployed as a war file in the server.
1
2import com.itmill.toolkit.Application;
3import com.itmill.toolkit.ui.Label;
4import com.itmill.toolkit.ui.Layout;
5import com.itmill.toolkit.ui.Window;
6public class TestApplication extends Application {
7 private Layout mainLo;
8 public void init() {
9 Window mainw = new Window();
10 this.setMainWindow(mainw);
11 mainLo = mainw.getLayout();
12 mainLo.addComponent(new Label("QWERTY"));
13 }
14}
Here is also the simplified procedure how I tested my example application:
1. I created a 'Dynamic web application project' in eclipse with WLS 9.2 target runtime.
2. Added toolkit jar into lib folder and extracted the 'ITMILL' folder from the jar into WebContent folder of the project
3. Then I, configured the web.xml and exported the project as war file with WLS 9.2 runtime
4. Finally, deployed the war file into WLS 9.2 using the administration console, and started the application.
Could you provide more information of your test case? Have you e.g. tried some simple test application (like above) with your WLS 9.2? How you did the deployment of your application?