/* * JBoss, Home of Professional Open Source * Copyright 2007, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. * See the copyright.txt in the distribution for a * full listing of individual contributors. * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU Lesser General Public License, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * * (C) 2005-2006, * @author JBoss Inc. */ package com.jboss.transaction.wstf.webservices.sc007.client; import java.io.IOException; import com.arjuna.webservices.SoapFault; import com.arjuna.webservices11.SoapFault11; import com.arjuna.webservices11.wsat.AtomicTransactionConstants; import com.jboss.transaction.wstf.webservices.soapfault.client.SoapFaultClient; import com.arjuna.webservices11.wsaddr.AddressingHelper; import org.jboss.ws.api.addressing.MAP; import com.arjuna.wsc11.messaging.MessageId; import com.jboss.transaction.wstf.webservices.sc007.InteropConstants; import com.jboss.transaction.wstf.webservices.sc007.generated.InitiatorPortType; /** * The initiator client. * @author kevin */ public class InitiatorClient { /** * The client singleton. */ private static final InitiatorClient CLIENT = new InitiatorClient() ; /** * The response action. */ private static final String responseAction = InteropConstants.INTEROP_ACTION_RESPONSE ; /** * Construct the interop synch client. */ private InitiatorClient() { } /** * Send a response. * @param map The addressing context initialised with to, message ID and relates to. * @throws SoapFault For any errors. * @throws IOException for any transport errors. */ public void sendResponse(final MAP map) throws SoapFault, IOException { InitiatorPortType port = InteropClient.getInitiatorPort(map, responseAction); port.response(); } /** * Send a fault. * @param map The addressing context. * @param soapFault The SOAP fault. * @throws SoapFault For any errors. * @throws IOException for any transport errors. */ public void sendSoapFault(final MAP map, final SoapFault11 soapFault) throws SoapFault, IOException { String soapFaultAction = soapFault.getAction() ; if (soapFaultAction == null) { soapFaultAction = faultAction; } MAP replyProperties = AddressingHelper.createFaultContext(map, MessageId.getMessageId()); AddressingHelper.installNoneReplyTo(replyProperties); SoapFaultClient.sendSoapFault(soapFault, map, soapFaultAction); } private static final String faultAction = AtomicTransactionConstants.WSAT_ACTION_FAULT; /** * Get the Interop client singleton. * @return The Interop client singleton. */ public static InitiatorClient getClient() { return CLIENT ; } }