Re: [web2py] Basic AUTH and 303 vs 401

2013-09-04 Thread Dave S
On Wednesday, September 4, 2013 2:45:15 AM UTC-7, Michele Comitini wrote: > > You can use a modified call() action: > def call_w_auth(): > """ > exposes services. for example: > http:///[app]/default/call/jsonrpc > decorate with @services.jsonrpc the functions to expose > su

Re: [web2py] Basic AUTH and 303 vs 401

2013-09-04 Thread Michele Comitini
You can use a modified call() action: def call_w_auth(): """ exposes services. for example: http:///[app]/default/call/jsonrpc decorate with @services.jsonrpc the functions to expose supports xml, json, xmlrpc, jsonrpc, amfrpc, rss, csv """ auth.settings.allow_basic_

[web2py] Basic AUTH and 303 vs 401

2013-09-03 Thread Dave S
I'm a newbie to web2py, but the book examples have gotten me a long ways, and the forum (GG) has helped, also. I have set up a pretty simple SOAP service, and have turned on Basic AUTH. I get the correct results when the client provides the correct header, so all that's good. But I'd like t