org.omg.CORBA.Context Java Examples
The following examples show how to use
org.omg.CORBA.Context.
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 File: CorbaConduit.java From cxf with Apache License 2.0 | 6 votes |
public Request getRequest(CorbaMessage message, String opName, org.omg.CORBA.NVList nvlist, org.omg.CORBA.NamedValue ret, org.omg.CORBA.ExceptionList exList) throws Exception { Request request = null; if (orb == null) { prepareOrb(); } ContextList ctxList = orb.create_context_list(); Context ctx = null; try { ctx = orb.get_default_context(); } catch (Exception ex) { //ignore? } org.omg.CORBA.Object targetObj = (org.omg.CORBA.Object)message.get(CorbaConstants.CORBA_ENDPOINT_OBJECT); if (targetObj != null) { request = targetObj._create_request(ctx, opName, nvlist, ret, exList, ctxList); } return request; }
Example #2
Source File: CorbaClientDelegateImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #3
Source File: CorbaDSIServantTest.java From cxf with Apache License 2.0 | 5 votes |
@Test public void testInvoke() throws Exception { CorbaDestination dest = new TestUtils().getComplexTypesTestDestination(); CorbaDSIServant dsiServant = new CorbaDSIServant(); dsiServant.init(orb, null, dest, null); ServerRequest request = new ServerRequest() { public String operation() { return "greetMe"; } public Context ctx() { return null; } }; MessageObserver incomingObserver = new TestObserver(); dsiServant.setObserver(incomingObserver); Map<String, QName> map = new HashMap<>(2); map.put("greetMe", new QName("greetMe")); dsiServant.setOperationMapping(map); dsiServant.invoke(request); }
Example #4
Source File: CorbaClientDelegateImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #5
Source File: CorbaClientDelegateImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, null, null); }
Example #6
Source File: ServerRequestImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
public Context ctx() { if ( !_paramsCalled || _resultSet || _exceptionSet ) throw _wrapper.contextCalledOutOfOrder() ; throw _wrapper.contextNotImplemented() ; }
Example #7
Source File: ServerRequestImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public Context ctx() { if ( !_paramsCalled || _resultSet || _exceptionSet ) throw _wrapper.contextCalledOutOfOrder() ; throw _wrapper.contextNotImplemented() ; }
Example #8
Source File: CorbaClientDelegateImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #9
Source File: ServerRequestImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
public Context ctx() { if ( !_paramsCalled || _resultSet || _exceptionSet ) throw _wrapper.contextCalledOutOfOrder() ; throw _wrapper.contextNotImplemented() ; }
Example #10
Source File: CorbaClientDelegateImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, null, null); }
Example #11
Source File: CorbaClientDelegateImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #12
Source File: CorbaClientDelegateImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #13
Source File: CorbaClientDelegateImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, null, null); }
Example #14
Source File: CorbaClientDelegateImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public Request create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return new RequestImpl(orb, obj, ctx, operation, arg_list, result, exclist, ctxlist); }
Example #15
Source File: ServerRequestImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
public Context ctx() { if ( !_paramsCalled || _resultSet || _exceptionSet ) throw _wrapper.contextCalledOutOfOrder() ; throw _wrapper.contextNotImplemented() ; }
Example #16
Source File: ProxyInputStream.java From hottub with GNU General Public License v2.0 | 4 votes |
@Override public Context read_Context() { return in.read_Context(); }
Example #17
Source File: ContextImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public Context parent() { throw wrapper.contextNotImplemented() ; }
Example #18
Source File: ClientRequestInfoImpl.java From JDKSourceCode1.8 with MIT License | 4 votes |
/** * See RequestInfoImpl for javadoc. */ public String[] operation_context (){ checkAccess( MID_OPERATION_CONTEXT ); if( cachedOperationContext == null ) { if( request == null ) { throw stdWrapper.piOperationNotSupported4() ; } // Get the list of contexts from DII request data, If there are // no contexts then this method will return null. Context ctx = request.ctx( ); // _REVISIT_ The API for get_values is not compliant with the spec, // Revisit this code once it's fixed. // _REVISIT_ Our ORB doesn't support Operation Context, This code // will not be excerscised until it's supported. // The first parameter in get_values is the start_scope which // if blank makes it as a global scope. // The second parameter is op_flags which is set to RESTRICT_SCOPE // As there is only one defined in the spec. // The Third param is the pattern which is '*' requiring it to // get all the contexts. NVList nvList = ctx.get_values( "", CTX_RESTRICT_SCOPE.value,"*" ); String[] context = new String[(nvList.count() * 2) ]; if( ( nvList != null ) &&( nvList.count() != 0 ) ) { // The String[] array will contain Name and Value for each // context and hence double the size in the array. int index = 0; for( int i = 0; i < nvList.count(); i++ ) { NamedValue nv; try { nv = nvList.item( i ); } catch (Exception e ) { return (String[]) null; } context[index] = nv.name(); index++; context[index] = nv.value().extract_string(); index++; } } cachedOperationContext = context; } // Good citizen: In the interest of efficiency, we assume // interceptors will be "good citizens" in that they will not // modify the contents of the String[] array. return cachedOperationContext; }
Example #19
Source File: StubWrapper.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public Request _create_request( Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return object._create_request( ctx, operation, arg_list, result, exclist, ctxlist ) ; }
Example #20
Source File: ContextImpl.java From JDKSourceCode1.8 with MIT License | 4 votes |
public Context parent() { throw wrapper.contextNotImplemented() ; }
Example #21
Source File: ContextImpl.java From JDKSourceCode1.8 with MIT License | 4 votes |
public Context create_child(String name) { throw wrapper.contextNotImplemented() ; }
Example #22
Source File: StubWrapper.java From JDKSourceCode1.8 with MIT License | 4 votes |
public Request _create_request( Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) { return object._create_request( ctx, operation, arg_list, result, exclist, ctxlist ) ; }
Example #23
Source File: ContextImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public Context parent() { throw wrapper.contextNotImplemented() ; }
Example #24
Source File: ClientRequestInfoImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * See RequestInfoImpl for javadoc. */ public String[] operation_context (){ checkAccess( MID_OPERATION_CONTEXT ); if( cachedOperationContext == null ) { if( request == null ) { throw stdWrapper.piOperationNotSupported4() ; } // Get the list of contexts from DII request data, If there are // no contexts then this method will return null. Context ctx = request.ctx( ); // _REVISIT_ The API for get_values is not compliant with the spec, // Revisit this code once it's fixed. // _REVISIT_ Our ORB doesn't support Operation Context, This code // will not be excerscised until it's supported. // The first parameter in get_values is the start_scope which // if blank makes it as a global scope. // The second parameter is op_flags which is set to RESTRICT_SCOPE // As there is only one defined in the spec. // The Third param is the pattern which is '*' requiring it to // get all the contexts. NVList nvList = ctx.get_values( "", CTX_RESTRICT_SCOPE.value,"*" ); String[] context = new String[(nvList.count() * 2) ]; if( ( nvList != null ) &&( nvList.count() != 0 ) ) { // The String[] array will contain Name and Value for each // context and hence double the size in the array. int index = 0; for( int i = 0; i < nvList.count(); i++ ) { NamedValue nv; try { nv = nvList.item( i ); } catch (Exception e ) { return (String[]) null; } context[index] = nv.name(); index++; context[index] = nv.value().extract_string(); index++; } } cachedOperationContext = context; } // Good citizen: In the interest of efficiency, we assume // interceptors will be "good citizens" in that they will not // modify the contents of the String[] array. return cachedOperationContext; }
Example #25
Source File: ContextImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public Context create_child(String name) { throw wrapper.contextNotImplemented() ; }
Example #26
Source File: RequestImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public synchronized Context ctx() { if (_ctx == null) _ctx = new ContextImpl(_orb); return _ctx; }
Example #27
Source File: RequestImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public synchronized void ctx(Context newCtx) { _ctx = newCtx; }
Example #28
Source File: RequestImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public synchronized Context ctx() { if (_ctx == null) _ctx = new ContextImpl(_orb); return _ctx; }
Example #29
Source File: ContextImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public ContextImpl(Context parent) { throw wrapper.contextNotImplemented() ; }
Example #30
Source File: ProxyInputStream.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
@Override public Context read_Context() { return in.read_Context(); }