[Mono-list] Who is wrong, mono or microsoft

Chris Howie cdhowie at gmail.com
Tue Sep 1 06:44:53 EDT 2009


On Tue, Sep 1, 2009 at 4:48 AM, kuse<marcus at in-process.se> 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


More information about the Mono-list mailing list