From 9145d1479e838918317bc9d4c5e25fe537e5f6de Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 13 May 2009 12:39:53 +0000 Subject: Abandon trying to use the new Axis2 JMS transport for now as its proving too messy tryingto backport it to the 1.4.1 release. Now trying a new approach which modifies the JMS transport from Axis2 1.4.1 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@774293 13f79535-47bb-0310-9956-ffa450edef68 --- .../transport/base/datagram/ProcessPacketTask.java | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 branches/sca-java-1.x/modules/binding-ws-axis2-jms/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/transport/base/datagram/ProcessPacketTask.java (limited to 'branches/sca-java-1.x/modules/binding-ws-axis2-jms/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/transport/base/datagram/ProcessPacketTask.java') diff --git a/branches/sca-java-1.x/modules/binding-ws-axis2-jms/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/transport/base/datagram/ProcessPacketTask.java b/branches/sca-java-1.x/modules/binding-ws-axis2-jms/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/transport/base/datagram/ProcessPacketTask.java deleted file mode 100644 index bb102317b8..0000000000 --- a/branches/sca-java-1.x/modules/binding-ws-axis2-jms/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/transport/base/datagram/ProcessPacketTask.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.tuscany.sca.binding.ws.axis2.transport.base.datagram; - -import java.io.ByteArrayInputStream; -import java.io.InputStream; - -import org.apache.axiom.soap.SOAPEnvelope; -import org.apache.axis2.context.MessageContext; -import org.apache.axis2.engine.AxisEngine; -import org.apache.axis2.transport.TransportUtils; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.tuscany.sca.binding.ws.axis2.transport.base.MetricsCollector; - -/** - * Task encapsulating the processing of a datagram. - * Instances of this class will be dispatched to worker threads for - * execution. - */ -public class ProcessPacketTask implements Runnable { - private static final Log log = LogFactory.getLog(ProcessPacketTask.class); - - private final DatagramEndpoint endpoint; - private final byte[] data; - private final int length; - - public ProcessPacketTask(DatagramEndpoint endpoint, byte[] data, int length) { - this.endpoint = endpoint; - this.data = data; - this.length = length; - } - - public void run() { - MetricsCollector metrics = endpoint.getMetrics(); - try { - InputStream inputStream = new ByteArrayInputStream(data, 0, length); - MessageContext msgContext = endpoint.getListener().createMessageContext(); - msgContext.setAxisService(endpoint.getService()); - SOAPEnvelope envelope = TransportUtils.createSOAPMessage(msgContext, inputStream, endpoint.getContentType()); - msgContext.setEnvelope(envelope); - AxisEngine.receive(msgContext); - metrics.incrementMessagesReceived(); - metrics.incrementBytesReceived(length); - } catch (Exception ex) { - metrics.incrementFaultsReceiving(); - StringBuilder buffer = new StringBuilder("Error during processing of datagram:\n"); - Utils.hexDump(buffer, data, length); - log.error(buffer.toString(), ex); - } - } -} -- cgit v1.2.3