1HTTP.postURL(3kaya) Kaya module reference HTTP.postURL(3kaya)
2
3
4
6 HTTP::postURL - Post data to a URL by HTTP using an existing connecā
7 tion.
8
10 Void postURL( NetHandle h, String post, HTTPURL url, [Pair<String,
11 String> ] headers=createArray(1), HTTPversion version=HTTP10 )
12
14 h An established network connection.
15
16 post The data to post, encoded as application/x-www-form-urlencoded
17 data
18
19 url A HTTP.HTTPURL (3kaya)
20
21
22 headers A list of key/value pairs of extra HTTP headers (optional,
23 defaulting to the empty list)
24
25 version The HTTP version
26
28 Post data to a URL by HTTP. The connection will then be ready to
29 receive response data.
30
32 Kaya standard library by Edwin Brady, Chris Morris and others
33 (kaya@kayalang.org). For further information see http://kayalang.org/
34
36 The Kaya standard library is free software; you can redistribute it
37 and/or modify it under the terms of the GNU Lesser General Public
38 License (version 2.1 or any later version) as published by the Free
39 Software Foundation.
40
42 HTTP.basicAuthHeader (3kaya)
43 HTTP.getURL (3kaya)
44 HTTP.parseURL (3kaya)
45
46
47
48Kaya December 2010 HTTP.postURL(3kaya)