[Zorba-coders] [Bug 955574] Re: http-client hangs if following a POST request

2012-06-13 Thread Dana Florescu
** Changed in: zorba
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/955574

Title:
  http-client hangs if following a POST request

Status in Zorba - The XQuery Processor:
  Fix Released

Bug description:
  Making the following request to a resource that sends a 301 or 302
  redirect doesn't terminate.

http:send-request(
 http:request href=http://some-ressource; method=POST 
follow-redirect=true
http:header name=Content-Length value=4/
http:body media-type=text/plaintest/http:body
 /http:request
)

  The reason is that the http-client tells curl to follow the redirect.
  In turn, curl issues a GET request with the Content-Length header set
  to the size of the payload of the original POST request. However, the
  response doesn't come back because no data is sent with the redirected
  GET request.

  A suggested solution is to raise an error if one tries to follow POST,
  PUT, or DELETE requests. The semantic of doing this is not clear and
  it's up to the user what to do. For example, the user might want to
  follow-up using a GET request or with another POST containing the same
  data. Raising an error allows the user of the http-client to do
  whatever is required.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/955574/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 955574] Re: http-client hangs if following a POST request

2012-03-26 Thread Zorba Build Bot
** Changed in: zorba
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/955574

Title:
  http-client hangs if following a POST request

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Making the following request to a resource that sends a 301 or 302
  redirect doesn't terminate.

http:send-request(
 http:request href=http://some-ressource; method=POST 
follow-redirect=true
http:header name=Content-Length value=4/
http:body media-type=text/plaintest/http:body
 /http:request
)

  The reason is that the http-client tells curl to follow the redirect.
  In turn, curl issues a GET request with the Content-Length header set
  to the size of the payload of the original POST request. However, the
  response doesn't come back because no data is sent with the redirected
  GET request.

  A suggested solution is to raise an error if one tries to follow POST,
  PUT, or DELETE requests. The semantic of doing this is not clear and
  it's up to the user what to do. For example, the user might want to
  follow-up using a GET request or with another POST containing the same
  data. Raising an error allows the user of the http-client to do
  whatever is required.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/955574/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 955574] Re: http-client hangs if following a POST request

2012-03-20 Thread Matthias Brantner
** Changed in: zorba
Milestone: 2.2 = 2.3

** Changed in: zorba
   Status: New = In Progress

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/955574

Title:
  http-client hangs if following a POST request

Status in Zorba - The XQuery Processor:
  In Progress

Bug description:
  Making the following request to a resource that sends a 301 or 302
  redirect doesn't terminate.

http:send-request(
 http:request href=http://some-ressource; method=POST 
follow-redirect=true
http:header name=Content-Length value=4/
http:body media-type=text/plaintest/http:body
 /http:request
)

  The reason is that the http-client tells curl to follow the redirect.
  In turn, curl issues a GET request with the Content-Length header set
  to the size of the payload of the original POST request. However, the
  response doesn't come back because no data is sent with the redirected
  GET request.

  A suggested solution is to raise an error if one tries to follow POST,
  PUT, or DELETE requests. The semantic of doing this is not clear and
  it's up to the user what to do. For example, the user might want to
  follow-up using a GET request or with another POST containing the same
  data. Raising an error allows the user of the http-client to do
  whatever is required.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/955574/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 955574] Re: http-client hangs if following a POST request

2012-03-14 Thread Launchpad Bug Tracker
** Branch linked: lp:~zorba-coders/zorba/bug-955574

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/955574

Title:
  http-client hangs if following a POST request

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Making the following request to a resource that sends a 301 or 302
  redirect doesn't terminate.

http:send-request(
 http:request href=http://some-ressource; method=POST 
follow-redirect=true
http:header name=Content-Length value=4/
http:body media-type=text/plaintest/http:body
 /http:request
)

  The reason is that the http-client tells curl to follow the redirect.
  In turn, curl issues a GET request with the Content-Length header set
  to the size of the payload of the original POST request. However, the
  response doesn't come back because no data is sent with the redirected
  GET request.

  A suggested solution is to raise an error if one tries to follow POST,
  PUT, or DELETE requests. The semantic of doing this is not clear and
  it's up to the user what to do. For example, the user might want to
  follow-up using a GET request or with another POST containing the same
  data. Raising an error allows the user of the http-client to do
  whatever is required.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/955574/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 955574] Re: http-client hangs if following a POST request

2012-03-14 Thread Matthias Brantner
** Changed in: zorba
Milestone: None = 2.2

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/955574

Title:
  http-client hangs if following a POST request

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Making the following request to a resource that sends a 301 or 302
  redirect doesn't terminate.

http:send-request(
 http:request href=http://some-ressource; method=POST 
follow-redirect=true
http:header name=Content-Length value=4/
http:body media-type=text/plaintest/http:body
 /http:request
)

  The reason is that the http-client tells curl to follow the redirect.
  In turn, curl issues a GET request with the Content-Length header set
  to the size of the payload of the original POST request. However, the
  response doesn't come back because no data is sent with the redirected
  GET request.

  A suggested solution is to raise an error if one tries to follow POST,
  PUT, or DELETE requests. The semantic of doing this is not clear and
  it's up to the user what to do. For example, the user might want to
  follow-up using a GET request or with another POST containing the same
  data. Raising an error allows the user of the http-client to do
  whatever is required.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/955574/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp