On Tue, Sep 1, 2009 at 4:48 AM, kuse<[email protected]> wrote: > I maybe not have an answear here but I want to reflect a thing that came to > my mind. > If we look at the query string: > string dailyimage = > "http://support.smarttelecom.ie/forums/smart_usage.php?img=daily"; > that's for me no doubt a GET-query string, but later the HttpWebRequest > method > is set to POST (requestImage2.Method = "POST";). > So my question is: Is it possible to have both GET and POST at the same > time?
If we're talking only HTTP (ignoring Mono for a sec), no, you can't use both HTTP methods at the same time, but you can use the POST method on any URL -- including one with a query string. > If not could it be that mono identifies the method from the query > string as GET and ignores the "requestImage2.Method = "POST"" ? It is possible. Perhaps file a bug with a testcase? -- Chris Howie http://www.chrishowie.com http://en.wikipedia.org/wiki/User:Crazycomputers _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
