Sanjay schrieb: > Hi All, > > Might be a real novice question: We do "raise redirect(url)" to call a > controller method as GET (is not it?). Pondering what might be the way > to call a controller method as POST...
That's not possible because HTTP doesn't support it. All you could do ist to - save the post-stream at the serverside under a unique id - redirect to an url, with a parameter that contains that id - somehow "fake" another request (server-side), with the stream information However, there is no standard support for this in TG or any other framework for Python, PHP or Java I know. Diez --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

