1 29 30 package com.caucho.soap.skeleton; 31 32 import com.caucho.jaxb.JAXBContextImpl; 33 import com.caucho.util.L10N; 34 35 import javax.xml.bind.JAXBException; 36 import javax.xml.bind.Marshaller; 37 import javax.xml.bind.Unmarshaller; 38 import javax.xml.ws.WebServiceException; 39 import java.lang.reflect.Method ; 40 import java.util.Map ; 41 import java.util.logging.Logger ; 42 43 46 public class RpcAction extends AbstractAction { 47 private final static Logger log = Logger.getLogger(RpcAction.class.getName()); 48 public static final L10N L = new L10N(RpcAction.class); 49 50 private static final String TARGET_NAMESPACE_PREFIX = "tns"; 51 52 public RpcAction(Method method, 53 JAXBContextImpl jaxbContext, 54 String targetNamespace, 55 Marshaller marshaller, 56 Unmarshaller unmarshaller) 57 throws JAXBException, WebServiceException 58 { 59 super(method, jaxbContext, targetNamespace); 60 61 187 188 192 198 } 199 } 200 | Popular Tags |