The Smart Client Container is an extended J2EE container for application clients. It features local session beans and smart ejb-refs with interceptors and a transport abstraction (RMI / HTTP).
Be the first to post a text review of Smart Client Container. Rate and review a project by clicking thumbs up or thumbs down in the right column.
The SOAPTransport has become usable. A sample app has been added to the repository: cvs update -dP soap The following client code transparently connects to a webservice. Context context = new InitialContext(); HelloHome helloHome = (HelloHome)context.lookup("ejb/Hello"); Hello hello = helloHome.create(); String result = hello.hello("everybody"); System.out.println("" + result); The demo has been tested with axis beta2 running against jboss.net. The webservice is actually a session bean, but that's not imperative. It should work with well known services like GoogleSearch, too. Holger Engels
Be the first person to add a text review.
Copyright © 2009 Geeknet, Inc. All rights reserved. Terms of Use
Thanks for your rating!
Would you also like to write a review?