summaryrefslogtreecommitdiffstats
path: root/petascope/templates/wcps-servlet.html
diff options
context:
space:
mode:
authorConstantin <jucovschi@gmail.com>2010-06-02 20:09:42 +0200
committerConstantin <jucovschi@gmail.com>2010-06-02 20:09:42 +0200
commit40e12c6af9d05c3413efaf535c35c625b736cbb9 (patch)
tree6a9f6b86b55724e659ca270171496d82362de9cc /petascope/templates/wcps-servlet.html
parentfcda34adb1c78d0929778e1324c873552d21ee1d (diff)
downloadrasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.tar.gz
rasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.tar.xz
rasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.zip
preparing for joining with rasdaman open source
Diffstat (limited to 'petascope/templates/wcps-servlet.html')
-rw-r--r--petascope/templates/wcps-servlet.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/petascope/templates/wcps-servlet.html b/petascope/templates/wcps-servlet.html
new file mode 100644
index 0000000..ec7cd44
--- /dev/null
+++ b/petascope/templates/wcps-servlet.html
@@ -0,0 +1,32 @@
+<html>
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8">
+ <title>Web Coverage Processing Service</title>
+ </head>
+ <body>
+
+<h1>PetaScope Implementation (WCPS)</h1>
+
+<p>There are 3 ways to invoke this service:</p>
+
+<p>1. Enter a ProcessCoverage request in WCPS abstract syntax and submit it as a POST request with a parameter named <b>query</b>. You can use the form below.</p>
+<form action="" method="post">
+ <textarea cols="64" rows="4" name="query"></textarea>
+ <input value="Send" type="submit">
+</form>
+
+<p>2. Upload a ProcessCoverage XML request as a multupart/form-data POST request containing a file. You can use the form below.</p>
+<form action="" method="post" enctype="multipart/form-data">
+ <input accept="text/xml" size="64" name="xmlfile" type="file">
+ <input value="Send" type="submit">
+</form>
+
+<p>3. Enter a ProcessCoverage XML request and submit it as a POST request with a parameter named <b>xml</b>. You can use the form below.</p>
+<form action="" method="post">
+ <textarea cols="64" rows="16" name="xml"></textarea>
+ <input value="Send" type="submit">
+</form>
+
+
+</body>
+</html>