package at.gv.egovernment.moa.spss.client.call; import java.rmi.RemoteException; import javax.xml.namespace.QName; import javax.xml.rpc.ServiceException; import org.w3c.dom.Element; /** * @author Patrick Peck * @version $Id$ */ public class SignatureCreationCaller extends MOACaller { private static final QName SERVICE_QNAME = new QName("SignatureCreation"); public Element createXMLSignature(Element request, String endPoint) throws ServiceException, RemoteException, Exception { return doCall(SERVICE_QNAME, request, endPoint); } }