3 Replies Latest reply on Mar 15, 2006 9:41 AM by fss

    No reference get from JSP client while accessing webservices

    prasadj

      I deployed the webservices in Jboss 4.0.2

      I use JSP client program to access it using the following code in public void jspInit() method

      cntxt = new InitialContext();
      ref= cntxt.lookup("java:comp/env/Example");
      accHome = (ExampleHome)PortableRemoteObject.narrow(ref,ExampleHome.class);

      It returns null for accHome and ref.

      How to access the deployed webservices from JSP client program?