diff options
Diffstat (limited to 'pdf-as-web/src/main/webapp')
-rw-r--r-- | pdf-as-web/src/main/webapp/WEB-INF/sun-jaxws.xml | 4 | ||||
-rw-r--r-- | pdf-as-web/src/main/webapp/verifystart.jsp | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/webapp/WEB-INF/sun-jaxws.xml b/pdf-as-web/src/main/webapp/WEB-INF/sun-jaxws.xml index 67648647..f62b8484 100644 --- a/pdf-as-web/src/main/webapp/WEB-INF/sun-jaxws.xml +++ b/pdf-as-web/src/main/webapp/WEB-INF/sun-jaxws.xml @@ -4,4 +4,8 @@ <endpoint name="SOAP Sign" implementation="at.gv.egiz.pdfas.web.ws.PDFASSigningImpl" url-pattern="/wssign"/> + + <endpoint name="SOAP Verify" + implementation="at.gv.egiz.pdfas.web.ws.PDFASVerificationImpl" + url-pattern="/wsverify"/> </endpoints>
\ No newline at end of file diff --git a/pdf-as-web/src/main/webapp/verifystart.jsp b/pdf-as-web/src/main/webapp/verifystart.jsp index 86795d23..339cb464 100644 --- a/pdf-as-web/src/main/webapp/verifystart.jsp +++ b/pdf-as-web/src/main/webapp/verifystart.jsp @@ -5,6 +5,11 @@ <h1>Verify PDF-Dokument</h1> <form action="Verify" method="POST" enctype="multipart/form-data"> + <select name="format"> + <option selected="selected">html</option> + <option>json</option> + </select> + <input type="file" name="pdf-file" /> <input type="submit" value="Verfiy"> |