Java Code Examples for javax.rmi.PortableRemoteObject
The following examples show how to use
javax.rmi.PortableRemoteObject. These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: jdk1.8-source-analysis Source File: IIOPProxyImpl.java License: Apache License 2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 2
Source Project: dragonwell8_jdk Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 3
Source Project: jdk8u-jdk Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 4
Source Project: jdk8u60 Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 5
Source Project: JDKSourceCode1.8 Source File: IIOPProxyImpl.java License: MIT License | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 6
Source Project: openjdk-jdk8u Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 7
Source Project: openjdk-jdk8u-backup Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 8
Source Project: jdk8u-jdk Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 9
Source Project: hottub Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 10
Source Project: gemfirexd-oss Source File: Client.java License: Apache License 2.0 | 6 votes |
private static CMXATest lookupCMXABean(InitialContext ictx, String jndiName) { try { Object home = ictx.lookup(jndiName); CMXATestHome rhome = (CMXATestHome) PortableRemoteObject.narrow( home, CMXATestHome.class); CMXATest bean = (CMXATest) PortableRemoteObject.narrow( rhome.create(), CMXATest.class); return bean; } catch (NamingException ne) { log("The client was unable to lookup the EJBHome. Please make sure "); log("that you have deployed the ejb with the JNDI name " + jndiName + " on the WebLogic server at " + url); } catch (CreateException ce) { log("Creation failed: " + ce); } catch (RemoteException ex) { log("Creation failed: " + ex); } return null; }
Example 11
Source Project: gemfirexd-oss Source File: Client.java License: Apache License 2.0 | 6 votes |
private static BMXATest lookupBMXABean(InitialContext ictx, String jndiName) { try { Object home = ictx.lookup(jndiName); BMXATestHome rhome = (BMXATestHome) PortableRemoteObject.narrow( home, BMXATestHome.class); BMXATest bean = (BMXATest) PortableRemoteObject.narrow( rhome.create(), BMXATest.class); return bean; } catch (NamingException ne) { log("The client was unable to lookup the EJBHome. Please make sure "); log("that you have deployed the ejb with the JNDI name " + jndiName + " on the WebLogic server at " + url); } catch (CreateException ce) { log("Creation failed: " + ce); } catch (RemoteException ex) { log("Creation failed: " + ex); } return null; }
Example 12
Source Project: gemfirexd-oss Source File: Client.java License: Apache License 2.0 | 6 votes |
private static CMXATest lookupCMXABean(InitialContext ictx, String jndiName) { try { Object home = ictx.lookup(jndiName); CMXATestHome rhome = (CMXATestHome) PortableRemoteObject.narrow( home, CMXATestHome.class); CMXATest bean = (CMXATest) PortableRemoteObject.narrow( rhome.create(), CMXATest.class); return bean; } catch (NamingException ne) { log("The client was unable to lookup the EJBHome. Please make sure "); log("that you have deployed the ejb with the JNDI name " + jndiName + " on the WebLogic server at " + url); } catch (CreateException ce) { log("Creation failed: " + ce); } catch (RemoteException ex) { log("Creation failed: " + ex); } return null; }
Example 13
Source Project: openjdk-8 Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 14
Source Project: jdk8u_jdk Source File: IIOPProxyImpl.java License: GNU General Public License v2.0 | 6 votes |
@Override public Remote toStub(final Remote obj) throws NoSuchObjectException { if (System.getSecurityManager() == null) { return PortableRemoteObject.toStub(obj); } else { try { return AccessController.doPrivileged(new PrivilegedExceptionAction<Remote>() { @Override public Remote run() throws Exception { return PortableRemoteObject.toStub(obj); } }, STUB_ACC); } catch (PrivilegedActionException e) { if (e.getException() instanceof NoSuchObjectException) { throw (NoSuchObjectException)e.getException(); } throw new RuntimeException("Unexpected exception type", e.getException()); } } }
Example 15
Source Project: jdk1.8-source-analysis Source File: Utility.java License: Apache License 2.0 | 5 votes |
/** * Read an object reference from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readObjectAndNarrow(InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_Object(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 16
Source Project: jdk1.8-source-analysis Source File: Utility.java License: Apache License 2.0 | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 17
Source Project: TencentKona-8 Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 18
Source Project: cxf Source File: EJBEndpoint.java License: Apache License 2.0 | 5 votes |
public Server publish() throws Exception { jndiContext = new InitialContext(); Object obj = jndiContext.lookup(config.getJNDIName()); ejbHome = (EJBHome) PortableRemoteObject.narrow(obj, EJBHome.class); Class<?> interfaceClass = Class.forName(getServiceClassName()); boolean isJaxws = isJaxWsServiceInterface(interfaceClass); ServerFactoryBean factory = isJaxws ? new JaxWsServerFactoryBean() : new ServerFactoryBean(); factory.setServiceClass(interfaceClass); if (config.getWsdlURL() != null) { factory.getServiceFactory().setWsdlURL(config.getWsdlURL()); } factory.setInvoker(new EJBInvoker(ejbHome)); String baseAddress = isNotNull(getEjbServantBaseURL()) ? getEjbServantBaseURL() : getDefaultEJBServantBaseURL(); String address = baseAddress + "/" + config.getJNDIName(); factory.setAddress(address); if (address.length() >= 5 && HTTPS_PREFIX.equalsIgnoreCase(address.substring(0, 5))) { throw new UnsupportedOperationException("EJBEndpoint creation by https protocol is unsupported"); } if (getWorkManager() != null) { setWorkManagerThreadPoolToJetty(factory.getBus(), baseAddress); } Server server = factory.create(); LOG.info("Published EJB Endpoint of [" + config.getJNDIName() + "] at [" + address + "]"); return server; }
Example 19
Source Project: jdk8u60 Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an object reference from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readObjectAndNarrow(InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_Object(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 20
Source Project: jdk8u60 Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 21
Source Project: JDKSourceCode1.8 Source File: Utility.java License: MIT License | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 22
Source Project: openjdk-jdk8u Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an object reference from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readObjectAndNarrow(InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_Object(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 23
Source Project: openjdk-jdk8u Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 24
Source Project: netbeans Source File: testCallEJB2InSB_TestingSessionBean.java License: Apache License 2.0 | 5 votes |
private TestingEntityRemoteHome lookupMyTestingEntityBean() { try { Context c = new InitialContext(); Object remote = c.lookup("java:comp/env/ejb/MyTestingEntityBean"); TestingEntityRemoteHome rv = (TestingEntityRemoteHome) PortableRemoteObject.narrow(remote, TestingEntityRemoteHome.class); return rv; } catch (NamingException ne) { Logger.getLogger(getClass().getName()).log(Level.SEVERE, "exception caught", ne); throw new RuntimeException(ne); } }
Example 25
Source Project: lams Source File: JndiRmiServiceExporter.java License: GNU General Public License v2.0 | 5 votes |
/** * Initialize this service exporter, binding the specified service to JNDI. * @throws NamingException if service binding failed * @throws RemoteException if service export failed */ public void prepare() throws NamingException, RemoteException { if (this.jndiName == null) { throw new IllegalArgumentException("Property 'jndiName' is required"); } // Initialize and cache exported object. this.exportedObject = getObjectToExport(); PortableRemoteObject.exportObject(this.exportedObject); rebind(); }
Example 26
Source Project: lams Source File: JndiRmiServiceExporter.java License: GNU General Public License v2.0 | 5 votes |
/** * Unbind the RMI service from JNDI on bean factory shutdown. */ @Override public void destroy() throws NamingException, NoSuchObjectException { if (logger.isInfoEnabled()) { logger.info("Unbinding RMI service from JNDI location [" + this.jndiName + "]"); } this.jndiTemplate.unbind(this.jndiName); PortableRemoteObject.unexportObject(this.exportedObject); }
Example 27
Source Project: lams Source File: AbstractRemoteSlsbInvokerInterceptor.java License: GNU General Public License v2.0 | 5 votes |
/** * This overridden lookup implementation performs a narrow operation * after the JNDI lookup, provided that a home interface is specified. * @see #setHomeInterface * @see javax.rmi.PortableRemoteObject#narrow */ @Override protected Object lookup() throws NamingException { Object homeObject = super.lookup(); 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; }
Example 28
Source Project: openjdk-jdk8u-backup Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an object reference from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readObjectAndNarrow(InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_Object(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 29
Source Project: openjdk-jdk8u-backup Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an abstract interface type from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readAbstractAndNarrow( org.omg.CORBA_2_3.portable.InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_abstract_interface(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }
Example 30
Source Project: openjdk-jdk9 Source File: Utility.java License: GNU General Public License v2.0 | 5 votes |
/** * Read an object reference from the input stream and narrow * it to the desired type. * @param in the stream to read from. * @throws ClassCastException if narrowFrom cannot be cast to narrowTo. */ public static Object readObjectAndNarrow(InputStream in, Class narrowTo) throws ClassCastException { Object result = in.read_Object(); if (result != null) return PortableRemoteObject.narrow(result, narrowTo); else return null; }