Hi,

I am using a recent jboss-head build (last week), JDK5.0 and EJB3.

I am testing jbossws for the first time using jsr-181. I've created an EJB3 
stateless bean with the corresponding annotations and its remote interface.

The service:

@WebService(name = "AdminService", targetNamespace = 
"http://this.test.com/service/AdminWebService";, serviceName = "AdminWebService")
  | @PortComponent(contextRoot="/adminws", urlPattern="/*")
  | @Remote(AdminWebServiceRemote.class)
  | @RemoteBinding(jndiBinding = "/ejb3/AdminEJB3EndpointInterface")
  | @Stateless
  | public class AdminWebService implements AdminWebServiceRemote
  | { 
  |     // some simple methods here
  | 
  |     @WebMethod
  |     public void method1() {
  |    // ...
  |     }
  | 
  | }

To test this I have a client and I generate the stubs using axis-wsdl2java. 
But, when I execute the test I get this axisFault:

Endpoint cannot handle requests in state: CREATED

Any ideas there?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3895665#3895665

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3895665


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to