Examples of ParticipantPortType


Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendReplayCommit(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, replayCommitAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.replayCommit();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendRetryPreparedCommit(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, retryPreparedCommitAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.retryPreparedCommit();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendRetryPreparedAbort(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, retryPreparedAbortAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.retryPreparedAbort();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendRetryCommit(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, retryCommitAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.retryCommit();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendPreparedAfterTimeout(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, preparedAfterTimeoutAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.preparedAfterTimeout();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType

     */
    public void sendLostCommitted(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = ATInteropClient.getParticipantPort(addressingProperties, lostCommittedAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try
        {
            port.lostCommitted();
        }
        finally
        {
            CoordinationContextManager.setThreadContext(null) ;
        }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.bainterop.generated.ParticipantPortType

     */
    public void sendCancel(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = BAInteropClient.getParticipantPort(addressingProperties, cancelAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try {
            port.cancel();
        } finally {
            CoordinationContextManager.setThreadContext(null) ;
        }
    }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.bainterop.generated.ParticipantPortType

     */
    public void sendExit(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = BAInteropClient.getParticipantPort(addressingProperties, exitAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try {
            port.exit();
        } finally {
            CoordinationContextManager.setThreadContext(null) ;
        }
    }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.bainterop.generated.ParticipantPortType

     */
    public void sendFail(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = BAInteropClient.getParticipantPort(addressingProperties, failAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try {
            port.fail();
        } finally {
            CoordinationContextManager.setThreadContext(null) ;
        }
    }
View Full Code Here

Examples of com.jboss.transaction.txinterop.webservices.bainterop.generated.ParticipantPortType

     */
    public void sendCannotComplete(final CoordinationContextType coordinationContext, final AddressingProperties addressingProperties)
        throws SoapFault, IOException
    {
        addressingProperties.setReplyTo(initiator) ;
        ParticipantPortType port = BAInteropClient.getParticipantPort(addressingProperties, cannotCompleteAction);
        CoordinationContextManager.setThreadContext(coordinationContext) ;
        try {
            port.cannotComplete();
        } finally {
            CoordinationContextManager.setThreadContext(null) ;
        }
    }
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.