[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-09-02 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13096438#comment-13096438
 ] 

Hudson commented on THRIFT-322:
---

Integrated in Thrift #248 (See [https://builds.apache.org/job/Thrift/248/])
THRIFT-322 IHttpHandler for Thrift
Patch: Nils Huegelmann

roger : http://svn.apache.org/viewvc/?view=revrev=1164723
Files : 
* /thrift/trunk/lib/csharp/src/Transport/THttpHandler.cs


 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: ProcessRequestOverload.patch, 
 ProcessRequestOverload_proper.patch, thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-08-22 Thread Roger Meier (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13089002#comment-13089002
 ] 

Roger Meier commented on THRIFT-322:


Hi Nils
the ProcessRequestOverload.patch does not apply properly
could you recreate that patch?

see http://wiki.apache.org/thrift/HowToContribute

thanks
roger

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: ProcessRequestOverload.patch, 
 thrift-csharp-httphandler-test.diff, thrift-csharp-httphandler.diff, 
 thrift-csharp-httphandler.diffupdated.diff, thrift-csharp-httphandler2.diff, 
 thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-04-21 Thread Sean Powers (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13022782#comment-13022782
 ] 

Sean Powers commented on THRIFT-322:


Is there an example of how to host the server using THttpHandler? I looked 
through the thrift-csharp-httphandler-test.diff which uses the 
HttpListenerContext httpctx; on line 128 and passes that object to the 
th.ProcessRequest(httpctx); and this will not compile for me because 
ProcessRequest expects the HttpContext from System.Web and not a 
HttpListenerContext from System.Net.

Am I reading it wrong or is there an updated example? Thanks.

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-04-21 Thread Sean Powers (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13022853#comment-13022853
 ] 

Sean Powers commented on THRIFT-322:


I figured out my prior post by incorporating Nils: 
thrift-csharp-httphandler2.diff.

I am also having the same issue with the C# client communicating with the C# 
server after the third request throws an exception on the client application.

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-04-21 Thread Sean Powers (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13022915#comment-13022915
 ] 

Sean Powers commented on THRIFT-322:


Nils is correct, this is a bug in the HttpClient not in the server. The 
inputStream needs to be closed before a new response is read. I fixed it on my 
local copy and everything seems stable now with the Thrift THttpClient and 
THttpHandler.

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-04-20 Thread Jake Farrell (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13022170#comment-13022170
 ] 

Jake Farrell commented on THRIFT-322:
-

Nils, where you able to find a resolution for the 3rd test case aborting?

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (THRIFT-322) IHttpHandler for Thrift

2011-04-14 Thread Jake Farrell (JIRA)

[ 
https://issues.apache.org/jira/browse/THRIFT-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13020010#comment-13020010
 ] 

Jake Farrell commented on THRIFT-322:
-

Your patch v3 was applied as soon as you commented that it had an error in v2.

 IHttpHandler for Thrift
 ---

 Key: THRIFT-322
 URL: https://issues.apache.org/jira/browse/THRIFT-322
 Project: Thrift
  Issue Type: New Feature
  Components: C# - Library
Reporter: Fredrik Hedberg
Assignee: Nils Hügelmann
Priority: Minor
 Attachments: thrift-csharp-httphandler-test.diff, 
 thrift-csharp-httphandler.diff, thrift-csharp-httphandler.diffupdated.diff, 
 thrift-csharp-httphandler2.diff, thrift-csharp-httphandler3.diff


 IHttpHandler for Thrift.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira