Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I'm looking for a framework or an implementation of Asynchronous Java RMI (preferably using Lipe RMI, but not absolutely necessary). I have done a little googling but haven't actually found a straightforward implementation yet. If any of you have already implemented it and would like to save me the time of doing it myself that would be wicked awesome.
It probably isn't relevant, but i'm going to actually be using this over Android to communicate with my RMI back end (which is why I need asynchronous RMI).
Thanks
I just got done implementing and releasing a fork of Lipe RMI that does exactly this, in case anybody is interested.
https://github.com/terraframe/lipermi
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am not very strong in rest communication. The task is create some sort of REST client using camel framework. First of all I took a look at cxf framework, but I am not sure will I able to send request with changeable count of params?(I need do it for some requests). So the question is: what do you recommend use? CXF, axis2, http4, ahc or maybe something else? Also I don't have too much time to implement this client, so I don't have too much time to studying framework.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
what is the best FREE mockup tool for web applications?
I know balsamiq, which is really nice, but lacks the feature of linking different pages together.
I would like to do some kind of prototyping, so not just mocking a view, but also providing interaction between the mockups.
Which tool could I start with?
I think exhibit from mit csail is a good choice.
http://simile-widgets.org/exhibit/
You can load your data from javascript and simulate interaction with jquery and/or passing actions through URL parameters.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have recently been tasked to working on code that uses Java CUP. Does anybody still use it? I've found a couple small resources on it, but it looks like there isn't much documentation on the main site, Java Cup Website. If there are any mailing-lists or users out there I would like to know. BTW, I can't use the new engine that is being maintained by the people in Munich, I got to stick with version 0.1.
We use the newer one on the Eclipse XPath2 engine (disturbingly called PsychoPath).
CUP gets the job done, but we use the newer one.
Being a small piece of software, it's easier to understand, which makes up for the scarceness of resources.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?
In Red5, we are adapting an RTP/RTSP library written using Mina. If you would like to check it out, go here: http://red5.googlecode.com/svn/java/plugins/trunk/rtspplugin/
The original library was written by Matteo Merli (matteo.merli#gmail.com) and yes, we have his permission to modify it.
You would have to write a wrapper yourself, I'm afraid. Netty has a pretty flexible architecture that would allow that.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have a tomcat/mysql website that I would like to move over to Google app engine does anyone know of a good tutorial outlining this? Or can anyone make some suggestions on how to do this?
As long as you use standard servlet and JSPs you will be fine.
The limitations for Google App Engine are documented here : http://code.google.com/appengine/docs/java/jrewhitelist.html
Sessions are kind of expensive (read slow) so avoid state on the server as much as possible.
The backing store is also quite different than standard SQL if you use any db calls in your app.