Thanks Ian, I'll take a look.

btw, the quick test case for the fieldstorage bug is to call an rpc servlet
with params on the query string, e.g:

from WebKit.XMLRPCServlet import XMLRPCServlet
class RpcTest(XMLRPCServlet):
    def exposedMethods(self):
        return ['add']
    def add(self, a,b):
        return a+b

and then from other python code:
import xmlrpclib
test = xmlrpclib.Server('http://localhost/MyApp/RpcTest?bogus=1')
test.add(1,2)

Chris

> -----Original Message-----
> From: Ian Bicking [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, June 08, 2002 8:17 PM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Content-type handling in HTTPRequest
>
>
> The updates Chris gave for accessing non-form-variable data
> are checked
> into CVS, adding a fieldStorage() and rawInput() method to
> HTTPRequest,
> where rawInput() is equivalent to xmlInput() (which is now
> gone).  (And
> the FieldStorage problem Chris noted should be fixed -- Chris, you
> should test it, since I don't have anything that submits POST
> data like
> you describe)
>
>   Ian
>


_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas - 
http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink

_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to