Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
91 views

We are migrating from CF 4.51 to CF 2023 and have run into the following problem with Solr collection searches. I'm assuming that the default Request-Handler used by the Solr Admin Query Tool to query ...
Alex Craig's user avatar
1 vote
1 answer
4k views

I've got a Quarkus application. The entry point to trigger this application is a class which implements AWS RequestHandler. Before it runs I would like to set the context depending on the given ...
bob's user avatar
  • 280
0 votes
1 answer
870 views

I have a spring boot application with 2 GET end point. I am trying to include Lambda handler request and deploy as AWS Lambda function. As a first step, I added below code for RequestStreamHandler. ...
Stella's user avatar
  • 1,878
0 votes
0 answers
150 views

CefSharp links that open specific application doesnt work Im trying to make my winform web browser be able to open specific applications like on roblox or other websites that run specific application ...
vvl1m's user avatar
  • 1
0 votes
1 answer
192 views

Hie Guys , earlier we have used spring 3.x but when we upgraded to spring 5.2.20RELEASE getting below kind of response SEVERE: Servlet.init() for servlet [appServlet] threw exception org....
soorka Ravi's user avatar
1 vote
1 answer
938 views

Firstly, I know there are options for request coalescing, like using an Origin Shield, Varnish, etc. But those are architectural changes and I was looking for something more straight forward. My ...
jackofallcode's user avatar
0 votes
0 answers
203 views

I created custom tile source provider with python running tornado web server. On the server I generate on the fly the specific tile and output it as a "image/png" header format. To prevent ...
toni's user avatar
  • 361
0 votes
1 answer
721 views

Request state size of 37449 objects exceeds the threshold of 100 objects. Request details: type 'RequestHandlingUtilImpl$' in session '34483ca1-e282-4938-868e-b4f4c76e4084'. State consists of: ...
Abdul Gaffar's user avatar
0 votes
1 answer
51 views

I would like to add the following searchHandler to my solr core locally: <searchComponent name="spellcheck" class="solr.SpellCheckComponent"> <str name="...
Aizaz's user avatar
  • 79
0 votes
1 answer
981 views

I have a fake HTTP server that I use as a fixture in my testing. At some point in the test, I want to stop the server regardless of any still open connections. Clients on these open connections should ...
user7610's user avatar
  • 29.9k
0 votes
1 answer
671 views

Im trying to run the below code, the classes mentioned in the source code is already defined except for authenticateUser , in the highlighted line error message "The return type is incompatible ...
MMH DPR Digital's user avatar
1 vote
0 answers
424 views

I would like to do catchAsync1 but getting Error Property 'catch' does not exist on type 'void' and would like to know catchAsync3 and catchAsync2 are correct in typescript import { NextFunction, ...
noiissyboy's user avatar
0 votes
0 answers
306 views

The PHP code segment of my component is shown below: ... class NewsletterFormComponent extends Component { public $components = ['Flash','RequestHandler']; public $controller; public function ...
user3661042's user avatar
2 votes
1 answer
6k views

I'm a bit new to c# and CefSharp :-) so be cool with me ! My goal is to call an url, and then explore DOM to retrieve data and then process this data for hypervision purpose. I've achieve that ...
akaioda's user avatar
  • 51
-1 votes
3 answers
473 views

I am setting few view variables within my App controller such as company name, address, contact information which changes based on sub domains so that they are available throughout all view templates. ...
user4676307's user avatar
1 vote
0 answers
86 views

I have the following web application, which has 1 handler: class GetHandler(webapp2.RequestHandler): def get(self, name): self.response.headers['Content-Type'] = 'text/plain' self....
user301091's user avatar
1 vote
1 answer
1k views

Good morning, Let's say, we've a domain defining an exception such as ObjectNotFoundException which expect an identifier (VO), defined at the domain model. Question Can we throw domain exceptions ...
Laurent DECLERCQ a.k.a Nuxwin's user avatar
2 votes
0 answers
93 views

So this is some code i have in my python file, the details of the code aren't that important, I basically use this MainHandler to deal with some requests sent to it by a connection "client". class ...
am.torrinha's user avatar
0 votes
1 answer
112 views

We are using CXF 3.x, project has classes MyFeature extends AbstractFeature and `MyFilter extends OAuthRequestFilter. Inside MyFeature class object of MyFilter created as MyFilter myFilter = new ...
shaILU's user avatar
  • 2,156
0 votes
1 answer
1k views

Working on a platform, to enable auto-ticketing functionality. For which a REST API request is used for ticket creation. Unfortunately, there are 2 requests popping simultaneously, which results in ...
renjini's user avatar
0 votes
1 answer
2k views

I'm reading example express source code for my education. Initializing a simple express application looks like this: const express = require('express') const app = express() app.listen(3000, () =&...
mCY's user avatar
  • 2,851
0 votes
0 answers
177 views

Example code: RequestHandlerA(tornado.web.RequestHandler): def get/post(self): ... redirect('/index?username=user0&password=user0') ... RequestHandlerB(tornado.web....
foree's user avatar
  • 33
0 votes
1 answer
1k views

i have a problem HttpRequestHandler does not receive any data when i send post data by javascript. i want to receive value of content, but it does not work. Here is javascript code: function ...
Василий Пупкин's user avatar
0 votes
1 answer
194 views

I have fields for name and dimensions. The fields are: Name, dimensionLength, dimensionWidth and dimensionHeight. I want query productX 10x20 only to return matches containing both dimensions. So ...
Jesse's user avatar
  • 3
1 vote
1 answer
61 views

I want to 301 redirect the URLs from previous site that are nested, as pencilblue doesn’t support them, e.g. a/b to page/b For this I have been experimenting in include/http/request_handler.js but ...
Touqeer's user avatar
  • 669
0 votes
1 answer
94 views

While I submit documents to Solr if Request-Handler is /update I can't submit csv and json files but I can submit xml files. I have changed Request-Handler to /update/extract. Now I can submit csv,...
mfatihk's user avatar
  • 136
0 votes
1 answer
2k views

I'm migrating solr from 4.6 version to 5.5, we have separate request handlers in which we provide query without field name, like q=book. But for select request handler, we need to pass the request ...
User1203's user avatar
1 vote
0 answers
204 views

Every time I create a new AWS Lambda Java Project in Eclipse using this guide, I get the following compilation error. import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws....
LeoNeo's user avatar
  • 749
2 votes
1 answer
223 views

I want to rewrite JSON View in the RequestHandler. So there's a file project_root/lib/JsonView.php. What I want to do is to Import the JsonView.php file in another file in project_root/app/View/...
handkock's user avatar
  • 1,087
1 vote
2 answers
1k views

@app.route("/") def start(): #will do some task return 'completed' In the above program, after execution the 1st request 2nd request will execute. But I want to make such a server that will ...
Saikat Kundu's user avatar
1 vote
1 answer
837 views

I need to store the output of a get function of a request handler before running the tornado server from outside the application. Example:- class Test(RequestHandler): def get: print "...
rohitsakala's user avatar
3 votes
2 answers
2k views

This is classic ASP, running on IIS 8.5. I need to run some VBScript that should be common to all my *.asp pages at the beginning of every Http request to those *.asp files. Currently I am using a #...
Eduardo de Souza Cruz's user avatar
4 votes
3 answers
6k views

I have to pass a parameter to SimpleHTTPRequestHandler class, so I used class factory to create a custom handler as below. def RequestHandlerClass(application_path): class CustomHandler(...
user1429322's user avatar
  • 1,286
0 votes
1 answer
84 views

Due to my proj security requirements, i have created a custom requesthandler(for eg:"/new") to serve requests coming from a particular set of users & i have the default "/select" requesthandler to ...
Aum's user avatar
  • 11
-1 votes
3 answers
616 views

When i try to execute this function i get the error "System.InvalidCastException: Specified cast is not valid." System.InvalidCastException: Specified cast is not valid. at server.mihail.credits....
user avatar
0 votes
2 answers
1k views

I want to cache a pandas dataframe into tornado requesthandler. So i don't want to repeat the pd.read_csv() for every hit to that particular url.
Bastin Robin's user avatar
0 votes
0 answers
112 views

I have written a custom DelegatingHandler that intercepts requests and authenticates it against an API key. This was being used in a WebApi service, pre ASP.NET 5. protected override Task<...
The Sheek Geek's user avatar
2 votes
0 answers
519 views

I have a requirement to log the REST request and response messages, so I have used apache wing RequestHandler. And I am able to get the response using the ResponseHandler. But unable to get the ...
kattoor's user avatar
  • 305
1 vote
0 answers
132 views

I'm creating a simple server to serve a form via Python. The user will post their name and a message through an HTML form, on the server-side python will retrieve these values and append them to a ...
Steven Siddoway's user avatar
0 votes
1 answer
56 views

I am trying to access a field in custom request handler. I am accessing it like this for each document: Document doc; doc = reader.document(id); DocFields = doc.getValues("state"); There are around ...
Neeraj Lajpal's user avatar
0 votes
1 answer
124 views

New to android, it is a trivial issue but could not resolve in last 3 hours. When I use the parameter called keyword, it is not showing correct results. otherwise it is working fine if I pass ...
Dep's user avatar
  • 183
1 vote
1 answer
496 views

I have written a GAE application using Python. The application has a mobile component that is being built in Android. I am using custom credentials and not using Google OAuth for authentication. I ...
Jack tileman's user avatar
1 vote
1 answer
286 views

I am just getting to grips with jinja2 templating on GAE. What I am trying to do is to display a status msg in the rendered template without rendering the whole template again. I have a webapp2 ...
Dennis Bauszus's user avatar
1 vote
2 answers
261 views

Can a single Tornado RequestHandler class attend new requests, while waiting for a Future to finish in one of its instances? I was debugging a Tornado coroutine that called a ThreadPoolExecutor and I ...
Cristóbal Ganter's user avatar
2 votes
1 answer
376 views

I am trying to index my emails from Microsoft Exchange. The server is using IMAP4 protocols. I added the requestHandler in solrconfig.xml: <requestHandler name="/dataimport" class="org.apache.solr....
Cumatru Cosu's user avatar
1 vote
4 answers
2k views

I am stumped by this problem. I have written a custom UpdateRequestProcessorFactory. The code is: package mira; import java.io.IOException; import org.apache.solr.common.SolrInputDocument; import ...
Mike's user avatar
  • 11
0 votes
1 answer
566 views

I'm trying to use CakePHP and jQuery Mobile combined. Generally it works great, but I've got a huge problem with using the Redirect from One Controller to a different. Especially since I added the ...
Sigurius's user avatar
1 vote
1 answer
1k views

I am trying to follow the datatable example for Ajax data source (objects) found here. I am using asp.net and have the following handler which receives my data, processes it and provides the response. ...
Luke Stoward's user avatar
  • 1,540
0 votes
1 answer
287 views

I intend to use tornado to write a handler that implement an autocomplete service, demonstrated as below: class AutoCompleteHandler(tornado.web.RequestHandler): def initialize(self, indexbuilder)...
timfeirg's user avatar
  • 1,532
0 votes
1 answer
570 views

I am facing a very weird behavior in Solr version 4.4.0 When I send following url request for indexing two documents, it works fine, ie, it writes the indexing message into respective core. Hence we ...
Shweta's user avatar
  • 1,161