Tagged Questions

0
votes
2answers
50 views

What is the default chunker for NLTK toolkit in Python?

I am using their default POS tagging and default tokenization..and it seems sufficient. I'd like their default chunker too. I am reading the NLTK toolkit book, but it does not se …
1
vote
2answers
196 views

How to disable transfer-encoding:chunked websphere

We have a webservice running on Websphere 6.1 using the IBM JAX-RPC based webservices. Client is sending requests without HTTP header of transfer-encoding:chunked (They specify con …
0
votes
2answers
151 views

Viewstate hidden field so big it makes everything crash

For some reason the viewstate of my application became gigantic (around 14 million characters). It adds around 1 minute of loading time. If the page finally loads (which is not oft …
0
votes
1answer
212 views

cancel stream request from WCF server to client

Hi, I posted about stream request here [wcf-chunk-data-with-stream]:http://stackoverflow.com/questions/853448/wcf-chunk-data-with-stream I solved that task but now when i close re …
2
votes
2answers
409 views

WCF chunk data with stream

HI, I neet to pass chunk data from WCF service to client. I have a table with 16 million records, and so, when the client requests data from that table i open a datareader to that …
0
votes
1answer
323 views

Web server - when should I use chunked transfer encoding ?

Looking at various web servers HTTP Headers, I notice that Google.com has: client-transfer-encoding: "chuncked" What is chuncked transfer encoding and should I be using it on my …
1
vote
3answers
222 views

What is the best way to chop a string into chunks of a given length in Ruby?

I have been looking for an elegant and efficient way to chunk a string into substrings of a given length in Ruby. So far, the best I could come up with is this: def chunk(string, …
2
votes
8answers
385 views

F# array_chunk for Sequence

I'm having some trouble making a sequence. Basically I need to chop a sequence into a sequence of arrays. Seq.windowed almost does it but I don't want duplicate elements. I can …
6
votes
5answers
1k views

Large File uploading to asp.net MVC

I need a way to upload large files (600 mb to 4 gb) in an asp.net mvc website. Currently I am using swfupload; it works well enough, but it is a huge hit on the webserver because …
6
votes
2answers
1k views

WCF Chunking / Streaming

Hi, I'm using WCF and want to upload a large file from the client to the server. I have investigated and decided to follow the chunking approach outlined at http://msdn.microsoft. …
0
votes
1answer
412 views

Decoding chunked HTTP with Actionscript

I have successfully connected to an HTTP server with ActionScript 3 over sockets. The only problem is, the server is sending chunked HTTP. Is there a generic function in any other …