Examples of RemoteLookupFailureException


Examples of org.springframework.remoting.RemoteLookupFailureException

    Object stub = null;
    try {
      stub = getStub();
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("JNDI lookup for RMI service [" + getJndiName() + "] failed", ex);
    }
    try {
      return doInvoke(invocation, stub);
    }
    catch (RemoteConnectFailureException ex) {
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

      if (getServiceInterface() != null && !(stub instanceof RmiInvocationHandler)) {
        try {
          stub = PortableRemoteObject.narrow(stub, getServiceInterface());
        }
        catch (ClassCastException ex) {
          throw new RemoteLookupFailureException(
              "Could not narrow RMI stub to service interface [" + getServiceInterface().getName() + "]", ex);
        }
      }
      return stub;
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("JNDI lookup for RMI service [" + getJndiName() + "] failed", ex);
    }
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

    Object stub = null;
    try {
      stub = getStub();
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("JNDI lookup for RMI service [" + getJndiName() + "] failed", ex);
    }
    try {
      return doInvoke(invocation, stub);
    }
    catch (RemoteConnectFailureException ex) {
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

  public void prepare() throws RemoteLookupFailureException {
    try {
      this.hessianProxy = createHessianProxy(this.proxyFactory);
    }
    catch (MalformedURLException ex) {
      throw new RemoteLookupFailureException("Service URL [" + getServiceUrl() + "] is invalid", ex);
    }
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

  public void prepare() throws RemoteLookupFailureException {
    try {
      this.burlapProxy = createBurlapProxy(this.proxyFactory);
    }
    catch (MalformedURLException ex) {
      throw new RemoteLookupFailureException("Service URL [" + getServiceUrl() + "] is invalid", ex);
    }
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

      stubProperties.put(BindingProvider.SOAPACTION_URI_PROPERTY, soapActionUri);
    }
    stubProperties.putAll(getCustomProperties());
    if (!stubProperties.isEmpty()) {
      if (!(stub instanceof BindingProvider)) {
        throw new RemoteLookupFailureException("Port stub of class [" + stub.getClass().getName() +
            "] is not a customizable JAX-WS stub: it does not implement interface [javax.xml.ws.BindingProvider]");
      }
      ((BindingProvider) stub).getRequestContext().putAll(stubProperties);
    }
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

    if (this.homeInterface != null) {
      try {
        homeObject = PortableRemoteObject.narrow(homeObject, this.homeInterface);
      }
      catch (ClassCastException ex) {
        throw new RemoteLookupFailureException(
            "Could not narrow EJB home stub to home interface [" + this.homeInterface.getName() + "]", ex);
      }
    }
    return homeObject;
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

  protected Object refreshAndRetry(MethodInvocation invocation) throws Throwable {
    try {
      refreshHome();
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("Failed to locate remote EJB [" + getJndiName() + "]", ex);
    }
    return doInvoke(invocation);
  }
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

    try {
      ejb = getSessionBeanInstance();
      return RmiClientInterceptorUtils.invokeRemoteMethod(invocation, ejb);
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("Failed to locate remote EJB [" + getJndiName() + "]", ex);
    }
    catch (InvocationTargetException ex) {
      Throwable targetEx = ex.getTargetException();
      if (targetEx instanceof RemoteException) {
        RemoteException rex = (RemoteException) targetEx;
View Full Code Here

Examples of org.springframework.remoting.RemoteLookupFailureException

      if (getServiceInterface() != null && !(stub instanceof RmiInvocationHandler)) {
        try {
          stub = PortableRemoteObject.narrow(stub, getServiceInterface());
        }
        catch (ClassCastException ex) {
          throw new RemoteLookupFailureException(
              "Could not narrow RMI stub to service interface [" + getServiceInterface().getName() + "]", ex);
        }
      }
      return stub;
    }
    catch (NamingException ex) {
      throw new RemoteLookupFailureException("JNDI lookup for RMI service [" + getJndiName() + "] failed", ex);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.