Community
Participate
Working Groups
Commit this fix to HEAD for WTP 3.3 also +++ This bug was initially created as a clone of Bug #335246 +++ To reproduce this problem, generate an axis web service client into a "JPA Project" with the slider set to "start". The wizard will try to add the project to the server. JPA Projects have the Utility Module facet. There is no web or ejb module so there is nothing that can be "run" on the server. In the org.eclipse.jst.ws.internal.consumption.command.common.AddModuleToServerCommand class we have a check like below: if (!J2EEUtils.isJavaComponent(iproject)) The intention is to not add utility modules to the server. The problem is that if the module is associated with an EAR project this command is doing the isJavaComponent check on the EAR project so it always returns "false".
Checked into HEAD for WTP 3.3
This is a safe fix. We should get this in for 3.3 M6.