blob: bf201f896cc05880c2f496686920eee7d9d1969a [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rahas;
import javax.xml.namespace.QName;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axis2.AxisFault;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.description.Parameter;
import org.apache.axis2.receivers.AbstractInOutSyncMessageReceiver;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class STSMessageReceiver extends AbstractInOutSyncMessageReceiver {
private static final Log log = LogFactory.getLog(STSMessageReceiver.class);
public void invokeBusinessLogic(MessageContext inMessage,
MessageContext outMessage) throws AxisFault {
try {
Parameter param = inMessage
.getParameter(TokenRequestDispatcherConfig.CONFIG_PARAM_KEY);
Parameter paramFile = inMessage
.getParameter(TokenRequestDispatcherConfig.CONFIG_FILE_KEY);
TokenRequestDispatcher dispatcher = null;
if (param != null) {
dispatcher = new TokenRequestDispatcher(param
.getParameterElement().getFirstChildWithName(
new QName("token-dispatcher-configuration")));
} else if (paramFile != null) {
dispatcher = new TokenRequestDispatcher((String) paramFile
.getValue());
} else {
dispatcher = new TokenRequestDispatcher(
(OMElement) inMessage
.getProperty(TokenRequestDispatcherConfig.CONFIG_PARAM_KEY));
}
if(dispatcher != null) {
SOAPEnvelope responseEnv = dispatcher.handle(inMessage, outMessage);
outMessage.setEnvelope(responseEnv);
} else {
throw new TrustException("missingDispatcherConfiguration");
}
} catch (TrustException e) {
e.printStackTrace();
//Log the exception
log.error(e);
throw new AxisFault(e.getFaultString(), e.getFaultCode());
}
}
}