java - EJB client not displayed on Weblogic -
hi have created ejb 3.0 app , have exposed ejb webservice . have created locale , remote interface same.
now port of server 7005 have deployed ejb blocked whereas through ssh proxy 17005 opened .
now when go weblogic console , open ejb , go client using port 17005 see wsdl of service not able see ejb client .
also when use wsdl through soap ui able run application whereas when create remote client of ejb getting "javax.naming.communicationexception [root exception java.net.connectexception: t3://10.129.196.209:17005" error
my ejb remote looks like
@remote public interface analyticnotificationwebservice { // public string executeandsave( ) throws exception; /** * method description * * * @param input * * @throws exception * @throws ioexception */ public void sendnotification(analyticsreportsschedulerdto analyticsreportsschedulerdto) throws exception; }
whereas bean code like
@stateless(name = "analyticsnotificationejbwebservices", mappedname = "trellis- analyticsnotificationejbwebservices") @soapbinding(parameterstyle = soapbinding.parameterstyle.bare) @webservice(name = "analyticnotificationejbwebservicebean", servicename = "analyticnotificationejbwebservicebean", targetnamespace = "http://xmlns.ac/cps/scheduler/quartz-scheduler/ebm", portname = "analyticnotificationservicebeanserviceport") public class analyticnotificationejbwebservicebean implements analyticnotificationwebservice, analyticnotificationwebservicelocal { @override @webmethod @oneway public void sendnotification( analyticsreportsschedulerdto analyticsreportsschedulerdto) throws exception{ ....... }
Comments
Post a Comment