summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2006-04-01 16:17:20 +0000
committerDavid Troy <dave@popvox.com>2006-04-01 16:17:20 +0000
commit793c133268021ff9b33f04235af730295f045d52 (patch)
tree3b01dd34c0b876bf3ffeecfc0e3caeeb61b8c85d
parent14ee345c77f87858b518151495c22685b1ee8754 (diff)
downloadastmanproxy-793c133268021ff9b33f04235af730295f045d52.tar.gz
astmanproxy-793c133268021ff9b33f04235af730295f045d52.tar.xz
astmanproxy-793c133268021ff9b33f04235af730295f045d52.zip
Populating trunk
git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/trunk@20 f02b47b9-160a-0410-81a6-dc3441afb0ec
-rw-r--r--README.http24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.http b/README.http
new file mode 100644
index 0000000..63268a9
--- /dev/null
+++ b/README.http
@@ -0,0 +1,24 @@
+This provides a very basic interface to http; it should be considered
+poorly built, lame, and dangerous until further notice.
+
+That said, if you GET or POST form data name/value pairs to the proxy port
+using HTTP, the proxy will treat it as Name: Value input and will act on
+it, and will respond back in whatever format you want to use.
+
+A useful scenario might be to use http input and xml output.
+
+The following form can be used as a test:
+
+<HTML>
+<FORM ACTION="http://myhost:1234" METHOD=POST>
+Action: <input name="Action" type="text" value="Ping"><br>
+ActionID: <input name="ActionID" type="text" value="Foo"><br>
+<input type=submit><br>
+</FORM>
+</HTML>
+
+See samples/httpast.html for a sample file that implements this.
+
+It would be best to use this with autofilter=on since right now you are
+only going to get one response block back, and it might as well be
+relevant. :)