Tagged Questions
0
votes
1answer
31 views
Get a managed bean reference in a restful web service
i'm tryng to combine jsf and Rest in my web application.
My managed bean(eager=true) starts with the application, gets async data from an external api and adds this data into a List.
I have to make a ...
0
votes
0answers
12 views
httpcomponents asyncclient 4.0-beta4
Can someone point me to a good example using the PoolingNHttpClientConnectionManager for async connection pooling with httpcomponents?
Maybe I'm missing it but there seems to be very little real ...
0
votes
0answers
44 views
java.nio DatagramChannel non-blocking mode.. you still have to block?
I've been looking into java.nio's asynchronous capabilities, and so far I am a fan of the AsynchronousByteChannel class, as it lets me provide completion callbacks for each read or write operation. ...
0
votes
2answers
27 views
Start thread on standalone application from Servlet
I have a web application (JSP/Servlets) from which i am required to invoke a Web service to get the response. Since the web service takes around 4 to 5 minutes to send the response, application is ...
0
votes
1answer
45 views
How to implement an async Callback using Square's Retrofit networking library
As an iOS developer beginning to work with Android I came across Retrofit. I understand how to implement synchronous requests but am having trouble implementing asynchronous requests with ...
0
votes
3answers
42 views
Asynchronous Logging
Right now in my application,at certain points we are logging some heavy stuff into the log files.
Basically only for logging we are creating JSON of the data available and then logging into Log ...
0
votes
1answer
28 views
Execute the query on getValueAt and return the results asynchronously
I am implementing a swing jtable with a huge number of data, i want the data to be loaded at the moment of getValueAt in the data model and print "Loading" in the cell and return the data later, I ...
0
votes
0answers
19 views
I'm using FTPHelper, Async in my Activity. How can I use the getReplyCode() in my Activity?
I have an activity that creates an AsyncTask to test an ftp connection via an FTPHelper class. The Activity shows a Toast with the boolean status of the connection, either success or fail. How can I ...
0
votes
1answer
32 views
Async POST request in Java for Android
public void btnWeb_Click(View view){
String url="http://localhost/test/index.php";
List<NameValuePair> dict = new ArrayList<NameValuePair>();
dict.add(new ...
3
votes
1answer
68 views
Java FutureTask Exception
I have created the following FutureTask method to run a method asynchronously.
public FutureTask<Object> SendAggregateEventAsync(final
...
1
vote
2answers
59 views
C# delegates to Java and asynchronous handling of methods
I have been tasked with creating Java code with similar functionality to the code below. Currently I am struggling with understanding exactly what the code does and how to simulate the effect in Java. ...
0
votes
2answers
34 views
Fetch tweets using Twitter4J in Spring
I'm interested in use Twitter4J to fetch tweets from Twitter streaming API. This library would be used from a Spring class annotated with @Service and would received updates in a StatusListener to ...
0
votes
0answers
34 views
Is the DefaultHttpAsyncClient thread safe? And why the start() method is mandatory?
I'm using the HttpAsyncClient library by Apache. I don't understand a couple of things:
1) Is the DefaultHttpAsyncClient thread safe? Can I reuse the same instance of the client to make multiple, ...
0
votes
2answers
42 views
Run Spring class asynchronously
I'm working in an Spring application that downloads data from different APIs. For that purpose I need a class Fetcher that interacts with an API to fetch the needed data. One of the requirements of ...
0
votes
1answer
36 views
How to get values from asynchronous function calls with Spring?
I'm just experimenting a bit with the async possibilities in the Spring framework and I'm asking myself how to get an notification when the async function call is done. Is there any callback ...
1
vote
1answer
58 views
Spring java config start @Async methods once context is loaded
I need a POJO method to execute asynchronously, so I've annotated it with @Async. I've added @EnableAsync to my @Configuration class with the proper @ComponentScan. Here's a small test case for you to ...
0
votes
1answer
44 views
Change fragment content when page changed, ViewPager
I have a ViewPager, that i'm populating with fragments which has a listview inside. The point is that i have to show a really big amount of data, and i need to make pages, so i only request littel ...
0
votes
2answers
54 views
How to get reference to original data in case of exceptions?
I'm running some Callable threads using ExecutorService. The threads are initialized with data before submitting to ExecutorService.
When handling exceptions thrown by Future.get(), I'd like to log a ...
0
votes
1answer
42 views
Printing Data from Servlet to browser asynchronously
I'm trying to send data to a web page sequentially, I do know how HTML works, and that the most likely answer to this would be ajax, but the requirement is that this work with only java and html. A ...
0
votes
2answers
56 views
Play 2.1 Java How to pass an object to a asynchronous function?
How can I pass the string object myString to the inner function in the Java Play Framework version 2.1, so that it is available within the inner function?
This is what I want to do:
String myString ...
-1
votes
3answers
77 views
How to avoid android.os.NetworkOnMainThreadException [duplicate]
I am trying to send a picture to my local web server from my android phone. Once it connects to the web server I get the following: android.os.NetworkOnMainThreadException
I think that the solution ...
0
votes
1answer
53 views
@Async Spring gets recalled for every request of different sessions
I have a spring @Async annotated method in a bean, then in the controller I call that bean's method on a user request, and I do it this way so I can get a progress back from that bean, and it works ...
-1
votes
0answers
27 views
Authentication with DefaultAsyncHttpClient
I am having the next exception, while trying to use DefaultAsyncHttpClient and BasicAuthCache.
java.lang.ClassCastException: org.apache.http.nio.conn.scheme.AsyncSchemeRegistry cannot be cast to ...
0
votes
0answers
48 views
Mixed polling & event-driven serial protocol implementation
I'm working on a Java library (for Android, but that's of little relevance) that communicates with a hardware device using a serial port, via a protocol that mixes synchronous queries (polling) and ...
2
votes
2answers
38 views
Best way to wait to download file from server which is not yet created?
I make a request to download a file from server.
The thing is the file is being generated on the server-side and the generation is asynchronous.
Initially I did something like
try {
...
0
votes
2answers
50 views
Solution for downloading hundreds of files asynchronously
I have an app in which the user may need to download up to 760 files, totaling around 350MB. It is not possible to zip these files, they must be downloaded as loose files!
I'm currently using Android ...
0
votes
1answer
58 views
Asynchronous processing with fallback java
I am working on an java application that will makes calls to a web service, I dont want to incur additional latency while making these calls hence I am planning on doing this asynchronously. Using ...
0
votes
3answers
53 views
How to work with long-lasting http requests
I have a long-lasting http request (a lot of computation in the back-end).
Currently it's all synchronous, while the server computer, the browser doesn't see the output/result. After a while, the ...
0
votes
2answers
36 views
Response body is empty when using DeferredResult
Response body is empty when using DeferredResult with Java Config.
Controller:
@Controller
public class HomeController {
@RequestMapping("/")
public DeferredResult<ModelAndView> ...
0
votes
2answers
66 views
How do I handle slow readers in Netty?
In my application I have can have thousands of readers each fetching documents.
I need to have the ability to buffer slow readers so that I can move on to handle other readers so that I can get ...
0
votes
1answer
97 views
Asynchronous send to a queue using Spring Jms issue
I have a requirement when I need to write asynchronously to a queue in activemq. I am using Spring Jms to do it. This is the wiring in my spring context file
<bean ...
3
votes
0answers
45 views
MIDI beat clock in Java
I'm creating a drum machine and I'm having some problems with outputting MIDI beat clock.
For simplicity, I've set the internal clock to run by calling Thread.sleep(_time), where _time is the amount ...
0
votes
1answer
32 views
Are unresettable “flags” threadsafe in Java?
I have been using this pattern for a while, but I only recently came to think that it might not be OK to do this. Basically, I use some variant of this pattern:
public class SampleJavaAsync
{
...
1
vote
1answer
25 views
Showing Progresscircle in Asynctask
I want to show an progresscircle while a chat is loading. So I put some progressbar in, visibility set to invisible. Now I set in onPreExecute() the visibility to visible and in onPostExecute() to ...
0
votes
0answers
28 views
Using Apache Mina (1.7), how can I handle a multi-step protocol?
Background
These past few weeks I've been writing and rewriting a JAVA application that acts as both a server and a client. Users can connect to it using Telnet or Flash and communicate with it using ...
0
votes
1answer
70 views
High performance distributed asynchronous RPC in java
I would like to do RPC to a list of clients with the following requirements:
the server does not know the clients (implies a kind of broker?) and the cleints do not know the server
there may be ...
1
vote
3answers
55 views
How do i get Vector<type> Arraylist<type> as return of call()?
how do I get the following Java code to work:
public class Worker implements Callable<myObject>{
@Override
public ArrayList<myObject> call() throws Exception {
...
0
votes
0answers
70 views
Spring @Async on implementation method not executing
I have a service interface and implementation class. When I annotate an interface method with @Async, it works properly. However, when I annotate a method on the implementing class, the call to the ...
0
votes
1answer
31 views
Returning data from asynchronous tasks in Java [duplicate]
I'm having trouble working with async callbacks in Java/Android.
Currently, the object that handles my network calls looks like this:
class Reciever {
...
public String getData(String ...
0
votes
1answer
28 views
How does error page call asyncContext.complete()?
The javadoc of the javax.servlet.AsyncContext interface says (many times):
If no matching error page was found, or the error page did not call
complete() or any of the dispatch() methods, call ...
1
vote
4answers
64 views
Call to Asynchronous Function
I am using parse.com as my backend service for my Android application. I wish to make separation between my activities and parse, for this purpose I have created service class witch will bridge ...
0
votes
1answer
140 views
Problems of executing a block of code asynchronously in play framework
I am using amazon s3 to upload photos as my service.
According to http://www.playframework.com/documentation/2.1.1/ThreadPools , the code must be blocking code.
"when your code may block include:
...
0
votes
3answers
33 views
Queue to manage function calls
Hey guys I am stuck in a critical problem. I created a Dashboard of application. The data which i am displaying on Dashboard is created on the basis of my business logic. There are various ...
0
votes
1answer
70 views
How to send soap messages asynchronously from java
The business situation is that we want our application to notify a third party every once in a while on the occurrence of a certain event in our application, sending them some data. We could say that ...
0
votes
1answer
39 views
Why is there no asyncContext.cancel()
While the Servlet 3.0 spec has request.startAsync() and asyncContext.start(),
why has it not provided a asyncContext.stop() or asyncContext.cancel() to initiate necessary clean-up on the server-side ?
...
0
votes
1answer
68 views
waiting on asynchronous http requests in java
I'm using Jetty HTTP Client to make about 50 HTTP calls asynchronously. The code looks something like this:
List<Address> addresses = getAddresses();
final List<String> done = ...
0
votes
2answers
46 views
Best way to execute method asynchronously in Android (compact and correct)
Say I have Activity showing some content on screen. I need to execute some method (asyncMethod) asynchronously and when it is done, to update data on screen. What is the most correct and simple way to ...
0
votes
1answer
47 views
Java Async I/O with NIO2: Does AsynchronousServerSocketChannel.accept give you an active AsynchronousSocketChannel
For server.accept I wrote a completion handler that has the parameters.
When the handler is invoked via the accept method, does that mean the AsynchronousSocketChannel is now conneted?
Or do I have ...
3
votes
2answers
61 views
Spring @Async with Future
I am new to java.util.concurrent.Future and have some questions. If I call a service using Future how do I know what element was used to call the service?
Here is an example:
For each id I am using ...
0
votes
1answer
102 views
Asynchronous web service call in flex and java
How can i access to my Asynchronous web service in java? I made this thing in Flex Builder, and it`s pretty easy: just add web service throw "Data -> Connect to Web Service -> Enter the URL of wsdl" ...

