Java Code Examples for com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage
The following examples show how to use
com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage. 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: hottub Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 6 votes |
protected void runInterceptors(CorbaMessageMediator messageMediator, ReplyMessage reply) { if( messageMediator.executePIInResponseConstructor() ) { // Invoke server request ending interception points (send_*): // Note: this may end up with a SystemException or an internal // Runtime ForwardRequest ((ORB)messageMediator.getBroker()).getPIHandler(). invokeServerPIEndingPoint( reply ); // Note this will be executed even if a ForwardRequest or // SystemException is thrown by a Portable Interceptors ending // point since we end up in this constructor again anyway. ((ORB)messageMediator.getBroker()).getPIHandler(). cleanupServerPIRequest(); // See createSystemExceptionResponse for why this is necesary. messageMediator.setExecutePIInResponseConstructor(false); } }
Example 2
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 6 votes |
protected void runInterceptors(CorbaMessageMediator messageMediator, ReplyMessage reply) { if( messageMediator.executePIInResponseConstructor() ) { // Invoke server request ending interception points (send_*): // Note: this may end up with a SystemException or an internal // Runtime ForwardRequest ((ORB)messageMediator.getBroker()).getPIHandler(). invokeServerPIEndingPoint( reply ); // Note this will be executed even if a ForwardRequest or // SystemException is thrown by a Portable Interceptors ending // point since we end up in this constructor again anyway. ((ORB)messageMediator.getBroker()).getPIHandler(). cleanupServerPIRequest(); // See createSystemExceptionResponse for why this is necesary. messageMediator.setExecutePIInResponseConstructor(false); } }
Example 3
Source Project: openjdk-8-source Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 6 votes |
public void handleInput(ReplyMessage_1_0 header) throws IOException { try { try { if (transportDebug()) dprint(".REPLY 1.0->: " + header); messageHeader = replyHeader = (ReplyMessage) header; setInputObject(); // REVISIT: this should be done by waiting thread. inputObject.unmarshalHeader(); signalResponseReceived(); } finally{ setWorkThenReadOrResumeSelect(header); } } catch (Throwable t) { if (transportDebug())dprint(".REPLY 1.0: !!ERROR!!: " + header, t); // Mask the exception from thread.; } finally { if (transportDebug()) dprint(".REPLY 1.0<-: " + header); } }
Example 4
Source Project: openjdk-jdk8u-backup Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 6 votes |
public void handleInput(ReplyMessage_1_0 header) throws IOException { try { try { if (transportDebug()) dprint(".REPLY 1.0->: " + header); messageHeader = replyHeader = (ReplyMessage) header; setInputObject(); // REVISIT: this should be done by waiting thread. inputObject.unmarshalHeader(); signalResponseReceived(); } finally{ setWorkThenReadOrResumeSelect(header); } } catch (Throwable t) { if (transportDebug())dprint(".REPLY 1.0: !!ERROR!!: " + header, t); // Mask the exception from thread.; } finally { if (transportDebug()) dprint(".REPLY 1.0<-: " + header); } }
Example 5
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 5 votes |
public void handleInput(ReplyMessage_1_2 header) throws IOException { try { try { messageHeader = replyHeader = (ReplyMessage) header; // We know that the request ID is in the first fragment header.unmarshalRequestID(dispatchByteBuffer); if (transportDebug()) { dprint(".REPLY 1.2->: id/" + + header.getRequestId() + ": more?: " + header.moreFragmentsToFollow() + ": " + header); } setInputObject(); signalResponseReceived(); } finally { setWorkThenReadOrResumeSelect(header); } } catch (Throwable t) { if (transportDebug()) dprint(".REPLY 1.2: id/" + header.getRequestId() + ": !!ERROR!!: " + header, t); // Mask the exception from thread.; } finally { if (transportDebug()) dprint(".REPLY 1.2<-: id/" + header.getRequestId() + ": " + header); } }
Example 6
Source Project: openjdk-jdk9 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public CorbaMessageMediator createLocationForward( CorbaMessageMediator messageMediator, IOR ior, ServiceContexts svc) { ReplyMessage reply = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.LOCATION_FORWARD, getServiceContextsForReply(messageMediator, svc), ior); return createResponseHelper(messageMediator, reply, ior); }
Example 7
Source Project: openjdk-jdk8u-backup Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 5 votes |
public void cleanupClientPIRequest() { if( !hasClientInterceptors ) return; if( !isClientPIEnabledForThisThread() ) return; ClientRequestInfoImpl info = peekClientRequestInfoImplStack(); RetryType rt = info.getRetryRequest() ; // fix for 6763340 if (!rt.equals( RetryType.BEFORE_RESPONSE )) { // If the replyStatus has not yet been set, this is an indication // that the ORB threw an exception before we had a chance to // invoke the client interceptor ending points. // // _REVISIT_ We cannot handle any exceptions or ForwardRequests // flagged by the ending points here because there is no way // to gracefully handle this in any of the calling code. // This is a rare corner case, so we will ignore this for now. short replyStatus = info.getReplyStatus(); if (replyStatus == info.UNINITIALIZED ) { invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, wrapper.unknownRequestInvoke( CompletionStatus.COMPLETED_MAYBE ) ) ; } } // Decrement entry count, and if it is zero, pop it from the stack. info.decrementEntryCount(); // fix for 6763340, and probably other cases (non-recursive retry) if (info.getEntryCount() == 0 && !info.getRetryRequest().isRetry()) { // RequestInfoStack<ClientRequestInfoImpl> infoStack = // threadLocalClientRequestInfoStack.get(); RequestInfoStack infoStack = (RequestInfoStack)threadLocalClientRequestInfoStack.get(); infoStack.pop(); printPop(); } }
Example 8
Source Project: jdk1.8-source-analysis Source File: BufferManagerWriteStream.java License: Apache License 2.0 | 5 votes |
public void overflow (ByteBufferWithInfo bbwi) { // Set the fragment's moreFragments field to true MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT); try { sendFragment(false); } catch(SystemException se){ orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, se); throw se; } // Reuse the old buffer // REVISIT - need to account for case when needed > available // even after fragmenting. This is the large array case, so // the caller should retry when it runs out of space. bbwi.position(0); bbwi.buflen = bbwi.byteBuffer.limit(); bbwi.fragmented = true; // Now we must marshal in the fragment header/GIOP header // REVISIT - we can optimize this by not creating the fragment message // each time. FragmentMessage header = ((CDROutputObject)outputObject).getMessageHeader().createFragmentMessage(); header.write(((CDROutputObject)outputObject)); }
Example 9
Source Project: openjdk-jdk8u-backup Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public CorbaMessageMediator createLocationForward( CorbaMessageMediator messageMediator, IOR ior, ServiceContexts svc) { ReplyMessage reply = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.LOCATION_FORWARD, getServiceContextsForReply(messageMediator, svc), ior); return createResponseHelper(messageMediator, reply, ior); }
Example 10
Source Project: openjdk-jdk8u Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 5 votes |
public void cleanupClientPIRequest() { if( !hasClientInterceptors ) return; if( !isClientPIEnabledForThisThread() ) return; ClientRequestInfoImpl info = peekClientRequestInfoImplStack(); RetryType rt = info.getRetryRequest() ; // fix for 6763340 if (!rt.equals( RetryType.BEFORE_RESPONSE )) { // If the replyStatus has not yet been set, this is an indication // that the ORB threw an exception before we had a chance to // invoke the client interceptor ending points. // // _REVISIT_ We cannot handle any exceptions or ForwardRequests // flagged by the ending points here because there is no way // to gracefully handle this in any of the calling code. // This is a rare corner case, so we will ignore this for now. short replyStatus = info.getReplyStatus(); if (replyStatus == info.UNINITIALIZED ) { invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, wrapper.unknownRequestInvoke( CompletionStatus.COMPLETED_MAYBE ) ) ; } } // Decrement entry count, and if it is zero, pop it from the stack. info.decrementEntryCount(); // fix for 6763340, and probably other cases (non-recursive retry) if (info.getEntryCount() == 0 && !info.getRetryRequest().isRetry()) { // RequestInfoStack<ClientRequestInfoImpl> infoStack = // threadLocalClientRequestInfoStack.get(); RequestInfoStack infoStack = (RequestInfoStack)threadLocalClientRequestInfoStack.get(); infoStack.pop(); printPop(); } }
Example 11
Source Project: openjdk-8-source Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), user ? ReplyMessage.USER_EXCEPTION : ReplyMessage.SYSTEM_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 12
Source Project: TencentKona-8 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.NO_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 13
Source Project: TencentKona-8 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), user ? ReplyMessage.USER_EXCEPTION : ReplyMessage.SYSTEM_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 14
Source Project: openjdk-8-source Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.NO_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 15
Source Project: TencentKona-8 Source File: BufferManagerWriteStream.java License: GNU General Public License v2.0 | 5 votes |
public void overflow (ByteBufferWithInfo bbwi) { // Set the fragment's moreFragments field to true MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT); try { sendFragment(false); } catch(SystemException se){ orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, se); throw se; } // Reuse the old buffer // REVISIT - need to account for case when needed > available // even after fragmenting. This is the large array case, so // the caller should retry when it runs out of space. bbwi.position(0); bbwi.buflen = bbwi.byteBuffer.limit(); bbwi.fragmented = true; // Now we must marshal in the fragment header/GIOP header // REVISIT - we can optimize this by not creating the fragment message // each time. FragmentMessage header = ((CDROutputObject)outputObject).getMessageHeader().createFragmentMessage(); header.write(((CDROutputObject)outputObject)); }
Example 16
Source Project: openjdk-jdk9 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), user ? ReplyMessage.USER_EXCEPTION : ReplyMessage.SYSTEM_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 17
Source Project: openjdk-8 Source File: BufferManagerWriteStream.java License: GNU General Public License v2.0 | 5 votes |
public void overflow (ByteBufferWithInfo bbwi) { // Set the fragment's moreFragments field to true MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT); try { sendFragment(false); } catch(SystemException se){ orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, se); throw se; } // Reuse the old buffer // REVISIT - need to account for case when needed > available // even after fragmenting. This is the large array case, so // the caller should retry when it runs out of space. bbwi.position(0); bbwi.buflen = bbwi.byteBuffer.limit(); bbwi.fragmented = true; // Now we must marshal in the fragment header/GIOP header // REVISIT - we can optimize this by not creating the fragment message // each time. FragmentMessage header = ((CDROutputObject)outputObject).getMessageHeader().createFragmentMessage(); header.write(((CDROutputObject)outputObject)); }
Example 18
Source Project: hottub Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.NO_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example 19
Source Project: openjdk-jdk9 Source File: BufferManagerWriteStream.java License: GNU General Public License v2.0 | 5 votes |
public void overflow (ByteBufferWithInfo bbwi) { // Set the fragment's moreFragments field to true MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT); try { sendFragment(false); } catch(SystemException se){ orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, se); throw se; } // Reuse the old buffer // REVISIT - need to account for case when needed > available // even after fragmenting. This is the large array case, so // the caller should retry when it runs out of space. bbwi.position(0); bbwi.buflen = bbwi.byteBuffer.limit(); bbwi.fragmented = true; // Now we must marshal in the fragment header/GIOP header // REVISIT - we can optimize this by not creating the fragment message // each time. FragmentMessage header = ((CDROutputObject)outputObject).getMessageHeader().createFragmentMessage(); header.write(((CDROutputObject)outputObject)); }
Example 20
Source Project: jdk8u60 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public void handleInput(ReplyMessage_1_2 header) throws IOException { try { try { messageHeader = replyHeader = (ReplyMessage) header; // We know that the request ID is in the first fragment header.unmarshalRequestID(dispatchByteBuffer); if (transportDebug()) { dprint(".REPLY 1.2->: id/" + + header.getRequestId() + ": more?: " + header.moreFragmentsToFollow() + ": " + header); } setInputObject(); signalResponseReceived(); } finally { setWorkThenReadOrResumeSelect(header); } } catch (Throwable t) { if (transportDebug()) dprint(".REPLY 1.2: id/" + header.getRequestId() + ": !!ERROR!!: " + header, t); // Mask the exception from thread.; } finally { if (transportDebug()) dprint(".REPLY 1.2<-: id/" + header.getRequestId() + ": " + header); } }
Example 21
Source Project: jdk8u60 Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public CorbaMessageMediator createLocationForward( CorbaMessageMediator messageMediator, IOR ior, ServiceContexts svc) { ReplyMessage reply = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.LOCATION_FORWARD, getServiceContextsForReply(messageMediator, svc), ior); return createResponseHelper(messageMediator, reply, ior); }
Example 22
Source Project: jdk8u60 Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 5 votes |
public void cleanupClientPIRequest() { if( !hasClientInterceptors ) return; if( !isClientPIEnabledForThisThread() ) return; ClientRequestInfoImpl info = peekClientRequestInfoImplStack(); RetryType rt = info.getRetryRequest() ; // fix for 6763340 if (!rt.equals( RetryType.BEFORE_RESPONSE )) { // If the replyStatus has not yet been set, this is an indication // that the ORB threw an exception before we had a chance to // invoke the client interceptor ending points. // // _REVISIT_ We cannot handle any exceptions or ForwardRequests // flagged by the ending points here because there is no way // to gracefully handle this in any of the calling code. // This is a rare corner case, so we will ignore this for now. short replyStatus = info.getReplyStatus(); if (replyStatus == info.UNINITIALIZED ) { invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, wrapper.unknownRequestInvoke( CompletionStatus.COMPLETED_MAYBE ) ) ; } } // Decrement entry count, and if it is zero, pop it from the stack. info.decrementEntryCount(); // fix for 6763340, and probably other cases (non-recursive retry) if (info.getEntryCount() == 0 && !info.getRetryRequest().isRetry()) { // RequestInfoStack<ClientRequestInfoImpl> infoStack = // threadLocalClientRequestInfoStack.get(); RequestInfoStack infoStack = (RequestInfoStack)threadLocalClientRequestInfoStack.get(); infoStack.pop(); printPop(); } }
Example 23
Source Project: openjdk-8-source Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 5 votes |
public void cleanupClientPIRequest() { if( !hasClientInterceptors ) return; if( !isClientPIEnabledForThisThread() ) return; ClientRequestInfoImpl info = peekClientRequestInfoImplStack(); RetryType rt = info.getRetryRequest() ; // fix for 6763340 if (!rt.equals( RetryType.BEFORE_RESPONSE )) { // If the replyStatus has not yet been set, this is an indication // that the ORB threw an exception before we had a chance to // invoke the client interceptor ending points. // // _REVISIT_ We cannot handle any exceptions or ForwardRequests // flagged by the ending points here because there is no way // to gracefully handle this in any of the calling code. // This is a rare corner case, so we will ignore this for now. short replyStatus = info.getReplyStatus(); if (replyStatus == info.UNINITIALIZED ) { invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, wrapper.unknownRequestInvoke( CompletionStatus.COMPLETED_MAYBE ) ) ; } } // Decrement entry count, and if it is zero, pop it from the stack. info.decrementEntryCount(); // fix for 6763340, and probably other cases (non-recursive retry) if (info.getEntryCount() == 0 && !info.getRetryRequest().isRetry()) { // RequestInfoStack<ClientRequestInfoImpl> infoStack = // threadLocalClientRequestInfoStack.get(); RequestInfoStack infoStack = (RequestInfoStack)threadLocalClientRequestInfoStack.get(); infoStack.pop(); printPop(); } }
Example 24
Source Project: openjdk-jdk9 Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 5 votes |
public void cleanupClientPIRequest() { if( !hasClientInterceptors ) return; if( !isClientPIEnabledForThisThread() ) return; ClientRequestInfoImpl info = peekClientRequestInfoImplStack(); RetryType rt = info.getRetryRequest() ; // fix for 6763340 if (!rt.equals( RetryType.BEFORE_RESPONSE )) { // If the replyStatus has not yet been set, this is an indication // that the ORB threw an exception before we had a chance to // invoke the client interceptor ending points. // // _REVISIT_ We cannot handle any exceptions or ForwardRequests // flagged by the ending points here because there is no way // to gracefully handle this in any of the calling code. // This is a rare corner case, so we will ignore this for now. short replyStatus = info.getReplyStatus(); if (replyStatus == info.UNINITIALIZED ) { invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, wrapper.unknownRequestInvoke( CompletionStatus.COMPLETED_MAYBE ) ) ; } } // Decrement entry count, and if it is zero, pop it from the stack. info.decrementEntryCount(); // fix for 6763340, and probably other cases (non-recursive retry) if (info.getEntryCount() == 0 && !info.getRetryRequest().isRetry()) { // RequestInfoStack<ClientRequestInfoImpl> infoStack = // threadLocalClientRequestInfoStack.get(); RequestInfoStack infoStack = (RequestInfoStack)threadLocalClientRequestInfoStack.get(); infoStack.pop(); printPop(); } }
Example 25
Source Project: JDKSourceCode1.8 Source File: BufferManagerWriteStream.java License: MIT License | 5 votes |
public void overflow (ByteBufferWithInfo bbwi) { // Set the fragment's moreFragments field to true MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT); try { sendFragment(false); } catch(SystemException se){ orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, se); throw se; } // Reuse the old buffer // REVISIT - need to account for case when needed > available // even after fragmenting. This is the large array case, so // the caller should retry when it runs out of space. bbwi.position(0); bbwi.buflen = bbwi.byteBuffer.limit(); bbwi.fragmented = true; // Now we must marshal in the fragment header/GIOP header // REVISIT - we can optimize this by not creating the fragment message // each time. FragmentMessage header = ((CDROutputObject)outputObject).getMessageHeader().createFragmentMessage(); header.write(((CDROutputObject)outputObject)); }
Example 26
Source Project: openjdk-8-source Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 4 votes |
public boolean isDifferentAddrDispositionRequestedReply() { return replyHeader.getReplyStatus() == ReplyMessage.NEEDS_ADDRESSING_MODE; }
Example 27
Source Project: jdk1.8-source-analysis Source File: CorbaClientRequestDispatcherImpl.java License: Apache License 2.0 | 4 votes |
public InputObject marshalingComplete1( ORB orb, CorbaMessageMediator messageMediator) throws ApplicationException, org.omg.CORBA.portable.RemarshalException { try { messageMediator.finishSendingRequest(); if (orb.subcontractDebugFlag) { dprint(".marshalingComplete: " + opAndId(messageMediator) + ": finished sending request"); } return messageMediator.waitForResponse(); } catch (RuntimeException e) { if (orb.subcontractDebugFlag) { dprint(".marshalingComplete: " + opAndId(messageMediator) + ": exception: " + e.toString()); } boolean retry = getContactInfoListIterator(orb) .reportException(messageMediator.getContactInfo(), e); //Bug 6382377: must not lose exception in PI // Must run interceptor end point before retrying. Exception newException = orb.getPIHandler().invokeClientPIEndingPoint( ReplyMessage.SYSTEM_EXCEPTION, e); if (retry) { if (newException == e) { continueOrThrowSystemOrRemarshal(messageMediator, new RemarshalException()); } else { continueOrThrowSystemOrRemarshal(messageMediator, newException); } } else { if (newException instanceof RuntimeException){ throw (RuntimeException)newException; } else if (newException instanceof RemarshalException) { throw (RemarshalException)newException; } // NOTE: Interceptor ending point will run in releaseReply. throw e; } return null; // for compiler } }
Example 28
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 4 votes |
public ReplyMessage getReplyHeader() { return (ReplyMessage) replyHeader; }
Example 29
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 4 votes |
public boolean isSystemExceptionReply() { return replyHeader.getReplyStatus() == ReplyMessage.SYSTEM_EXCEPTION; }
Example 30
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 4 votes |
public boolean isUserExceptionReply() { return replyHeader.getReplyStatus() == ReplyMessage.USER_EXCEPTION; }