Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
123 views

How can I setup a global DeadlineExceededError handler?

I'd like to catch and handle DeadlineExceededError so users don't see the standard "Server Error" page that App Engine throws by default. I know that DeadlineExceededErrors are not caught when ...
2
votes
3answers
650 views

Solr Custom RequestHandler - injecting query parameters

Short question: I'm looking for a way (java) to intercept a query to Solr and inject a few extra filtering parameters provided by my business logic. What structures should I use? Context: First of ...
2
votes
1answer
184 views

How to create a RESTful Handler that accepts both POST and GET?

I want API support for: GET /api/spam/{id} POST /api/spam body: {'name': 'green spam'} I would normally route to a Handler by: webapp.WSGIApplication([r'/api/spam/(.*)', APISpam]) class ...
2
votes
2answers
641 views

What is the best REST implemenation when using tornado RequestHandlers

I would like to define a REST API with a general pattern of: mysite.com/OBJECT_ID/associations For example mysite.com/USER_ID/vacations - manage a users vacation mysite.com/USER_ID/music - manage ...
2
votes
2answers
1k views

Tornado Asynchronous Handler

I am attempting to implement get_current_user in the RequestHandler for Tornado, but I need the call to block while waiting on the asynchronous call to my database. Decorating the call with ...
2
votes
4answers
115 views

Is using regex for a request handler in PHP bad?

I am working on a request handler to route every page call through my index page and have SEO friendly urls. domain.com/account/settings this would be easy to map to the correct page but some ...
2
votes
2answers
321 views

Is using the RequestHandlerComponent in a model possible?

I'm new to PHP and decided to use the cakePHP framework to help me get started. I can't figure out one thing though, I want to call methods on the RequestHandlerComponent class to update a users last ...
1
vote
1answer
36 views

Handling GAE BlobStore Exception via webapp2 handler

I have been banging my head around on this issue for a bit and have not come up with a solution. I am attempting to trap the exception UploadEntityTooLargeEntity. This exception is raised by GAE ...
1
vote
1answer
148 views

Spring's messageResource implicitly localized from Session - not having to pass Locale reference

I'm wondering, what is the best way of having something like prototype of messageResource (could be singleton too I guess) created for each request and populated with request's Locale or Locale gotten ...
1
vote
1answer
136 views

How do I return the MIME type for a font?

http://stackoverflow.com/questions/2871655/proper-mime-type-for-fonts This matter is solved but i dont know how to do. help me I use cakePHP , I read RequestHanlder Component in bookcake but i dont ...
1
vote
2answers
911 views

Python Access to BaseRequestHandler

My code basically needs to start up a simple chat server with a client. Where the server and the client can talk back and forth to each other. I've gotten everything to be implemented correctly, but ...
0
votes
1answer
70 views

Solr Custom RequestHandler - optimizing results

Yet another potentially embarrassing question. Please feel free to point any obvious solution that may have been overlooked - I have searched for solutions previously and found nothing, but sometimes ...
0
votes
1answer
90 views

Class not found exception while adding custom request handler to solr

I have to write my own custom request handler in solr but i am getting error like org.apache.solr.common.SolrException: Error loading class 'QPRequestHandler' Here QPRequestHandler is my custom ...
0
votes
1answer
64 views

How to get IndexReader from custom request handler?

This is extension of my earlier question. I'm going to create custom request handler to provide terms association mining over existing index. In order to do this I need access to Solr's IndexReader ...
0
votes
1answer
130 views

Using <input type=“file”> in Django

When someone clicks Submit after selecting a file with the <input type="file"> element, how do I access the contents of the file in Django? (It seems like the request sent to the request ...
0
votes
0answers
86 views

configure dismax requesthandlar for boost a field

I want to apply boost for searching. i want that if a query term occur both in description,name than docs having query term in description field come high in search results. for this i configure ...
0
votes
3answers
454 views

cakephp requestHandler check for swf/flash

Is there a way to check if a cakePHP action is being called from an swf/flash movie like there is for Ajax using the requestHandler?
0
votes
5answers
238 views

Can PHP 5 do request handling similar to Tomcat or GAE?

lets say i want to go to http://example.com/something/a/few/directories/deep is there a way I can process this in PHP without having to make those directories? I just want to get everything after ...