Hi,

I think I have most of the jaxws ejb integration working now in
Geronimo. However, I've run into one problem that I need your help
with. It has to do with service endpoint interfaces (SEI). For JAX-WS
based web services the SEI is not required. For example, the following
web service is totally valid:

@WebService
@Stateless
public class Foo {

 public void sayHi() {
 }

}

And it has no DDs. The problem is that the current OpenEJB code
determines if it is a web service call by checking if there is a SEI
and if the method called is part of that interface. Obviously, in the
case where there is no SEI this check will fail (see
StatelessContainer.java:266).

I'm not sure what's the right solution for this problem so I would
appreciate any help I can get on this.

Thanks,
Jarek

Reply via email to