1 package org.neuclear.xml.soap;
2
3 import org.dom4j.Element;
4
5 /*
6 NeuClear Distributed Transaction Clearing Platform
7 (C) 2003 Pelle Braendgaard
8
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
13
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with this library; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
23 $Id: EchoSOAPServlet.java,v 1.2 2003/12/12 12:32:49 pelle Exp $
24 $Log: EchoSOAPServlet.java,v $
25 Revision 1.2 2003/12/12 12:32:49 pelle
26 Working on getting the SOAPServletTest working under cactus
27
28 Revision 1.1 2003/11/24 23:33:15 pelle
29 More Cactus unit testing going on.
30
31 */
32
33 /***
34 * User: pelleb
35 * Date: Nov 24, 2003
36 * Time: 4:35:18 PM
37 */
38 public class EchoSOAPServlet extends SOAPServlet {
39
40 protected Element handleSOAPRequest(Element request, String soapAction) throws SOAPException {
41 last=request;
42 return request;
43 }
44
45 public Element getLast() {
46 return last;
47 }
48
49 private Element last;
50 }
This page was automatically generated by Maven