Questions tagged [request-queueing]

42 questions
0
votes
1 answer

Android Volley JsonArrayRequest working half the time

I'm attempting to call my web apps API which successfully gets me a list of all "profiles" and displays them in a correct fashion (the JsonArrayRequest for profiles). However, I'm having issues where I'm calling a consecutive url which holds the…
David Parks
  • 77
  • 1
  • 11
0
votes
1 answer

JsonObjectrequest not getting executed after getting queued

I am using a JsonObject request within onActivityCreated of my fragment. I am adding the jsonobject request to a request queue. The queue is not getting executed at all. I have put Log statement in Onresponse and Onerrorresponse. Its just like the…
0
votes
1 answer

Retrieved Data Not Displayed in Textviews

I am a beginner for Java Coding and is currently coding an Android Project. Right now, I am facing an issue. The data retrieved is not showing up in the textviews. My plan is to retrieve the details using the vehicle number from the intent. After…
0
votes
2 answers

Error when use RequestQueue in Android?

Here my code: RequestQueue queue = Volley.newRequestQueue(this); JSONObject params = new JSONObject(); try { params.put("email", email); params.put("pass", pass); } catch (JSONException e) { e.printStackTrace(); …
rome 웃
  • 1,821
  • 3
  • 15
  • 33
0
votes
1 answer

Prioritizing specific endpoints on Heroku to skip / spend less time in request queue

Our API service has several endpoints and one of them is critical for the user experience because it directly affects the page load time. Is there a way to priotize calls to GET /api/priority_endpoint over GET /api/regular_endpoint so the…
Nimo
  • 7,984
  • 5
  • 39
  • 41
0
votes
1 answer

User request queue in WCF

I have a WCF service which creates a number of files at a server location doing various calculation on seed file depending upon the params given. The problem is that, the when 2 or more clients try to do calculation on same seed file, it is…
sk3145
  • 174
  • 18
0
votes
1 answer

ASP NET how to find where queries get queued

I have ASP Net mvc 5 project, running on iis 8.5. There are a number of pages with images obtained from action like this: ... About 90% of images are loaded rather fast (a few milliseconds…
vsevolod
  • 155
  • 2
  • 10
0
votes
2 answers

Java: Fine grain locking for requests?

I'm trying to create a fine grain locking mechanism for the following scenario: I have a data store with many serialised Cache objects inside it. Each Cache belongs to a certain person, group or company and each Cache can be modified in one of four…
Alexei Blue
  • 1,762
  • 3
  • 21
  • 36
0
votes
2 answers

Request Queue implementation

I am currently involved in doing POC for an RPC layer. I have written the following method to throttle requests on the client side. Is this a good pattern to follow? I did not choose queueing the additional requests into a threadpool because I am…
guruprasath
  • 277
  • 3
  • 17
0
votes
2 answers

asp.net querystring formatting

How can i send special characters in a querystring? Like: thankyou.aspx?data=GQH/FUvq9sQbWwrYh5xX7G++VktXU5o17hycAfNSND8gt8YbbUaJbwRw The ++ gets taken out when i do this: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)…
StealthRT
  • 10,108
  • 40
  • 183
  • 342
-1
votes
1 answer

My request queue on android studio doesn't work

so i have this requestqueue like this with 'com.android.volley:volley:1.1.1' and permission.INTERNET public TextView txt; public String text=""; private static final String url="http://192.168.100.7/diari/tampil_penyakit.php"; …
-1
votes
1 answer

How to analyze DebugDiag analysis for high CPU and queueing?

I'm seeing increased CPU and http queuing on my .NET API (using Nancy/OWIN). It's running on Azure, so i took a memory dump. I'm trying to figure out how to read the DebugDiag Analysis report. Here's the warning section: I assume the "62 client…
RPM1984
  • 72,246
  • 58
  • 225
  • 350
1 2
3